.light-background,
:root {
	--surface-color: #ffffff
}

.dark-background,
:root {
	--contrast-color: #ffffff
}

a,
a:hover {
	text-decoration: none
}

a,
h1,
h2,
h3,
h5,
h6 {
	color: var(--accent-color)
}

.btn-chola,
body {
	font-family: var(--default-font)
}

.btn-chola,
.our-story h3 {
	text-transform: uppercase
}

:root {
	--default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Russo One", sans-serif;
	--nav-font: "Russo One", sans-serif;
	--background-color: #ffffff;
	--default-color: #364d59;
	--heading-color: #52565e;
	--accent-color: #082f55;
	--nav-color: white;
	--nav-hover-color: #ffffff;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #082f55;
	--nav-dropdown-hover-color: #6fa5da;
	--black-color: #4c4c4c;
	scroll-behavior: smooth
}

.dark-background,
.header {
	--default-color: #ffffff;
	--heading-color: #ffffff
}

.light-background {
	--background-color: #f4f7f6
}

.dark-background {
	--background-color: #060606eb;
	--surface-color: #252525
}

.btn-chola,
.btn-chola:hover {
	background: var(--accent-color);
	color: var(--contrast-color)
}

.fade:not(.show) {
	display: none
}

body {
	color: var(--default-color);
	background-color: var(--background-color)
}

.header .logo span,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font)
}

a {
	transition: .3s
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

h3,
h4 {
	color: var(--black-color);
	line-height: 1.6
}

.btn-chola {
	border: 0;
	padding: 18px 20px;
	transition: .4s;
	border-radius: 0
}

.btn-chola:hover {
	opacity: .8
}

.inner-title {
	padding-bottom: 20px
}

.our-story p {
	font-size: 16px;
	line-height: 2;
	text-align: justify
}

.about-us img {
	padding: 25px
}

.header {
	--background-color: rgba(255, 255, 255, 0);
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	transition: .5s;
	z-index: 997
}

.header .logo img {
	max-height: 50px;
	margin-right: 8px
}

.logo-blue,
.logo-white {
	display: block
}

.header .logo h1 {
	font-size: 24px;
	margin: 0;
	color: var(--heading-color)
}

.header .logo span {
	font-size: 24px;
	padding-left: 1px;
	color: var(--color-primary)
}

.scrolled .header {
	box-shadow: 0 0 18px rgba(0, 0, 0, .1);
	--background-color: rgba(255, 255, 255, 0.95);
	--heading-color: #3c3c3c;
	--nav-color: #3c3c3c;
	--nav-hover-color: #3c3c3c
}

@media (min-width:1200px) {
	.navmenu {
		padding: 0
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center
	}

	.navmenu li {
		position: relative
	}

	.navmenu>ul>li {
		white-space: nowrap;
		padding: 15px 14px
	}

	.navmenu>ul>li:last-child {
		padding-right: 0
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		font-size: 14px;
		padding: 0 2px;
		font-family: var(--nav-font);
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: .3s;
		position: relative;
		text-transform: uppercase
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: .3s
	}

	.navmenu>ul>li>a:before {
		content: "";
		position: absolute;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--accent-color);
		visibility: hidden;
		width: 0;
		transition: .3s ease-in-out
	}

	.navmenu .active:before,
	.navmenu a:hover:before,
	.navmenu li:hover>a:before {
		visibility: visible;
		width: 100%
	}

	.navmenu .active,
	.navmenu .active:focus,
	.navmenu li:hover>a {
		color: var(--nav-hover-color)
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: .3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0 0 30px rgba(0, 0, 0, .1)
	}

	.navmenu .dropdown ul li {
		min-width: 200px
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		font-weight: 400;
		color: var(--nav-dropdown-color)
	}

	.navmenu .dropdown ul a i {
		font-size: 12px
	}

	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color)
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible
	}
}

.alt-services h3:after,
.features .tab-pane h3:after,
.hero .info .btn-get-started:hover,
.hero .info h2:after,
.services .service-item:hover .icon:before {
	background: var(--accent-color)
}

.footer .container,
.ongoing-project {
	position: relative
}

.ongoing-title {
	position: absolute;
	background-color: green;
	padding: 5px;
	top: 0;
	color: #fff
}

.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	background: url("../img/1.jpg") top center/cover no-repeat;
	font-size: 14px;
	position: relative
}

.footer:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 20%);
	position: absolute;
	inset: 0
}

.hero .carousel-item,
.page-title {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat
}

