/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

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

.hero .info h1 {
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-size: 56px;
	font-weight: 700;
	letter-spacing: 0.1ch;
	position: relative;
	line-height: 1;
}

.hero .info h1 span {
	letter-spacing: 0ch;
	/* letter-spacing: 0ch; */
	/* text-decoration-line: underline;
	text-decoration-color: var(--accent-color) !important;
	text-decoration-thickness: 3px;
	text-decoration-skip: spaces; */
}

.hero .info h2 {
	position: relative;
	letter-spacing: 0.3ch;
	padding-bottom: 10px;
	margin-bottom: 30px;


}

.hero .info h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 80px;
	height: 4px;
	background: var(--accent-color);
	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: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.1ch;
}

.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: 0.5s;
	margin: 10px;
	border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
	background: var(--accent-color);
}

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

.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	transition-duration: 0.4s;
}

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

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

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

@media (min-width: 640px) {
	.hero .carousel-control-next {
		padding-right: 15px;
	}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	background: none;
	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-prev,
.hero .carousel-control-next {
	z-index: 3;
	transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
  # Get Started Section
  --------------------------------------------------------------*/
.get-started .content {
	padding: 30px 0;
}

.get-started .content h3 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 25px;
	position: relative;
}

.get-started .content h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 4px;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
}

.get-started .content p {
	font-size: 14px;
}

.get-started .php-email-form {
	background: color-mix(in srgb, var(--default-color), transparent 97%);
	padding: 30px;
	height: 100%;
}

@media (max-width: 575px) {
	.get-started .php-email-form {
		padding: 20px;
	}
}

.get-started .php-email-form h3 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.get-started .php-email-form p {
	font-size: 14px;
	margin-bottom: 30px;
}


.get-started .php-email-form input[type=text],
.get-started .php-email-form input[type=email],
.get-started .php-email-form select,
.get-started .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(in srgb, var(--background-color), transparent 20%);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-started .php-email-form select:focus {
	border-color: var(--accent-color);
	outline: none;
	/* Removes the default outline */
	background-color: color-mix(in srgb, var(--background-color), transparent 10%);
}

.get-started .php-email-form select option {
	padding: 10px !important;
	background-color: white !important;
	color: var(--default-color) !important;
}

.get-started .php-email-form select option:hover {
	background-color: var(--background-color) !important;
	color: var(--accent-color) !important;
}

.get-started .php-email-form input[type=text]:focus,
.get-started .php-email-form input[type=email]:focus,
.get-started .php-email-form textarea:focus {
	border-color: var(--accent-color);
}

.get-started .php-email-form input[type=text]::placeholder,
.get-started .php-email-form input[type=email]::placeholder,
.get-started .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 10%);
}


.get-started .php-email-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}




/*--------------------------------------------------------------
  # Constructions Section
  --------------------------------------------------------------*/
.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 {
	padding: 30px;
}

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
	background-color: var(--surface-color);
	padding: 40px;
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	height: 100%;
}

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

.services .service-item .icon i {
	color: var(--heading-color);
	font-size: 56px;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
}

.services .service-item .icon:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background: color-mix(in srgb, var(--heading-color), transparent 95%);
	border-radius: 50px;
	z-index: 1;
	top: 10px;
	right: -20px;
	transition: 0.3s;
}

.services .service-item h3 {
	color: color-mix(in srgb, var(--heading-color), transparent 20%);
	font-weight: 700;
	margin: 0 0 20px 0;
	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: 0.3s;
}

.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 .icon i {
	color: var(--heading-color);
}

.services .service-item:hover .icon:before {
	background: var(--accent-color);
}

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

.services .service-item:hover .readmore {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
  # About Me Section
  --------------------------------------------------------------*/
.alt-services .features-image {
	position: relative;
	min-height: 400px;
}

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

.alt-services h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

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

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

.alt-services .icon-box i {
	color: var(--accent-color);
	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: 0px 2px 30px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

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

.alt-services .icon-box h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 18px;
}

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

.alt-services .icon-box h4 a:hover {
	color: var(--accent-color);
}

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


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
	background-color: var(--surface-color);
	padding: 10px 30px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	margin-bottom: 20px;
}

.service-details .services-list a {
	display: block;
	line-height: 1;
	padding: 8px 0 8px 15px;
	border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
	margin: 20px 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
}

.service-details .services-list a.active {
	color: var(--heading-color);
	font-weight: 700;
	border-color: var(--accent-color);
}

.service-details .services-list a:hover {
	border-color: var(--accent-color);
}

.service-details .services-img {
	margin-bottom: 20px;
}

.service-details h3 {
	font-size: 26px;
	font-weight: 700;
}

.service-details h4 {
	font-size: 20px;
	font-weight: 700;
}

.service-details p {
	font-size: 15px;
}

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

.service-details ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.service-details ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--accent-color);
}


/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
	position: relative;
	min-height: 400px;
}

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

.alt-services-2 h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.alt-services-2 .icon-box {
	margin-top: 30px;
}

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

.alt-services-2 .icon-box h4 {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.alt-services-2 .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}






/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin: 30px 0;
}

@media (min-width: 991px) {
	.about .inner-title {
		max-width: 65%;
		margin: 0 0 80px 0;
	}
}

.about .our-story {
	padding: 40px;
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
	.about .our-story {
		padding-right: 35%;
	}
}

.about .our-story h4 {
	text-transform: uppercase;
	font-size: 1.1rem;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
	font-size: 2.25rem;
	font-weight: 700;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
	margin-bottom: 0;
}

