@import url('global.css');
@import url('header.css');
@import url('footer.css');
@import url('animate.css');
@import url('swiper.min.css');
@import url('font-awesome.css');
@import url('custom-animate.css');
@import url('odometer-theme-default.css');

/*** 

====================================================================
	Banner One
====================================================================

***/

.banner-one {
	position: relative;
	padding: 280px 0px 80px;
	background-size: cover;
}

.banner-one:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.90;
	background-color: var(--color-five);
}

.banner-one_content {
	position: relative;
	z-index: 2;
}

.banner-one_content-inner {
	position: relative;
}

.banner-one_heading {
	font-weight: 700;
	text-align: center;
	margin-bottom: 80px;
	/* color: var(--white-color); */
	text-transform: uppercase;
}

.banner-one_text {
	position: relative;
	font-size: 30px;
	line-height: 40px;
	padding-top: 20px;
	padding-right: 180px;
	color: #fff;
	/* border-top:1px solid #540045; */
}

.banner-one_text-two {
	position: relative;
	font-size: 30px;
	line-height: 40px;
	padding-bottom: 20px;
	padding-right: 180px;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.banner-one .down-box {
	position: absolute;
	left: 47%;
	bottom: 65px;
	z-index: 10;
	width: 100px;
	height: 100px;
	cursor: pointer;
	-webkit-animation: icon-bounce 0.8s ease-out infinite;
	animation: icon-bounce 0.8s ease-out infinite;
}

/*** 

====================================================================
	Services One
====================================================================

***/

.services-one {
	position: relative;
	padding: 100px 0px 70px;
	background: var(--main-color);

}

.service-block_one {
	position: relative;
	margin-bottom: 30px;
}

.service-block_one-inner {
	position: relative;
	padding: 35px 40px;
	border: 1px solid rgba(var(--white-color-rgb), 0.20);
}

.service-block_one-inner:before {
	position: absolute;
	content: '';
	left: -1px;
	top: -1px;
	right: -1px;
	bottom: -1px;
	opacity: 0;
	transform: scale(1, 0.2);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background-color: var(--color-three);
}

.service-block_one-inner:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}

.service-block_one-heading {
	position: relative;
	font-weight: 400;
	color: #fff;
}

.service-block_one-heading a {
	position: relative;
	color: var(--white-color);
}

.service-block_one-icon {
	position: relative;
}

/*** 

====================================================================
	Gallery One
====================================================================

***/

.gallery-one {
	position: relative;
	padding: 40px 0px 0px;
	background-color: var(--color-four);
}

.gallery-block_one {
	position: relative;
	margin-bottom: 0px;
	padding-left: 0px;
}

.gallery-block_one-inner {
	position: relative;
}

.gallery-block_one-content {
	position: relative;
	padding: 15px 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.gallery-block_one-content:before {
	position: absolute;
	content: '';
	left: -1px;
	top: -1px;
	right: -1px;
	bottom: -1px;
	opacity: 0;
	transform: scale(0.2, 1);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background: linear-gradient(135deg,
			#0b5cad 0%,
			#1f7fd6 55%,
			#4f9b63 100%);

}

.gallery-block_one-inner:hover .gallery-block_one-title,
.gallery-block_one-inner:hover .gallery-block_one-heading a {
	color: #fff;
}

.gallery-block_one-heading a {
	transition: all 0.4s ease;
}

.gallery-block_one-title {
	transition: all 0.4s ease;
}

.gallery-block_one-inner:hover .gallery-block_one-content:before {
	opacity: 1;
	transform: scale(1, 1);
	border-radius: 8px;

}

.gallery-block_one-image {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	height: 320px;
	border-radius: 8px;
}

.gallery-block_one-inner:hover .gallery-block_one-image:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.gallery-block_one-image:before {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 99;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .7)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.gallery-block_one-image img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-block_one-title {
	position: relative;
	font-size: 18px;
	text-transform: capitalize;
	color: rgba(var(--white-color-rgb), 0.50);
}

.gallery-block_one-heading {
	position: relative;
	font-weight: 600;
	margin-top: 10px;
	text-transform: uppercase;
}

.gallery-block_one-heading a {
	position: relative;
	color: #0a3366;
}

.gallery-block_one-heading a:hover {
	color: rgb(255 255 255);
}

.service-block_one-more {
	position: relative;
	/* margin-left: 25px; */
}

.service-block_one-more .view-more {
	position: relative;
	font-size: 14px;
	line-height: 1em;
	display: inline-block;
	padding: 14px 70px 14px 12px;
	color: var(--color-four);
	/* text-transform: uppercase; */
	background-color: #0a3366;
}

.service-block_one-more .view-more i {
	position: absolute;
	right: 1px;
	top: 1px;
	bottom: 1px;
	width: 35px;
	font-size: 18px;
	line-height: 40px;
	color: #0a3366;
	background-color: var(--color-four);
}

/*** 

====================================================================
	journal One
====================================================================

***/

.journal-one {
	position: relative;
	padding: 100px 0px 70px;
	background-attachment: fixed;
	background-size: cover;
}

.journal-one:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.70;
	background-color: var(--color-four);
}

.journal-one .journal-block_one {
	width: 20%;
	float: left;
	padding: 0px 15px;
}

.journal-block_one {
	position: relative;
	margin-bottom: 30px;
}

.journal-block_one-inner {
	position: relative;
	padding: 25px 25px;
	background-color: rgba(var(--black-color-rgb), 0.50);
}

.journal-block_one-inner:before {
	position: absolute;
	content: '';
	left: -1px;
	top: -1px;
	right: -1px;
	bottom: -1px;
	opacity: 0;
	transform: scale(0.2, 1);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background: var(--main-color);

}

.journal-block_one-inner:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}