.footer .footer-top {
	padding-top: 50px
}

.footer .footer-about .logo {
	line-height: 1;
	margin-bottom: 25px
}

.footer .footer-about .logo img {
	max-height: 40px;
	margin-right: 6px
}

.footer .footer-about .logo span {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: 26px;
	letter-spacing: 1px
}

.footer .footer-about p {
	font-size: 14px;
	font-family: var(--default-font)
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-right: 10px;
	transition: .3s
}

.footer .social-links a:hover {
	color: white;
	border-color: var(--accent-color)
}

.footer .credits,
.services .service-item .icon i,
.services .service-item:hover .icon i {
	color: var(--heading-color)
}

.footer h4 {
	font-size: 16px;
	color: #fff !important;
	position: relative;
	padding-bottom: 12px
}

.page-title,
.scroll-top i,
.section,
section {
	color: var(--default-color)
}

.footer .footer-links {
	margin-bottom: 30px
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.footer .footer-links ul i {
	padding-right: 2px;
	font-size: 12px;
	line-height: 0
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center
}

.footer .footer-links ul li:first-child {
	padding-top: 0
}

.footer .footer-links ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	display: inline-block;
	line-height: 1
}

.footer .footer-links ul a:hover {
	color: var(--contrast-color);
	text-decoration: underline
}

.footer .footer-contact p {
	margin-bottom: 5px
}

.footer .copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.features .tab-pane p:last-child,
.footer .copyright p,
.section-title p {
	margin-bottom: 0
}

.footer .credits {
	margin-top: 8px;
	font-size: 13px
}

.footer .credits a,
.scroll-top:hover {
	color: var(--contrast-color)
}

#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: .6s ease-out
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: 1.5s linear infinite animate-preloader
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: .4s
}

.scroll-top i {
	font-size: 24px;
	line-height: 0
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.scroll-top.active {
	visibility: visible;
	opacity: 1
}

@media screen and (max-width:768px) {
	[data-aos-delay] {
		transition-delay: 0 !important
	}
}

.page-title {
	background-color: var(--background-color);
	padding: 160px 0 60px;
	text-align: center;
	position: relative
}

.page-title:before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 40%);
	position: absolute;
	inset: 0
}

.hero,
.hero .info,
.hero .info h2,
.section-title,
.section-title h2 {
	position: relative
}

.page-title h1 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #fff
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 500
}

.page-title .breadcrumbs ol li+li {
	padding-left: 10px
}

.page-title .breadcrumbs ol li a {
	color: #bcbcbc !important
}

.page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px
}

.section,
section {
	padding: 60px 0;
	scroll-margin-top: 92px;
	overflow: clip
}

.hero,
.hero .carousel,
.hero .carousel-item,
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden
}

@media (max-width:1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color .3s
	}

	.navmenu {
		padding: 0;
		z-index: 9997
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		overflow-y: auto;
		transition: .3s;
		z-index: 9998
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: .3s
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: .3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color)
	}

	.navmenu .active,
	.navmenu .active:focus,
	.navmenu a:hover {
		color: var(--nav-dropdown-hover-color)
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg)
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		transition: .5s ease-in-out
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, .1)
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, .03)
	}

	.mobile-nav-active {
		overflow: hidden
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, .8);
		transition: .3s
	}

	.mobile-nav-active .navmenu>ul {
		display: block
	}

	.section,
	section {
		scroll-margin-top: 76px
	}
}

.section-title {
	text-align: center;
	padding-bottom: 40px
}

.section-title h2 {
	font-size: 32px
}

.section-title h2:after,
.section-title h2:before {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--accent-color);
	display: inline-block
}

.section-title h2:before {
	margin: 0 15px 10px 0
}

.section-title h2:after {
	margin: 0 0 10px 15px
}

.hero {
	width: 100%;
	min-height: 100vh;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero .info {
	inset: 0;
	z-index: 3;
	padding: 140px 0 60px
}

@media (max-width:768px),
(max-height:480px) {
	.hero .info {
		padding: 100px 50px 60px
	}
}

.hero .info h2 {
	margin-bottom: 30px;
	padding-bottom: 30px;
	font-size: 36px;
	color: #fff
}

.carousel-item h3 {
	font-size: 46px;
	color: #fff
}

.carousel-item p {
	font-size: 26px !important;
	color: #fff
}

.hero .info h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 80px;
	height: 4px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto
}

@media (max-width:768px) {
	.hero .info h2 {
		font-size: 36px
	}
}