.about ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.about ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.about ul i {
	font-size: 1.25rem;
	margin-right: 0.5rem;
	line-height: 1.2;
	color: var(--accent-color);
}

.about .watch-video i {
	font-size: 2rem;
	transition: 0.3s;
	color: var(--accent-color);
}

.about .watch-video a {
	font-weight: 600;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-left: 8px;
	transition: 0.3s;
}

.about .watch-video:hover a {
	color: var(--accent-color);
}

.about .about-img {
	min-height: 400px;
	position: relative;
}

@media (min-width: 992px) {
	.about .about-img {
		position: absolute;
		top: 0;
		right: 0;
		min-height: 600px;
	}
}

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

/*--------------------------------------------------------------
  # Stats Counter Section
  --------------------------------------------------------------*/
.stats-counter .stats-item {
	box-shadow: 0px 0 30px rgba(0, 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;
	font-weight: 600;
}

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

/*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
.team .member {
	position: relative;
}

.team .member .member-img {
	margin: 0 80px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

@media (max-width: 1024px) {
	.team .member .member-img {
		margin: 0 60px;
	}
}

.team .member .member-img img {
	position: relative;
	z-index: 1;
}

.team .member .member-img .social {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	padding-bottom: 20px;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
}

.team .member .member-img .social a {
	transition: 0.3s;
	color: var(--contrast-color);
	font-size: 20px;
	margin: 0 8px;
}

.team .member .member-img .social a:hover {
	color: var(--accent-color);
}

.team .member .member-info {
	margin-top: 30px;
}

.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 18px;
}

.team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 10px;
}

.team .member .member-info p {
	margin-bottom: 0;
	font-size: 14px;
}

.team .member:hover .member-img .social {
	padding-bottom: 0;
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
  # Features Cards Section
  --------------------------------------------------------------*/
.features-cards h3 {
	font-size: 20px;
	font-weight: 700;
}

.features-cards p {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding-top: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 6px;
}


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

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

.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
	color: var(--accent-color);
}

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

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

@media (max-width: 575px) {
	.projects .portfolio-filters li {
		font-size: 14px;
		margin: 0 5px;
	}
}

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

.projects .portfolio-content img {
	transition: 0.3s;
}

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

.projects .portfolio-content .portfolio-info h4 {
	font-size: 14px;
	padding: 5px 10px;
	font-weight: 400;
	color: #ffffff;
	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;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}

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

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
	color: var(--accent-color);
}

.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 {
	transform: scale(1.1);
}


/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
	width: 100%;
}

.project-details .swiper-wrapper {
	height: auto;
}

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

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

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

@media (max-width: 575px) {

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

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

.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 .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.project-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	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: 0.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;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.project-details .portfolio-description .testimonial-item {
	padding: 30px 30px 0 30px;
	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: bold;
	margin: 15px 0 5px 0;
	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 .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
}

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

.testimonials .testimonial-item {
	background-color: var(--surface-color);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	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;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

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

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.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 15px auto;
}

.testimonials .swiper-wrapper {
	height: auto;
}

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

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

/*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
.contact .info-item {
	background-color: var(--surface-color);
	padding: 20px 0 30px 0;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.contact .php-email-form {
	background-color: var(--surface-color);
	height: 100%;
	padding: 30px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
	.contact .php-email-form {
		padding: 20px;
	}
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: var(--surface-color);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

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


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
	background: var(--surface-color);
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
	transition: 0.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-content {
	padding: 30px;
}

.recent-blog-posts .post-item .post-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	transition: 0.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;
	font-weight: 600;
	line-height: 1;
	transition: 0.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;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
	color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Starter Section Section
  --------------------------------------------------------------*/
.starter-section {
	/* Add your styles here */
}

/*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/
.widgets-container {
	background-color: var(--surface-color);
	padding: 30px;
	margin: 60px 0 30px 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}

.widget-item {
	margin-bottom: 40px;
}

.widget-item:last-child {
	margin-bottom: 0;
}

.search-widget form {
	background: var(--background-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	padding: 3px 10px;
	position: relative;
	transition: 0.3s;
}

.search-widget form input[type=text] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--background-color);
	color: var(--default-color);
}

.search-widget form input[type=text]:focus {
	outline: none;
}

.search-widget form button {
	background: var(--accent-color);
	color: var(--contrast-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}

.search-widget form button i {
	line-height: 0;
}

.search-widget form button:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
	border-color: var(--accent-color);
}

.categories-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.categories-widget ul li {
	padding-bottom: 10px;
}

.categories-widget ul li:last-child {
	padding-bottom: 0;
}

.categories-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
}

.categories-widget ul a:hover {
	color: var(--accent-color);
}

.categories-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
}

.recent-posts-widget .post-item {
	display: flex;
	margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
	margin-bottom: 0;
}

.recent-posts-widget .post-item img {
	width: 80px;
	margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
	color: var(--default-color);
	transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
	color: var(--accent-color);
}

.recent-posts-widget .post-item time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
	margin-bottom: -10px;
}

.tags-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tags-widget ul li {
	display: inline-block;
}

.tags-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 14px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	display: inline-block;
	transition: 0.3s;
}

.tags-widget ul a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 14px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
	border: 0;
}

.features .nav-link {
	color: var(--heading-color);
	padding: 15px 0;
	transition: 0.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;
	font-weight: 600;
	margin: 0;
}

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

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

.features .tab-content {
	margin-top: 30px;
}

.features .tab-pane h3 {
	color: var(--heading-color);
	font-weight: 700;
	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;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
}

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

.features .tab-pane p:last-child {
	margin-bottom: 0;
}