.journal-block_one-title {
	position: relative;
	font-size: 14px;
	padding: 5px 15px;
	text-transform: capitalize;
	color: var(--white-color);
	display: inline-block;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 1px solid rgba(var(--white-color-rgb), 0.50);
}

.journal-block_one-inner:hover .journal-block_one-title {
	color: var(--white-color);
	border-color: var(--color-four);
	background-color: var(--color-four);
}

.journal-block_one-heading {
	position: relative;
	font-weight: 400;
	margin-top: 18px;
	max-width: 220px;
	margin-bottom: 110px;
}

.journal-block_one-heading a {
	position: relative;
	color: var(--white-color);
}

.journal-block_one-arrow {
	position: absolute;
	right: 10px;
	bottom: 15px;
	line-height: 1em;
	font-size: 30px;
	display: inline-block;
	color: var(--white-color);
	transform: rotate(45deg);
}

.journal-block_one-arrow:hover {
	color: var(--color-four);
}

/*** 

====================================================================
	Testimonial One
====================================================================

***/

/* .testimonial-one {
	position: relative;
	padding: 50px 0px 70px;
	background-color: #E6E6FF;
}

.testimonial-one.style-two {
	padding-top: 0px;
	background: none;
}

.testimonial-block_one {
	position: relative;
	margin-bottom: 30px;
}

.testimonial-block_one-inner {
	position: relative;
}

.testimonial-block_one-content {
	position: relative;
	padding: 25px 25px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.testimonial-block_one-content:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	background-color: var(--white-color);

	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	transition: all 900ms ease;
	-webkit-transform: perspective(400px) rotateX(-90deg);
	-moz-transform: perspective(400px) rotateX(-90deg);
	-ms-transform: perspective(400px) rotateX(-90deg);
	-o-transform: perspective(400px) rotateX(-90deg);
	transform: perspective(400px) rotateX(-90deg);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.testimonial-block_one-inner:hover .testimonial-block_one-content:before {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateX(0deg);
	-moz-transform: perspective(400px) rotateX(0deg);
	-ms-transform: perspective(400px) rotateX(0deg);
	-o-transform: perspective(400px) rotateX(0deg);
	transform: perspective(400px) rotateX(0deg);
}

.testimonial-block_one-author {
	position: relative;
	width: 70px;
	height: 70px;
	display: inline-block;
}

.testimonial-block_one-name {
	position: relative;
	font-weight: 500;
	margin-top: 25px;
	color: var(--white-color);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.testimonial-block_one-inner:hover .testimonial-block_one-designation,
.testimonial-block_one-inner:hover .testimonial-block_one-name {
	color: var(--color-four);
}

.testimonial-block_one-designation {
	position: relative;
	font-weight: 400;
	font-size: 15px;
	margin-top: 5px;
	opacity: 0.30;
	color: var(--white-color);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.testimonial-block_one-number {
	position: relative;
	font-weight: 700;
	font-size: 40px;
	margin-top: 30px;
	opacity: 0.10;
	text-align: right;
	color: var(--white-color);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.testimonial-block_one-inner:hover .testimonial-block_one-number {
	opacity: 1;
	color: var(--color-four);
}

.testimonial-block_one-lower {
	position: relative;
	margin-left: 30px;
	margin-top: 25px;
	font-size: 18px;
	line-height: 28px;
	padding-left: 70px;
	color: var(--white-color);
}

.testimonial-block_one-lower .quote_icon {
	position: absolute;
	left: 0px;
	top: 6px;
	line-height: 1em;
} */