.hero .info p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	font-size: 18px
}

.hero .info .btn-get-started {
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 50px;
	transition: .5s;
	margin: 10px;
	border: 2px solid var(--accent-color)
}

.hero .carousel {
	inset: 0;
	position: absolute
}

.hero .carousel-item {
	position: absolute;
	inset: 0;
	transition-duration: .4s
}

.chola-hero .features-image img,
.hero .carousel-item img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1
}

.hero .carousel-item::before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
	z-index: 2
}

.hero .carousel-control-prev {
	justify-content: start
}

.hero .carousel-control-next {
	justify-content: end
}

@media (min-width:640px) {
	.hero .carousel-control-prev {
		padding-left: 15px
	}

	.hero .carousel-control-next {
		padding-right: 15px
	}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	background: 0 0;
	font-size: 26px;
	line-height: 0;
	background: color-mix(in srgb, var(--default-color), transparent 80%);
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	border-radius: 50px;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
	z-index: 3;
	transition: .3s
}

.hero .carousel-control-next:focus,
.hero .carousel-control-prev:focus {
	opacity: .5
}

.hero .carousel-control-next:hover,
.hero .carousel-control-prev:hover {
	opacity: .9
}

.constructions .card-item {
	background-color: var(--surface-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	position: relative;
	border-radius: 0
}

.constructions .card-item .card-bg {
	min-height: 300px;
	position: relative
}

.constructions .card-item .card-bg img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1
}

.constructions .card-item .card-body,
.recent-blog-posts .post-item .post-content {
	padding: 30px
}

.constructions .card-item h4 {
	font-size: 20px;
	margin-bottom: 15px
}

.constructions .card-item p {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin: 0
}

.services .service-item {
	background-color: var(--surface-color);
	padding: 40px;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	height: 100%
}

.services .service-item .icon {
	width: 48px;
	height: 48px;
	position: relative;
	margin-bottom: 50px
}

.services .service-item .icon i {
	font-size: 56px;
	transition: .3s ease-in-out;
	z-index: 2;
	position: relative
}

.services .service-item h3 {
	color: color-mix(in srgb, var(--heading-color), transparent 20%);
	margin: 0 0 20px;
	padding-bottom: 8px;
	font-size: 22px;
	position: relative;
	display: inline-block;
	border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
	transition: .3s
}

.alt-services .icon-box h4 a:hover,
.alt-services .icon-box i,
.projects .portfolio-content .portfolio-info .details-link:hover,
.projects .portfolio-content .portfolio-info .preview-link:hover,
.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore,
.services .service-item:hover .readmore {
	color: var(--accent-color)
}

.alt-services .icon-box p,
.chola-hero .icon-box p,
.services .service-item p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0
}

.services .service-item .readmore {
	margin-top: 15px;
	display: inline-block;
	color: color-mix(in srgb, var(--default-color), transparent 30%)
}

.services .service-item:hover h3 {
	border-color: var(--accent-color);
	color: var(--heading-color)
}

.alt-services .features-image,
.chola-hero .features-image {
	position: relative;
	min-height: 400px
}

.alt-services .features-image img {
	height: 100%;
	inset: 0;
	display: block;
	width: 100%;
	object-fit: cover;
	z-index: 1
}

.alt-services h3 {
	font-size: 22px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	font-family: var(--nav-font)
}

.alt-services h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	left: 0;
	bottom: 0
}

.alt-services .icon-box {
	margin-top: 50px
}

.alt-services .icon-box i {
	background-color: var(--surface-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	font-size: 28px;
	width: 56px;
	height: 56px;
	border-radius: 4px;
	line-height: 0;
	box-shadow: 0 2px 30px rgba(0, 0, 0, .1);
	transition: .3s
}

.alt-services .icon-box:hover i {
	background-color: var(--accent-color);
	color: var(--contrast-color)
}

.alt-services .icon-box h4,
.chola-hero .icon-box h4 {
	margin-bottom: 10px;
	font-size: 18px
}

.alt-services .icon-box h4 a {
	color: var(--heading-color);
	transition: .3s
}

.features .nav-tabs {
	border: 0
}

.features .nav-link {
	color: var(--heading-color);
	padding: 15px 0;
	transition: .3s;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 100%;
	border: 0;
	border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.features .nav-link i {
	padding-right: 15px;
	font-size: 48px
}

.features .nav-link h4 {
	font-size: 18px;
	margin: 0
}

.features .nav-link:hover {
	color: var(--accent-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.features .nav-link.active {
	background-color: var(--background-color);
	color: var(--accent-color);
	border-color: var(--accent-color)
}

.chola-hero .icon-box,
.features .tab-content {
	margin-top: 30px
}

.features .tab-pane h3 {
	color: var(--heading-color);
	font-size: 32px;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px
}

.features .tab-pane h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	left: 0;
	bottom: 0
}

.projects .portfolio-filters li.filter-active,
.projects .portfolio-filters li:hover {
	background-color: #082f55;
	color: #fff
}

.features .tab-pane ul {
	list-style: none;
	padding: 0
}

.features .tab-pane ul li {
	padding-top: 10px
}

.features .tab-pane ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color)
}

.projects .portfolio-filters {
	padding: 0;
	margin: 0 auto 20px;
	list-style: none;
	text-align: center
}

.projects .portfolio-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px 5px;
	line-height: 1;
	transition: .3s ease-in-out
}

.projects .portfolio-filters li:first-child {
	margin-left: 0
}

.projects .portfolio-filters li:last-child {
	margin-right: 0
}

.projects .portfolio-content {
	position: relative;
	overflow: hidden
}

.projects .portfolio-content img {
	transition: .3s
}

.projects .portfolio-content .portfolio-info {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	transition: .3s ease-in-out;
	background: rgba(0, 0, 0, .6);
	padding: 15px
}

.projects .portfolio-content .portfolio-info h4 {
	font-size: 14px;
	padding: 5px 10px;
	font-weight: 400;
	color: #fff;
	display: inline-block;
	background-color: var(--accent-color)
}

.projects .portfolio-content .portfolio-info p {
	position: absolute;
	bottom: 10px;
	text-align: center;
	display: inline-block;
	left: 0;
	right: 0;
	font-size: 16px;
	color: rgba(255, 255, 255, .8)
}

.projects .portfolio-content .portfolio-info .details-link,
.projects .portfolio-content .portfolio-info .preview-link {
	position: absolute;
	left: calc(50% - 40px);
	font-size: 26px;
	top: calc(50% - 14px);
	color: #fff;
	transition: .3s;
	line-height: 1.2
}

.projects .portfolio-content .portfolio-info .details-link {
	left: 50%;
	font-size: 34px;
	line-height: 0
}

.projects .portfolio-content:hover .portfolio-info {
	opacity: 1
}

.projects .portfolio-content:hover img,
.recent-blog-posts .post-item:hover .post-img img {
	transform: scale(1.1)
}

.testimonials .testimonial-wrap {
	padding-left: 50px
}

.testimonials .testimonial-item {
	background-color: var(--surface-color);
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
	box-sizing: content-box;
	padding: 30px;
	margin: 30px 15px;
	min-height: 200px;
	position: relative
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid var(--background-color);
	position: absolute;
	left: -45px
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	margin: 10px 0 5px
}

.testimonials .testimonial-item h4 {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
	margin: 0
}

.testimonials .testimonial-item .stars {
	margin: 10px 0
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 60%);
	font-size: 26px;
	line-height: 0
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative
}

.project-details .portfolio-description .testimonial-item .quote-icon-right,
.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1)
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto
}

.project-details .swiper-wrapper,
.testimonials .swiper-wrapper {
	height: auto
}

.project-details .swiper-pagination,
.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--background-color);
	opacity: 1;
	border: 1px solid var(--accent-color)
}

.project-details .swiper-pagination .swiper-pagination-bullet-active,
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color)
}

@media (max-width:767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0
	}

	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
		overflow: hidden
	}

	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px
	}

	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto
	}
}

.recent-blog-posts .post-item {
	background: var(--surface-color);
	box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
	transition: .3s
}

.recent-blog-posts .post-item .post-img img {
	transition: .5s
}

.recent-blog-posts .post-item .post-date {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	text-transform: uppercase;
	font-size: 13px;
	padding: 6px 12px;
	font-weight: 500
}

.recent-blog-posts .post-item .post-title {
	color: var(--heading-color);
	font-size: 20px;
	transition: .3s;
	margin-bottom: 15px
}

.recent-blog-posts .post-item .meta i {
	font-size: 16px;
	color: var(--accent-color)
}

.recent-blog-posts .post-item .meta span {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 50%)
}

.recent-blog-posts .post-item hr {
	color: color-mix(in srgb, var(--default-color), transparent 80%);
	margin: 20px 0
}

.recent-blog-posts .post-item .readmore {
	display: flex;
	align-items: center;
	line-height: 1;
	transition: .3s;
	color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.recent-blog-posts .post-item .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px
}