.testimonial-one {
	padding: 50px 0;
	background: #f1f4f4;
	overflow: hidden;
}

.three-item_carousel {
	padding: 10px 0;
}

/* CARD */
.testimonial-block_one-inner {
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	position: relative;
	transition: 0.4s;
	border: 1px solid #e7eef8;
	height: 100%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-block_one-inner:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(2, 61, 130, 0.08);
}

/* TOP */
.testimonial-block_one-content {
	margin-bottom: 20px;
	position: relative;
}

/* IMAGE */
.testimonial-block_one-author img {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #edf5ff;
}

/* NAME */
.testimonial-block_one-name {
	margin: 0;
	color: #000;
}

/* DESIGNATION */
.testimonial-block_one-designation {
	font-size: 14px;
	color: #6c757d;
	margin-top: 4px;
}

/* NUMBER */
.testimonial-block_one-number {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 55px;
	font-weight: 800;
	opacity: 0.08;
	color: #023d82;
	margin: 0;
}

/* CONTENT */
.testimonial-block_one-lower {
	font-size: 17px;
	line-height: 32px;
	color: #4d4d4d;
	position: relative;
	padding-top: 20px;
	border-top: 1px solid #edf2f7;
}

/* QUOTE */
.quote_icon {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #0d6bc7, #68a94b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.quote_icon img {
	width: 22px;
	filter: brightness(0) invert(1);
}

/* SWIPER SPACING */
.three-item_carousel .swiper-slide {
	height: auto;
}

/* MOBILE */
@media(max-width:767px) {

	.testimonial-one {
		padding: 80px 0;
	}

	.testimonial-block_one-inner {
		padding: 25px;
	}

	.testimonial-block_one-name {
		font-size: 20px;
	}

	.testimonial-block_one-number {
		font-size: 40px;
	}

	.testimonial-block_one-lower {
		font-size: 15px;
		line-height: 28px;
	}
}

/*** 

====================================================================
	stats One
====================================================================

***/

.stats-one {
	position: relative;
	padding: 100px 0px 100px;
	background-attachment: fixed;
	background-size: cover;
}

.stats-one.style-two::before {
	display: none;
}

.stats-one:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.90;
	background-color: var(--color-four);
}

.stats-one .inner-container {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(var(--white-color-rgb), 1);
	border-bottom: 0px;
}

.stats-one .counter-block_one {
	float: left;
	padding: 0px 0px;
}

.counter-block_one {
	position: relative;
}

.counter-block_one-inner {
	position: relative;
	padding: 35px 55px;
	border-right: 1px solid rgba(var(--white-color-rgb), 1);
	border-bottom: 1px solid rgba(var(--white-color-rgb), 1);
}

.counter-block_one-inner:before {
	position: absolute;
	content: '';
	right: 20px;
	top: 20px;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background: var(--main-color);

}

.counter-block_one-counter {
	position: relative;
	font-size: 75px;
	font-weight: 500;
	line-height: 1em;
	color: var(--white-color);
}

.counter-block_one-text {
	position: relative;
	font-size: 20px;
	margin-top: 0px;
	color: var(--white-color);
	text-transform: capitalize;
}

.stats-one_contact-column {
	padding: 0px 0px;
	float: left;
}

.stats-one .stats-one_contact-column {
	position: relative;
}

.stats-one_contact-inner {
	position: relative;
	padding: 35px 35px;
	background: var(--main-color);

}

.stats-one_contact-content {
	position: relative;
	padding: 19px 30px 19px 80px;
	background-color: var(--color-four);
}

.stats-one_contact-icon {
	position: absolute;
	left: 25px;
	top: 40px;
	font-size: 34px;
	line-height: 1em;
	color: var(--white-color);
}

.stats-one_contact-content h3 {
	position: relative;
	font-size: 30px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: uppercase;
}

.stats-one_contact-content .text {
	position: relative;
	font-size: 20px;
	font-weight: 400;
	color: var(--white-color);
	text-transform: capitalize;
}

/*** 

====================================================================
	Awards One
====================================================================

***/

.awards-one {
	position: relative;
	padding: 100px 0px 100px;
	background-color: var(--color-four);
}