.stats-counter .stats-item {
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	padding: 30px
}

.stats-counter .stats-item i {
	color: var(--accent-color);
	font-size: 42px;
	line-height: 0;
	margin-right: 20px
}

.stats-counter .stats-item span {
	color: var(--heading-color);
	font-size: 36px;
	display: block
}

.stats-counter .stats-item p {
	padding: 0;
	margin: 0;
	font-family: var(--heading-font);
	font-size: 16px
}

.hero_left_img {
	border-radius: 50px 0 0 50px;
	border-left: 8px solid #082f55;
	padding: 8px
}

.hero_right_img {
	border-radius: 0 50px 50px 0;
	border-right: 8px solid #082f55;
	padding: 8px
}

.chola-hero h3 {
	font-size: 24px;
	margin-bottom: 20px
}

.chola-hero .icon-box i {
	color: var(--accent-color);
	margin-right: 15px;
	font-size: 24px;
	line-height: 1.2
}

.project-details .portfolio-details-slider img {
	width: 100%
}

.project-details .swiper-button-next,
.project-details .swiper-button-prev {
	width: 48px;
	height: 48px
}

.project-details .swiper-button-next:after,
.project-details .swiper-button-prev:after {
	color: rgba(255, 255, 255, .8);
	background-color: rgba(0, 0, 0, .15);
	font-size: 24px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s
}

.project-details .swiper-button-next:hover:after,
.project-details .swiper-button-prev:hover:after {
	background-color: rgba(0, 0, 0, .3)
}

@media (max-width:575px) {
	.features .nav-link h4 {
		font-size: 16px
	}

	.projects .portfolio-filters li {
		font-size: 14px;
		margin: 0 5px
	}

	.project-details .swiper-button-next,
	.project-details .swiper-button-prev {
		display: none
	}
}

.project-details .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: color-mix(in srgb, var(--default-color), transparent 85%);
	opacity: 1
}

.project-details .portfolio-info h3 {
	font-size: 22px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative
}

.project-details .portfolio-info h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	bottom: 0
}

.project-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px
}

.project-details .portfolio-info ul li {
	display: flex;
	flex-direction: column;
	padding-bottom: 15px
}

.project-details .portfolio-info ul strong {
	text-transform: uppercase;
	font-weight: 400;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px
}

.project-details .portfolio-info .btn-visit {
	padding: 8px 40px;
	background: var(--accent-color);
	color: var(--contrast-color);
	border-radius: 50px;
	transition: .3s
}

.project-details .portfolio-info .btn-visit:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.project-details .portfolio-description h2 {
	font-size: 26px;
	margin-bottom: 20px
}

.project-details .portfolio-description p {
	padding: 0
}

.project-details .portfolio-description .testimonial-item {
	padding: 30px 30px 0;
	position: relative;
	background: color-mix(in srgb, var(--default-color), transparent 97%);
	margin-bottom: 50px
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	border: 6px solid var(--background-color);
	float: left;
	margin: 0 10px 0 0
}

.project-details .portfolio-description .testimonial-item h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 15px 0 5px;
	padding-top: 20px
}

.project-details .portfolio-description .testimonial-item h4 {
	font-size: 14px;
	color: #6c757d;
	margin: 0
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 50%);
	font-size: 26px;
	line-height: 0
}

.project-details .portfolio-description .testimonial-item p {
	font-style: italic;
	margin: 0 0 15px;
	padding: 0
}

.contact .info-item {
	padding: 20px
}

.contact .info-item i {
	color: var(--accent-color);
	width: 56px;
	height: 56px;
	font-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: .3s ease-in-out;
	border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%)
}

.contact .info-item h3 {
	font-size: 18px;
	margin: 10px 0
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 16px
}

.service-wrap {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%
}

.service-wrap img {
	display: block;
	max-width: 100%;
	height: 100% !important;
	object-fit: cover
}

.service-wrap div {
	opacity: 0;
	transition: .5s ease-in-out;
	opacity: .5s
}

.service-wrap:hover div {
	opacity: 1;
	transform: translateY(0)
}

.service-content {
	position: absolute;
	background: #0000008c;
	height: 100%;
	color: #fff;
	padding: 25px;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center
}

.service-title {
	opacity: 1;
	background-color: #082f55;
	text-align: center;
	color: #fff;
	padding: 15px;
	position: absolute;
	bottom: -20px;
	left: 40px;
	right: 40px
}