.awards-one.style-two {
	padding-top: 0px;
	background: none;
}

.awards-block_one {
	position: relative;
	margin-bottom: 10px;
}

.awards-block_one-inner {
	position: relative;
	padding: 10px 10px;
	min-height: 122px;
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.awards-block_one-inner:before {
	position: absolute;
	content: '';
	left: -1px;
	top: -1px;
	right: -1px;
	bottom: -1px;
	opacity: 0;
	transform: scale(1, 0.2);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background: var(--main-color);

}

.awards-block_one-inner:hover::before {
	opacity: 1;
	transform: scale(1, 1);
}

.awards-block_one-content {
	position: relative;
	padding-top: 25px;
	padding-left: 125px;
}

.awards-block_one-number {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100px;
	height: 100px;
	font-size: 40px;
	line-height: 98px;
	text-align: center;
	display: inline-block;
	color: var(--white-color);
	background-color: var(--black-color);
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.awards-block_one-title {
	position: relative;
	font-weight: 400;
	color: var(--white-color);
	text-transform: uppercase;
}

.awards-block_one-title span {
	position: relative;
	font-size: 17px;
	top: -5px;
	opacity: 0;
	margin-left: 10px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.awards-block_one-inner:hover .awards-block_one-title span {
	opacity: 1;
}

.awards-block_one-arrow {
	position: absolute;
	right: 25px;
	top: 25px;
	z-index: 1;
	font-size: 44px;
	line-height: 1em;
	color: var(--white-color);
}

.awards-block_one-link {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 10;
	display: block;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

.page-title {
	position: relative;
	text-align: center;
	padding: 150px 0px 90px;
}

.page-title_heading {
	position: relative;
	font-size: 120px;
	line-height: 1em;
	color: var(--white-color);
	text-transform: uppercase;
}

.page-title_text {
	position: relative;
	font-size: 18px;
	margin-top: 10px;
	color: var(--white-color);
	text-align: center;
}

/*** 

====================================================================
	Team One
====================================================================

***/

.team-one {
	position: relative;
	padding: 0px 0px 0px;
}

.team-one .title-box {
	position: relative;
}

.team-one .title-box h2 {
	position: relative;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
	max-width: 670px;
	margin-bottom: 40px;
	color: var(--white-color);
}

.team-block_one {
	position: relative;
	margin-bottom: 40px;
}

.team-block_one-inner {
	position: relative;
	padding-left: 25px;
	padding-bottom: 40px;
}

.team-block_one-inner:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 45px;
	right: 0px;
	bottom: 0px;
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.team-block_one-socials {
	position: relative;
	width: 172px;
	margin-top: 70px;
	display: inline-block;
	padding: 10px 9px 4px;
	background-color: var(--black-color);
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.team-block_one-socials a {
	position: relative;
	width: 70px;
	height: 40px;
	margin: 0px 2px 5px;
	line-height: 38px;
	text-align: center;
	display: inline-block;
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.team-block_one-socials a img {
	position: relative;
	width: 24px;
	top: -1px;
}

.team-block_one-socials a:hover {}

.team-block_one-image {
	position: absolute;
	right: 30px;
	bottom: 0px;
}

.team-block_one-heading {
	position: relative;
	font-weight: 500;
	margin-top: 35px;
}

.team-block_one-heading a {
	position: relative;
	color: var(--white-color);
}

.team-block_one-designation {
	position: relative;
	font-size: 16px;
	margin-top: 0px;
	opacity: 0.50;
	color: var(--white-color);
}

/*** 

====================================================================
	Contact One
====================================================================

***/

.contact-one {
	position: relative;
	padding: 30px 0px 70px;
}

.contact-one_info-column {
	position: relative;
	margin-bottom: 30px;
}

.contact-one_info-outer {
	position: relative;
}

.contact-one_heading {
	position: relative;
	font-size: 40px;
	font-weight: 400;
	color: var(--white-color);
}

.contact-one_list {
	position: relative;
	margin-top: 25px;
	padding: 20px 0px;
	border-top: 1px solid rgba(var(--white-color-rgb), 0.50);
	border-bottom: 1px solid rgba(var(--white-color-rgb), 0.50);
}

.contact-one_list li {
	position: relative;
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 20px;
	color: var(--white-color);
}

.contact-one_list li a {
	position: relative;
	color: var(--white-color);
}

.contact-one_list li:nth-child(2) {
	margin-bottom: 0px;
}

.contact-one_list li:last-child {
	margin-bottom: 0px;
}

.contact-one_socials {
	position: relative;
	margin-top: 25px;
}

.contact-one_socials li {
	position: relative;
	margin-right: 10px;
	display: inline-block;
}

.contact-one_socials li a {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	color: var(--white-color);
}

.contact-one_form-column {
	position: relative;
	margin-bottom: 30px;
}

.contact-one_form-outer {
	position: relative;
}

.contact-one_form-outer h3 {
	position: relative;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--white-color);
}


/*** 

====================================================================
	Contact Form
====================================================================

***/

.contact-form .form-group {
	position: relative;
	margin-bottom: 20px;
}

.contact-form .form-group:last-child {
	margin-bottom: 0px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select {
	position: relative;
	display: block;
	width: 100%;
	line-height: 28px;
	padding: 10px 20px;
	height: 60px;
	border-radius: 0px;
	font-weight: 400;
	font-size: 20px;
	color: var(--white-color);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	background: none;
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.contact-form .form-group textarea::-webkit-input-placeholder,
.contact-form .form-group input::-webkit-input-placeholder {
	color: var(--white-color);
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
	border-color: var(--white-color);
}

.contact-form .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	font-size: 20px;
	line-height: 24px;
	padding: 15px 20px 25px;
	color: var(--white-color);
	height: 180px;
	resize: none;
	border-radius: 0px;
	font-weight: 400;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	background: none;
	border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.contact-form .form-group button {
	margin-top: 0px;
	position: relative;
	padding: 17px 40px;
	border-radius: 0px;
	font-weight: 400;
	font-size: 20px;
	color: var(--white-color);
	display: inline-block;
	text-transform: uppercase;
	background: var(--main-color);

}

.contact-form .form-group button:hover {
	background-color: var(--color-two);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
	border-color: #ff0000 !important;
}

.contact-form label.error {
	display: block;
	line-height: 24px;
	padding: 5px 0px 0px;
	margin: 0px;
	text-transform: uppercase;
	font-size: 12px;
	color: #ff0000;
	font-weight: 500;
}

/*** 

====================================================================
	journal One
====================================================================

***/

.journal-two {
	position: relative;
	padding: 30px 0px 70px;
}

.journal-two .journal-block_one {
	width: 20%;
	float: left;
	padding: 0px 15px;
}

/*** 

====================================================================
	journal Detail
====================================================================

***/

.journal-detail {
	position: relative;
	padding: 180px 0px 50px;
}

.journal-detail .column {
	position: relative;
	margin-bottom: 30px;
}

.journal-detail_image {
	position: relative;
	padding-right: 30px;
	margin-bottom: 30px;
}

.journal-detail_image img {
	position: relative;
	width: 100%;
	display: block;
}

.journal-detail_title {
	position: relative;
	font-weight: 400;
	font-size: 50px;
	line-height: 60px;
	margin-bottom: 15px;
	color: var(--white-color);
}

.journal-detail p {
	position: relative;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 15px;
	color: var(--white-color);
}

/*** 

====================================================================
	Single Work
====================================================================

***/

.single-work {
	position: relative;
	padding: 180px 0px 50px;
}

.single-work .column {
	position: relative;
	margin-bottom: 30px;
}

.single-work_image {
	position: relative;
	padding-right: 30px;
	margin-bottom: 30px;
}

.single-work_image img {
	position: relative;
	width: 100%;
	display: block;
}

.single-work_title {
	position: relative;
	font-size: 60px;
	font-weight: 600;
	line-height: 70px;
	margin-bottom: 15px;
	color: var(--white-color);
	text-transform: uppercase;
}

.single-work p {
	position: relative;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 15px;
	color: var(--white-color);
}

.single-work_list {
	position: relative;
	margin-top: 30px;
	border: 1px solid rgba(var(--white-color-rgb), 1);
	border-bottom: 0px;
}

.single-work_list li {
	position: relative;
	padding: 20px 20px;
	font-size: 26px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: uppercase;
	border-bottom: 1px solid rgba(var(--white-color-rgb), 1);
}

.single-work_list li span {
	position: relative;
	display: block;
	font-size: 18px;
	margin-top: 6px;
	text-transform: capitalize;
}

/*** 

====================================================================
	Work One
====================================================================

***/

.work-one {
	position: relative;
	padding: 40px 0px 100px;
}




.robot {
	position: absolute !important;
	bottom: 0;
	width: 100%;
	z-index: 3;
	mix-blend-mode: exclusion;
}
dotlottie-wc{
    width: 500px;
    height: 500px;
}
.single-work_list a {
	color: #fff;
}

.single-work_list a:hover {
	color: #053b7c;
}


a.backtop {
	background: transparent;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border: 1px solid #fff;
	font-size: 24px;
	color: #fff;

	transition: background 0.5s ease, color 0.5s ease;
}

a.backtop:hover {
	color: #fff;
}

.service-block_one-more {
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 0.4s ease, transform 0.4s ease;

}

.gallery-block_one-inner:hover .service-block_one-more {
	opacity: 1;
	transform: translateY(0);
	margin-bottom: 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.team-block_one {
	transition: opacity 0.3s, filter 0.3s;
}

.team-block_one-socials a {
	transition: opacity 0.3s;
	opacity: 0;
}

.team-block_one:hover .team-block_one-socials a {
	opacity: 1;
}

.team-block_one:hover {
	opacity: 1;
	filter: blur(0);
	z-index: 1;
	/* Bring the hovered block to the front */
}

/* General sibling combinators to blur and fade out other team members */
.row:hover .team-block_one:not(:hover) {
	opacity: 0.5;
	filter: blur(2px);
}

.team-block_one {
	transition: transform 0.7s ease;
}

.team-block_one:hover {
	transform: translateY(-10px);
}

.team-block_one-socials a {
	transition: transform 0.7s ease, opacity 0.7s ease;
	transform: translateY(20px);
	opacity: 0;
}

.team-block_one:hover .team-block_one-socials a {
	transform: translateY(0);
	opacity: 1;
}

/* Define keyframes for the animated gradient */
@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Base styles for social icons */
.team-block_one-socials a {
	position: relative;

	background-size: 200% 200%;
	transition: transform 0.3s ease-in-out;
}

/* Apply animated gradient on hover */
.team-block_one-socials a:hover {
	animation: gradient-animation 2s ease infinite;
	transform: scale(1.1);
	background: var(--main-color);

}

.team-block_one-socials a:hover {
	animation: gradient-animation 2s ease infinite;
	transform: scale(1.1);
	background: var(--main-color);

	transition: background 1s ease;
	/* Slower transition for the background */
}

.team-block_one-socials a {
	position: relative;
	background-size: 200% 200%;
}

/* Create a pseudo-element for the gradient background */
.team-block_one-socials a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
	opacity: 0;
	/* Initially hidden */
	transition: opacity 0.5s ease;
	/* Smooth transition for opacity */
}

/* Show the pseudo-element on hover */
.team-block_one-socials a:hover::before {
	opacity: 1;
	/* Show the gradient with transition */
}

/* Apply other styles */
.team-block_one-socials a:hover {
	animation: gradient-animation 2s ease infinite;
	transform: scale(1.1);
}

/* Customize scrollbar track */
::-webkit-scrollbar {
	width: 10px;
	/* Width of the scrollbar */
	background-color: transparent;
	/* Background color of the scrollbar track */
}

/* Customize scrollbar thumb */
::-webkit-scrollbar-thumb {
	background: var(--main-color);
	/* Gradient for the scrollbar thumb */
	border-radius: 10px;
	/* Rounded corners of the scrollbar thumb */
	border: 2px solid transparent;
	/* Border of the scrollbar thumb */
}

/* On hover, change thumb color */
::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(to top, var(--color-two) 0%, var(--main-color) 100%);
	/* Gradient for the scrollbar thumb on hover */
}

/* Customize scrollbar track when scrollbar is actively being scrolled */
::-webkit-scrollbar-thumb:active {
	background: linear-gradient(to top, var(--color-two) 0%, var(--main-color) 100%);
	/* Gradient for the scrollbar thumb when actively scrolling */
}

/* Customize scrollbar corner */
::-webkit-scrollbar-corner {
	background-color: transparent;
	/* Background color of the scrollbar corner */
}

/* Add gradient to scrollbar track */
::-webkit-scrollbar-track {
	background: linear-gradient(to top, var(--color-three) 0%, var(--color-four) 100%) !important;

}

html {
	scroll-behavior: smooth;

}

/* ------------------------- own css ------------------------ */
.medical-cta {
	padding: 0 0 20px 0;
}

.medical-cta-wrapper {
	background: linear-gradient(135deg, #0d6bc7 0%, #127fd7 60%, #6aaa45 100%);
	border-radius: 18px;
	padding: 30px 30px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.medical-cta-content {
	width: 60%;
	position: relative;
	z-index: 2;
}

.cta-tag {
	display: inline-block;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	margin-bottom: 10px;
}

.medical-cta-content h2 {
	font-size: 35px;
	line-height: 1.1;
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}

.medical-cta-content h2 span {
	color: #d8ff63;
	font-size: 40px;
}

.medical-cta-content p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	line-height: 28px;
	max-width: 550px;
	margin-bottom: 15px;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.cta-btn {
	background: #fff;
	color: #0d6bc7;
	padding: 16px 32px;
	border-radius: 60px;
	font-weight: 600;
	transition: 0.4s;
	padding-bottom: 18px;

}

.cta-btn:hover {
	background: #d8ff63;
	color: #000;
}

.cta-btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 16px 32px;
	border-radius: 60px;
	font-weight: 600;
	transition: 0.4s;
}

.cta-btn-outline:hover {
	background: #fff;
	color: #0d6bc7;
}

.medical-cta-image {
	width: 35%;
	text-align: right;
	position: relative;
	z-index: 2;
}

.medical-cta-image img {
	max-width: 100%;
}

/* MOBILE */
@media (max-width: 991px) {

	.medical-cta-wrapper {
		padding: 40px 30px;
		flex-direction: column;
		text-align: center;
	}

	.medical-cta-content,
	.medical-cta-image {
		width: 100%;
	}

	.medical-cta-content h2 {
		font-size: 20px;
	}

	.medical-cta-content h2 span {
		font-size: 24px;
	}

	.cta-buttons {
		justify-content: center;
		flex-wrap: nowrap;
		white-space: nowrap;
		gap: 5px;
	}

	.cta-btn,
	.cta-btn-outline {
		display: flex;
		padding: 16px 12px;
		height: 20px;
		align-items: center;
		justify-content: center;
	}

	.medical-cta-image {
		display: none;
	}

	.doctor-card img {
		height: auto !important;
	}

	.doctor-content {
		padding: 5px !important;
	}

	.doctor-content h4 {
		font-size: 18px;
		line-height: 18px;
	}
}


.journey-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}

.journey-content {
	padding: 12px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 0 0 8px 8px;
}

.journey-content span {
	color: #68a94b;
	font-weight: 600;
	font-size: 16px;
}

.journey-content h5 {
	font-weight: 600;
	/* margin: 10px 0; */
	color: #000;
}

.journey-content p {
	color: #666;
	line-height: 28px;
	margin: 0;
}

@media(max-width:991px) {

	.journey-title {
		font-size: 34px;
	}

	.journey-card {
		margin-top: 0 !important;
	}
}



.featured-section {
	background: #f1f4f4;
	overflow: hidden;
}

/* CARD */
.brand-card {
	height: 140px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #edf2f7;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	transition: 0.4s;
	position: relative;
	overflow: hidden;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



/* HOVER */
.brand-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(2, 61, 130, 0.08);
}

/* LOGO */
.brand-card img {
	max-width: 100%;
	max-height: 55px;
	object-fit: contain;
	opacity: 0.7;
	transition: 0.4s;
}

/* MOBILE */
@media(max-width:767px) {

	.featured-title {
		font-size: 36px;
	}

	.brand-card {
		height: 120px;
		padding: 20px;
	}

	.main-header {
		min-height: 50px;
	}

	.main-header .header-lower .logo-box .logo {
		padding: 8px 0px;
		width: 50px;
	}

	.banner-one_heading {
		margin-bottom: 0;
	}

	.auto-container {
		padding: 0px 15px;
	}

	.gallery-one {
		padding: 20px 0px 20px;
	}

	.gallery-block_one {
		margin-bottom: 0px;
	}
	dotlottie-wc{
	    width: 150px;
	    height: 150px;
	}
}

/* form */

.consultation-wrapper {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* IMAGE */
.consultation-image {
	height: 100%;
	background-color: #023d82;
}

.consultation-image img {
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
	display: block;
}

/* FORM */
.consultation-form-box {
	padding: 30px;
}

.consult-tag {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 50px;
	background: rgba(13, 107, 199, 0.08);
	color: #0d6bc7;
	font-weight: 600;
	margin-bottom: 20px;
}

.consultation-form-box h2 {
	font-size: 42px;
	font-weight: 700;
	color: #023d82;
	margin-bottom: 15px;
}

.consultation-form-box p {
	color: #6c757d;
	line-height: 30px;
	margin-bottom: 35px;
}

/* INPUT */
.form-group {
	margin-bottom: 20px;
}

.form-group input {
	width: 100%;
	height: 58px;
	border: 1px solid #dde7f3;
	border-radius: 14px;
	padding: 0 20px;
	outline: none;
	transition: 0.3s;
	font-size: 15px;
}

.form-group input:focus {
	border-color: #0d6bc7;
	box-shadow: 0 0 0 4px rgba(13, 107, 199, 0.08);
}

/* BUTTON */
.consult-btn {
	width: 100%;
	height: 60px;
	border: none;
	border-radius: 14px;
	background: #0d6bc7;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	transition: 0.4s;
}

.consult-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(13, 107, 199, 0.25);
	background-color: #4f9b63;
}

/* MOBILE */
@media(max-width:991px) {

	.consultation-form-box {
		padding: 35px 25px;
	}

	.consultation-form-box h2 {
		font-size: 32px;
	}

	.consultation-image img {
		min-height: 300px;
	}
}

/* ---------- meet or doctor -------------- */
.doctor-title {
	font-size: 42px;
	font-weight: 700;
	color: #023d82;
}

.doctor-text {
	color: #666;
}

.doctor-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: 0.3s;
}

.doctor-card:hover {
	transform: translateY(-5px);
}

.doctor-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.doctor-content {
	padding: 10px;
}

.doctor-content h4 {
	font-weight: 600;
	color: #000;
}

.doctor-content span {
	color: #68a94b;
	font-weight: 500;
}

.price-comparison {
	padding: 50px 20px;
	background: #f5f5f5;
	font-family: sans-serif;
}

.table-wrapper {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 30px;
}

.table-row {
	display: grid;
	grid-template-columns: 2fr 1fr;
	align-items: center;
	border-bottom: 1px solid #ddd;
}

.table-row div {
	padding: 22px 25px;
	font-size: 17px;
}

.table-head {
	background: #0d6bc7;
	color: #fff;
	font-weight: 600;
}

.table-row:not(.table-head):hover {
	background: #f9f9f9;
}

.table-row div:last-child {
	font-weight: 700;
	color: #0d6bc7;
}


@media (max-width: 768px) {

	.section-title h2 {
		font-size: 30px;
	}

	.table-row {
		grid-template-columns: 1fr;
	}

	.table-row div {
		padding: 16px 18px;
	}

	.table-head {
		display: none;
	}

	.table-row div:last-child {
		padding-top: 0;
	}
}

.success-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 9999;
}

.success-popup.active {
	opacity: 1;
	visibility: visible;
}

.popup-box {
	background: #fff;
	padding: 35px;
	border-radius: 20px;
	text-align: center;
	width: 90%;
	max-width: 400px;
}

.popup-box i {
	font-size: 60px;
	color: #023d82;
	margin-bottom: 15px;
}

.popup-box h3 {
	font-size: 28px;
	color: #023d82;
}

.popup-box p {
	color: #000;
	margin-bottom: 12px;
}

.popup-box button {
	background: #023d82;
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 30px;
	cursor: pointer;
}

.premium-recovery-section {
	padding: 60px 0;
}

.recovery-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.recovery-image {
	position: relative;
}

.recovery-image img {
	width: 100%;
	/* border-radius: 30px; */
	display: block;
	object-fit: cover;
}

.floating-badge {
	position: absolute;
	left: 30px;
	bottom: 30px;
	background: rgba(255, 255, 255, 0.95);
	padding: 14px 22px;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: #083344;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.floating-badge i {
	color: #7ab730;
}

.sub-title {
	display: inline-block;
	color: #7ab730;
	font-weight: 600;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
}

.recovery-content p {
	font-size: 16px;
	line-height: 1.9;
	color: #000;
	margin: 10px 0 30px 0;
}

.recovery-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 40px;
}

.list-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.list-item i {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: #e9f5d2;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7ab730;
	font-size: 20px;
}

.list-item h4 {
	font-size: 20px;
	color: #083344;
	font-weight: 600;
}

.list-item p {
	margin: 0;
	font-size: 15px;
}



@media (max-width: 991px) {

	.recovery-wrapper {
		grid-template-columns: 1fr;
	}

	
}

@media (max-width: 576px) {

	.premium-recovery-section {
		padding: 40px 0;
	}

	.floating-badge {
		left: 15px;
		bottom: 15px;
		padding: 12px 18px;
		font-size: 14px;
	}

	.list-item {
		gap: 14px;
	}

	.list-item h4 {
		font-size: 18px;
	}
}