/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Netto - Cleaning Services HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us Css
08. How It Works Css
09. Our Testimonial Css
10. Our Pricing Css
11. Our FAQs Css
12. Cta Box Css
13. Our Blog Css
14. Footer Css
15. About Us Page Css
16. Services Page Css
17. Services Single Css
18. Blog Archive Css
19. Blog Single Css
20. Projects Page Css
21. Project Single Css
22. Image Gallery Css
23. FAQs Page Css
24. Contact Us Page Css
25. 404 Page Css
26. Responsive Css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #051729;
	--secondary-color: #ECF1F5;
	--text-color: #7A7F88;
	--accent-color: #087CEB;
	--dark-color: #FB9F1B;
	--white-color: #FFFFFF;
	--divider-color: #ECE8EC;
	--dark-divider-color: #ECE8EC33;
	--error-color: rgb(230, 87, 87);
	--default-font: "Montserrat", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	background: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.6em;
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: var(--accent-color);
	border-radius: 12px;
	color: var(--white-color);
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 17px 46px 17px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
	color: var(--primary-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
	filter: brightness(0) invert(0);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--dark-color);
	border-radius: 12px;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default.btn-highlighted {
	background: var(--dark-color);
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default.btn-highlighted:before {
	background-image: url('../images/arrow-dark.svg');
}

.btn-default.btn-highlighted:hover:before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background: var(--accent-color);
}



.btn-default.btn-highlighted.zoom {
	background: var(--dark-color);
	color: var(--primary-color);
}

.btn-default.btn-highlighted.zoom:hover {
	background: var(--dark-color);
	color: var(--white-color);
	scale: 1.05;
}

.btn-default.btn-highlighted.zoom:before {
	background-image: url('../images/arrow-dark.svg');
}

.btn-default.btn-highlighted.zoom:hover:before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted.zoom::after {
	background: var(--dark-color);
}



.btn-default.btn-phone {
	padding: 17px 20px 17px 20px;
}

.btn-default.btn-phone:hover {
	color: var(--white-color);
}

.btn-default.btn-phone::before {
	display: none;
}

.btn-default.btn-phone::after {
	background: var(--primary-color);
}

.btn-default.btn-phone img {
	max-width: 18px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.btn-default.btn-phone:hover img {
	filter: brightness(0) invert(1);
}

.cb-cursor:before {
	background: var(--dark-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--dark-color) transparent var(--dark-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.bg-section {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	border-radius: 24px;
}

.section-row {
	margin-bottom: 60px;
}

.section-row .section-title {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	text-align: center;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--accent-color);
	background-color: var(--secondary-color);
	/* background-image: url('../images/icon-sub-heading.svg'); */
	/* background-repeat: no-repeat; */
	/* background-position: left 20px center; */
	/* background-size: 22px auto; */
	border-radius: 24px;
	padding: 9px 20px 9px 20px;
	margin-bottom: 15px;
}

.section-title.dark-section h3 {
	background-color: var(--white-color);
}

.section-title h1 {
	position: relative;
	font-size: 58px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	position: relative;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-size: 14px;
	font-weight: 500;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
	padding: 15px 0;
}

.topbar-contact-info ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
	gap: 20px;
}

.topbar-contact-info ul li a {
	font-weight: 500;
	color: var(--text-color);
	display: flex;
	align-items: center;
}

.topbar-contact-info ul li a i {
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 12px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover i {
	color: var(--dark-color);
}

.topbar-social-links {
	text-align: right;
}

.topbar-social-links ul {
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
}

.topbar-social-links ul li a {
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	color: var(--dark-color);
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: inherit;
}

header.main-header {
	position: relative;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

.main-header.bg-section {
	border-radius: 0;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 30px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 500;
	padding: 15px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--dark-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.header-btn {
	align-items: center;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../img/slider.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 180px;
	margin-top: -118px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 270px 0 180px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--dark-color);
}

.hero-content {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
}

.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-content .section-title p {
	font-size: 18px;
	color: var(--white-color);
	max-width: 570px;
	margin: 0 auto;
	margin-top: 20px;
}

.hero-content .hero-btn .btn-highlighted {
	margin-left: 20px;
}

/************************************/
/***       05. About Us Css       ***/
/************************************/

.about-us {
	/* background: url('../images/section-bg-image-1.svg');
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto; */
	padding: 100px 0;
}

.about-image {
	position: relative;
	margin-right: 30px;
}

.about-img figure {
	display: block;
	mask-image: url(../images/about-image-bg-shape.svg);
	background-image: url(../images/about-image-bg-shape.svg);
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.about-img img {
	width: 100%;
	aspect-ratio: 1 / 1.16;
	object-fit: cover;
}

.company-experience {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 230px;
	display: flex;
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 24px;
	padding: 20px 30px;
}

.company-experience .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	border-radius: 14px;
	margin-right: 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.company-experience:hover .icon-box {
	background-color: transparent;
}

.company-experience .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 14px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.company-experience:hover .icon-box::before {
	transform: scale(1);
}

.company-experience .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.company-experience:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.company-experience-content {
	width: calc(100% - 75px);
}

.company-experience-content h3 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
}

.about-us-content-list {
	margin-bottom: 40px;
}

.about-us-content-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 10px;
}

.about-us-content-list ul li {
	position: relative;
	width: calc(50% - 5px);
	padding-left: 30px;
}

.about-us-content-list ul li::before {
	content: '\f058';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 2px;
	left: 0;
}

/************************************/
/***     06. Our Services Css     ***/
/************************************/

.our-services {
	padding: 100px 0;
}

.our-services.bg-section {
	background-color: var(--secondary-color);
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	height: calc(100% - 30px);
	text-align: center;
	margin-bottom: 30px;
	border-radius: 24px;
	padding: 40px 25px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.service-item:hover {
	box-shadow: 0px 0px 10px 0px #2929291A;
}

.service-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/service-item-bg-star.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center center;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item:hover::before {
	filter: brightness(1) invert(0);
}

.service-item::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background-color: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	z-index: -1;
}

.service-item:hover::after {
	top: 0;
	border-radius: 0;
	opacity: 1;
}

.service-item .icon-box {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 50%;
	height: 100px;
	width: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item:hover .icon-box {
	background-color: var(--white-color);
}

.service-item .icon-box img {
	max-width: 40px;
}

.service-item-content {
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.service-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.service-item-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item:hover .service-item-content p {
	color: var(--white-color);
}

.service-item-btn {
	position: relative;
	z-index: 1;
}

.service-item-btn .btn-default {
	background-color: var(--secondary-color);
	color: var(--accent-color);
}

.service-item-btn .btn-default:hover {
	color: var(--primary-color);
}

.service-item:hover .service-item-btn .btn-default {
	background-color: var(--white-color);
}

.service-item-btn .btn-default::before {
	background-image: url(../images/arrow-accent.svg);
}

.service-box-footer {
	margin-top: 10px;
	text-align: center;
}

.service-box-footer p {
	color: var(--primary-color);
	margin-bottom: 30px;
}

.service-box-footer p a {
	font-weight: 700;
	text-decoration: underline;
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.service-box-footer p a:hover {
	color: var(--accent-color);
}

/************************************/
/***    07. Why Choose Us Css     ***/
/************************************/

.why-choose-us {
	background-image: url(../images/section-bg-image-2.svg);
	background-repeat: no-repeat;
	background-position: left top 100px;
	background-size: auto;
	padding: 100px 0;
}

.why-choose-image {
	position: relative;
	background-image: url(../images/why-choose-bg-star.svg);
	background-repeat: no-repeat;
	background-position: bottom left 40px;
	background-size: 44px auto;
	padding-right: 70px;
	padding-bottom: 25px;
}

.why-choose-img-1 {
	position: relative;
	padding-top: 30px;
}

.why-choose-img-1 figure {
	display: block;
	border-radius: 999px;
	overflow: hidden;
}

.why-choose-img-1 img {
	width: 100%;
	border-radius: 999px;
	aspect-ratio: 1 / 1.58;
	object-fit: cover;
}

.why-choose-img-2 {
	position: absolute;
	width: 100%;
	max-width: 195px;
	bottom: 0;
	right: 0;
	padding-top: 30px;
	z-index: 1;
}

.why-choose-img-2 figure {
	border-radius: 999px;
	display: block;
}

.why-choose-img-2 img {
	width: 100%;
	border-radius: 999px;
	aspect-ratio: 1 / 1.65;
	object-fit: cover;
}

.why-choose-img-1::before,
.why-choose-img-2::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	height: 100%;
	width: 100%;
	border-radius: 999px;
}

.why-choose-content {
	margin-left: 40px;
}

.why-choose-body {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 70px;
}

.why-choose-item {
	width: calc(50% - 35px);
}

.why-choose-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--secondary-color);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.why-choose-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--accent-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .icon-box:before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	max-width: 30px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-item-content p {
	margin-bottom: 0;
}

/************************************/
/***     08. How It Works Css     ***/
/************************************/

.how-it-works {
	background-color: var(--accent-color);
	padding: 100px 0;
}

.how-it-works .section-title.dark-section h2 {
	color: var(--white-color);
}

.how-work-step-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
}

.how-work-step-item {
	position: relative;
	width: calc(33.33% - 66.67px);
	text-align: center;
}

.how-work-step-item::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(80px, -50%);
	background-image: url(../images/how-work-step-arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 60px;
	width: 60px;
}

.how-work-step-item:nth-of-type(3n + 3):before,
.how-work-step-item:last-child:before {
	display: none;
}

.how-work-image {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.how-work-image figure {
	border-radius: 50%;
	overflow: hidden;
}

.how-work-image img {
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
}

.how-work-step-no {
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	width: 40px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.how-work-step-item:hover .how-work-step-no {
	background-color: var(--dark-color);
}

.how-work-step-no h3 {
	font-size: 16px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.how-work-step-item:hover .how-work-step-no h3 {
	color: var(--primary-color);
}

.how-work-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.how-work-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.how-work-footer {
	margin-top: 50px;
	text-align: center;
}

.how-work-footer p {
	color: var(--white-color);
	margin-bottom: 0;
}

.how-work-footer span {
	color: var(--primary-color);
	text-transform: capitalize;
	display: inline-block;
	background-color: var(--dark-color);
	border-radius: 24px;
	padding: 2px 20px;
	margin-right: 15px;
}

.how-work-footer a {
	color: var(--dark-color);
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.how-work-footer a:hover {
	color: var(--primary-color);
}

/************************************/
/***    09. Our Testimonial Css   ***/
/************************************/

.our-testimonial {

	background-position: right -80px bottom 100px;
	background-size: auto;
	padding: 100px 0;
}

.testimonial-slider {
	position: relative;
}

.testimonial-slider .swiper {
	position: static;
	margin: 0 80px;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	border-radius: 24px;
	padding: 70px 40px 40px;
	margin-top: 40px;
	text-align: center;
}

.testimonial-item .author-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.testimonial-item .author-image img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 20px;
	color: var(--dark-color);
	margin: 0 2px;
}

.testimonial-content p {
	font-size: 18px;
	margin-bottom: 20px;
}

.testimonial-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.testimonial-btn .testimonial-button-prev {
	left: 0;
}

.testimonial-btn .testimonial-button-next {
	right: 0;
}

.testimonial-btn .testimonial-button-prev,
.testimonial-btn .testimonial-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.testimonial-btn .testimonial-button-prev:hover,
.testimonial-btn .testimonial-button-next:hover {
	background-color: var(--dark-color);
}

.testimonial-btn .testimonial-button-prev::before,
.testimonial-btn .testimonial-button-next::before {
	font-family: 'FontAwesome';
	content: '\f053';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 16px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-next::before {
	transform: rotate(180deg);
}

/************************************/
/***      10. Our Pricing Css     ***/
/************************************/

.our-pricing {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.our-pricing-nav {
	text-align: center;
	margin-bottom: 60px;
}

.our-pricing-nav .nav-tabs {
	display: inline-flex;
	justify-content: center;
	padding: 14px;
	box-shadow: 0px 0px 10px 0px #2929291A;
	border-radius: 14px;
	border-bottom: none;
}

.our-pricing-nav .nav-tabs .nav-item {
	margin-right: 20px;
}

.our-pricing-nav .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.our-pricing-nav .nav-tabs .nav-item .nav-link {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	border-radius: 12px;
	transition: all 0.3s ease-in-out;
}

.our-pricing-nav .nav-tabs .nav-link:hover,
.our-pricing-nav .nav-tabs .nav-link.active {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.pricing-item {
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	background-color: var(--white-color);
	padding: 40px;
	margin-bottom: 30px;
	border-radius: 24px;
}

.pricing-item.highlighted-box {
	background-color: var(--accent-color);
}

.pricing-item-header {
	text-align: center;
	margin-bottom: 30px;
}

.pricing-item-header h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 30px;
}

.pricing-item.highlighted-box .pricing-item-header h3 {
	color: var(--white-color);
}

.pricing-item-header h2 {
	position: relative;
	font-size: 40px;
	border: 1px solid var(--divider-color);
	padding: 10px;
	border-radius: 24px;
	overflow: hidden;
}

.pricing-item.highlighted-box .pricing-item-header h2 {
	background-color: var(--dark-color);
	border-color: var(--dark-divider-color);
}

.pricing-item-header h2 sub {
	font-size: 16px;
	font-weight: 500;
	bottom: 0;
}

.pricing-item-body {
	margin-bottom: 30px;
}

.pricing-item-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pricing-item-body ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 30px;
}

.pricing-item.highlighted-box .pricing-item-body ul li {
	color: var(--white-color);
}

.pricing-item-body ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-body ul li::before {
	content: '\f058';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 3px;
	left: 0;
}

.pricing-item.highlighted-box .pricing-item-body ul li::before {
	color: var(--dark-color);
}

.pricing-btn .btn-default {
	display: block;
	text-align: center;
	padding: 22px;
}

.pricing-item.highlighted-box .pricing-btn .btn-default {
	color: var(--accent-color);
	background-color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-btn .btn-default:hover {
	color: var(--primary-color);
}

.pricing-btn .btn-default::before {
	display: none;
}

.pricing-benefit-list {
	margin-top: 10px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 60px;
	justify-content: center;
	align-items: center;
}

.pricing-benefit-list ul li {
	display: flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***       11. Our FAQs Css       ***/
/************************************/

.our-faqs {
	background-image: url(../images/section-bg-image-2.svg);
	background-repeat: no-repeat;
	background-position: left top 100px;
	background-size: auto;
	padding: 100px 0;
}

.our-faq-content {
	margin-right: 30px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	align-items: start;
	padding-right: 40px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 5px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	top: -3px;
	right: 0;
	width: 30px;
	height: 30px;
	background-color: var(--accent-color);
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	background-color: var(--dark-color);
	transform: rotate(90deg);
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding-right: 40px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--text-color);
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

.our-faqs-image figure {
	display: block;
	border-radius: 24px;
	overflow: hidden
}

.our-faqs-image img {
	border-radius: 24px;
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

/************************************/
/***       12. Cta Box Css        ***/
/************************************/

.cta-box-section {
	/* background: url(../images/section-bg-image-1.svg);
    background-repeat: no-repeat;
    background-position: right -80px bottom;
    background-size: auto; */
}

.cta-box {
	position: relative;
	background-color: var(--dark-color);
	border-radius: 24px;
	display: flex;
	align-items: center;
	padding: 80px 60px;
	margin-top: 150px;
}

.cta-box-content {
	width: 65%;
}

.cta-box-btn .btn-default::after {
	background: var(--white-color);
}

.cta-author-content {
	margin-top: 20px;
}

.cta-author-content p {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
}

.cta-author-content p img {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-right: 15px;
}

.cta-box-image {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35%;
}

.cta-box-image img {
	width: 100%;
	max-width: 85%;
	aspect-ratio: 1 / 1.51;
	object-fit: cover;
}

/************************************/
/***       13. Our Blog Css       ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 14px;
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 0px 40px 0px #0517290D;
	border-radius: 14px;
	overflow: hidden;
}

.post-featured-image {
	position: relative;
}

.post-featured-image a {
	display: block;
	cursor: none;
	border-radius: 14px 14px 0 0;
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
	border-radius: 14px 14px 0 0;
	transition: all 0.5s ease-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item .post-tags {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

.post-item .post-tags a {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3em;
	color: var(--white-color);
	background-color: var(--accent-color);
	border-radius: 14px;
	padding: 12px 15px;
	text-transform: capitalize;
	cursor: pointer;
	overflow: hidden;
}

.post-item-content {
	padding: 30px 40px;
}

.post-item-body {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.post-item-body h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.post-item-body h2 a {
	color: inherit;
}

.post-item-body p {
	margin-bottom: 0;
}

.post-item-btn .readmore-btn {
	position: relative;
	display: block;
	color: var(--text-color);
	padding-right: 50px;
	margin: 8px 0;
	transition: 0.3s ease-in-out;
}

.post-item-btn .readmore-btn:hover {
	color: var(--primary-color);
}

.post-item-btn .readmore-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 40px;
	height: 40px;
	background-image: url(../images/arrow-white.svg);
	background-color: var(--accent-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px auto;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.post-item-btn .readmore-btn:hover::after {
	background-color: var(--dark-color);
}

/************************************/
/***       14. Footer Css         ***/
/************************************/

.main-footer {
	padding: 80px 0 0;
	background-color: var(--primary-color);
}

.about-footer {
	width: 100%;
	max-width: 350px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 100%;
	max-width: 150px;
}

.about-footer-content {
	margin-bottom: 20px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 14px;
}

.footer-social-links ul li:last-child {
	margin: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--dark-color);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--primary-color);
}

.footer-social-links ul li a i {
	font-size: 16px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover i {
	color: var(--dark-color);
}

.footer-contact-item {
	display: flex;
	align-items: baseline;
	margin-bottom: 20px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	margin-right: 10px;
}

.footer-contact-item .icon-box img {
	max-width: 20px;
}

.footer-contact-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links h3 {
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover {
	color: var(--dark-color);
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
}

.footer-newsletter-box p {
	color: var(--white-color);
	margin-bottom: 15px;
}

.newsletter-form .form-group {
	display: flex;
	border-radius: 14px;
	overflow: hidden;
}

.newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-color);
	padding: 14px 0 14px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--text-color);
}

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--white-color);
	width: 15%;
	border: none;
	padding: 0;
}

.newsletter-form .form-group .newsletter-btn img {
	max-width: 16px;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover img {
	filter: brightness(0) invert(0);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	padding: 30px 0;
	margin-top: 60px;
}

.footer-copyright-text {
	text-align: center;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     15. About Us Page Css    ***/
/************************************/

.page-header {
	position: relative;
	background: url('../img/bg2.avif') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 260px 0 140px;
	margin-top: -118px;
	overflow: hidden;
}

.page-header:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 60%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	color: var(--white-color);
	font-size: 58px;
	margin-bottom: 10px;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--dark-color);
}

.page-about-us {
	position: relative;
}

.page-about-us::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/section-bg-image-2.svg') no-repeat left center;
	background-size: cover;
	z-index: -1;
}

.about-expert-counter {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.expert-counter-item {
	position: relative;
	width: calc(25% - 22.5px);
	text-align: center;
}

.expert-counter-item::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -15px;
	bottom: 0;
	left: auto;
	background: var(--secondary-color);
}

.expert-counter-item:nth-child(4n + 4):after {
	display: none;
}

.expert-counter-item-content h3 {
	color: var(--accent-color);
	font-size: 46px;
	margin-bottom: 5px;
}

.expert-counter-item-content h3 span {
	color: var(--primary-color);
}

.expert-counter-item-content p {
	text-transform: capitalize;
	font-weight: 700;
	margin: 0;
}

.vision-mission {
	background-color: var(--secondary-color);
	padding: 100px 0 70px;
}

.vision-mission-item {
	position: relative;
	background-color: var(--white-color);
	height: calc(100% - 30px);
	text-align: center;
	margin-bottom: 30px;
	border-radius: 24px;
	padding: 40px 30px;
	overflow: hidden;
	z-index: 1;
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/vision-mission-item-bg-star.svg');
	background-repeat: no-repeat;
	background-size: 80% auto;
	background-position: center center;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.vision-mission-item:hover::before {
	filter: brightness(1) invert(0);
}

.vision-mission-item::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background-color: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	z-index: -1;
}

.vision-mission-item:hover::after {
	top: 0;
	border-radius: 0;
	opacity: 1;
}

.vision-mission-item .icon-box {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 50%;
	height: 100px;
	width: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.vision-mission-item:hover .icon-box {
	background-color: var(--white-color);
}

.vision-mission-item .icon-box img {
	max-width: 40px;
}

.vision-mission-item-content {
	position: relative;
	z-index: 1;
}

.vision-mission-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .vision-mission-item-content h3,
.vision-mission-item:hover .vision-mission-item-content p {
	color: var(--white-color);
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	border-radius: 24px;
	margin-bottom: 30px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
	border-radius: 24px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	text-align: center;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul {
	background: var(--white-color);
	border-radius: 24px;
	list-style: none;
	line-height: normal;
	margin: 0;
	padding: 12px 10px;
}

.team-social-icon ul li {
	margin-bottom: 15px;
}

.team-social-icon ul li:last-child {
	margin-bottom: 0;
}

.team-social-icon ul li a {
	color: var(--accent-color);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--dark-color);
}

.team-social-icon ul li a i {
	font-size: 16px;
	color: inherit;
}

.team-content {
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-excellence {
	padding: 100px 0;
}

.our-excellence-content {
	margin-right: 30px;
}

.excellence-list-item {
	margin-bottom: 30px;
}

.excellence-list-item:last-child {
	margin-bottom: 0;
}

.excellence-list-item h3 {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.excellence-list-item h3::before {
	content: '\f058';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--dark-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 2px;
	left: 0;
}

.excellence-list-item p {
	margin: 0;
}

.excellence-image-video {
	position: relative;
}

.Excellence-image figure,
.Excellence-image a {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	cursor: none;
}

.Excellence-image img {
	width: 100%;
	aspect-ratio: 1 / 1.14;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	position: relative;
	background-color: var(--white-color);
	border-radius: 100%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--accent-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--accent-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 20px;
	color: var(--accent-color);
}

/************************************/
/***     16. Services Page Css    ***/
/************************************/

.page-services {
	position: relative;
	/* background: url('../images/section-bg-image-1.svg'); */
	background-repeat: no-repeat;
	background-position: right -80px bottom 180px;
	background-size: auto;
	padding: 100px 0 70px;
}

.page-services::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	/* background: url('../images/section-bg-image-2.svg') no-repeat left center; */
	background-size: cover;
	z-index: -1;
}

.page-services .service-item {
	border: 1px solid var(--divider-color);
}

.trusted-customer {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.trusted-customer-body {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	align-items: center;
	margin-bottom: 60px;
}

.trusted-customer-images {
	display: flex;
}

.trusted-customer-images .customer-image {
	display: inline-block;
	width: 60px;
	border: 1px solid var(--white-color);
	border-radius: 100px;
	margin-left: -25px;
	overflow: hidden;
	z-index: 1;
}

.trusted-customer-images .customer-image figure {
	display: block;
	height: 100%;
	width: 100%;
}

.trusted-customer-images .customer-image:first-child {
	margin: 0;
}

.trusted-customer-images .customer-image img {
	max-width: 60px;
	border-radius: 100px;
}

.customer-image.add-customer a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--dark-color);
	height: 60px;
	width: 60px;
	transition: all 0.3s ease-in-out;
}

.customer-image.add-customer a:hover {
	background-color: var(--accent-color);
}

.customer-image.add-customer a i {
	font-size: 30px;
	color: var(--primary-color);
}

.trusted-customer-info {
	max-width: 310px;
}

.trusted-customer-info h3 {
	font-size: 20px;
	font-weight: 600;
}

.trusted-customer .about-image {
	margin-right: 0;
	margin-left: 30px;
}

/************************************/
/***    17. Service Single Css    ***/
/************************************/

.page-service-single {
	position: relative;
	/* background: url('../images/section-bg-image-1.svg'); */
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto;
	padding: 100px 0;
}

.page-service-single::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	/* background: url('../images/section-bg-image-2.svg') no-repeat left center; */
	background-size: cover;
	z-index: -1;
}

.service-sidebar {
	position: sticky;
	top: 20px;
}

.service-catagery-list {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 40px 30px;
	margin-bottom: 50px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	background-color: var(--white-color);
	border-radius: 10px;
	color: var(--text-color);
	padding: 15px 60px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 30px;
	transform: translateY(-50%);
	background-color: var(--accent-color);
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	background-color: var(--dark-color);
}

.sidebar-cta-box {
	background-color: var(--accent-color);
	border-radius: 30px;
	text-align: center;
	padding: 50px 70px;
}

.cta-contact-content {
	margin-bottom: 40px;
}

.cta-contact-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 30px;
}

.cta-contact-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.cta-contact-btn .btn-default.btn-phone {
	background: var(--dark-color);
	color: var(--primary-color);
}

.cta-contact-btn .btn-default.btn-phone:hover {
	color: var(--white-color);
}

.service-single-content {
	margin-left: 30px;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
	border-radius: 30px;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry {
	margin-bottom: 40px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
	display: flex;
	gap: 20px 10px;
	flex-wrap: wrap;
}

.service-entry ul li {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--primary-color);
	width: calc(33.33% - 6.67px);
	padding-left: 30px;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin: 40px 0;
}

.service-list-image {
	width: calc(50% - 15px);
}

.service-list-image figure {
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.service-list-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.63;
	border-radius: 14px;
}

.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-list ul {
	margin-bottom: 0;
}

.service-entry-list ul li {
	width: 100%;
}

.service-entry-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-entry-img {
	width: calc(50% - 15px);
}

.service-entry-img figure {
	display: block;
	border-radius: 14px;
}

.service-entry-img img {
	width: 100%;
	aspect-ratio: 1 / 0.89;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***     18. Blog Archive Css     ***/
/************************************/

.page-blog {
	position: relative;
	/* background: url('../images/section-bg-image-1.svg'); */
	background-repeat: no-repeat;
	background-position: right -80px bottom 180px;
	background-size: auto;
	padding: 100px 0;
}

.page-blog::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	/* background: url('../images/section-bg-image-2.svg') no-repeat left center; */
	background-size: cover;
	z-index: -1;
}

.page-pagination {
	margin-top: 10px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***  	  19. Blog Single Css     ***/
/************************************/

.page-single-post {
	position: relative;
	background: url('../images/section-bg-image-1.svg');
	background-repeat: no-repeat;
	background-position: right -80px bottom 180px;
	background-size: auto;
	padding: 100px 0 70px;
}

.page-single-post::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	background: url('../images/section-bg-image-2.svg') no-repeat left center;
	background-size: cover;
	z-index: -1;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 24px;
	overflow: hidden;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	border-radius: 24px;
	object-fit: cover;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 58px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url(../images/icon-blockquote.svg), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 24px;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 6px;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--dark-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 6px;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--dark-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***   	 20. Projects Page Css    ***/
/************************************/

.page-projects {
	position: relative;
	background: url(../images/section-bg-image-1.svg);
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto;
	padding: 100px 0 70px;
}

.page-projects::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	background: url(../images/section-bg-image-2.svg) no-repeat left center;
	background-size: cover;
	z-index: -1;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:before {
	content: '/';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -35px;
}

.our-Project-nav ul li:last-child a:before {
	display: none;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover {
	color: var(--accent-color);
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-item a {
	display: block;
	border-radius: 14px;
	cursor: none;
	overflow: hidden;
}

.project-item a figure::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(5, 23, 41, 0) 0%, #051729 100%);
	border-radius: 14px;
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.project-item:hover a figure::before {
	top: 0;
	bottom: 0;
}

.project-item img {
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover figure img {
	transform: scale(1.1);
}

.project-content {
	position: absolute;
	bottom: 0;
	left: 40px;
	right: 40px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-content {
	bottom: 30px;
	opacity: 1;
}

.project-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.project-content h3:hover {
	color: var(--dark-color);
}

.project-content h3 a {
	color: inherit;
	cursor: pointer;
}

/************************************/
/***    21. Project Single Css    ***/
/************************************/

.page-project-single {
	position: relative;
	background: url(../images/section-bg-image-1.svg);
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto;
	padding: 100px 0;
}

.page-project-single::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	background: url(../images/section-bg-image-2.svg) no-repeat left center;
	background-size: cover;
	z-index: -1;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
}

.project-detail-box {
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 40px;
	overflow: hidden;
}

.project-detail-title {
	margin-bottom: 30px;
}

.project-detail-title h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
}

.project-detail-item {
	background-color: var(--white-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	padding: 15px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item:hover {
	background-color: var(--accent-color);
}

.project-detail-item .icon-box {
	background-color: var(--dark-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box {
	background-color: var(--primary-color);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 60px);
}

.project-detail-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .project-detail-content h3 {
	color: var(--white-color);
}

.project-detail-content p {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .project-detail-content p {
	color: var(--white-color);
}

.project-single-content {
	margin-left: 20px;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.project-single-image img {
	width: 100%;
	border-radius: 14px;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
}

.project-info,
.peoject-overview {
	margin-bottom: 40px;
}

.project-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	padding: 0;
	margin-bottom: 20px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.project-entry ul li {
	position: relative;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--primary-color);
	width: 100%;
	padding-left: 30px;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.project-gallery-img {
	width: calc(25% - 11.25px);
}

.project-gallery-img figure {
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***     22. Image Gallery Css    ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
	position: relative;
	background: url(../images/section-bg-image-1.svg);
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto;
}

.page-gallery::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	background: url(../images/section-bg-image-2.svg) no-repeat left center;
	background-size: cover;
	z-index: -1;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	border-radius: 14px;
}

.page-gallery-box .photo-gallery img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***   	   23. FAQs Page Css      ***/
/************************************/

.page-faqs {
	position: relative;
	background: url(../images/section-bg-image-1.svg);
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto;
	padding: 100px 0;
}

.page-faqs::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	background: url(../images/section-bg-image-2.svg) no-repeat left center;
	background-size: cover;
	z-index: -1;
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 80px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page Css    ***/
/************************************/

.page-contact-us {
	position: relative;

	padding: 100px 0;
}

.page-contact-us::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	/* background: url(../images/section-bg-image-2.svg) no-repeat left center; */
	background-size: cover;
	z-index: -1;
}

.contact-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--secondary-color);
	margin-bottom: 100px;
	padding-bottom: 100px;
}

.contact-info-item {
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
}

.contact-info-item .icon-box {
	position: relative;
	height: 80px;
	width: 80px;
	background-color: var(--accent-color);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box {
	background-color: transparent;
}

.contact-info-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	max-width: 40px;
	z-index: 1;
}

.contact-info-content {
	width: calc(100% - 100px);
}

.contact-info-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
}

.contact-map-form .section-title {
	max-width: 100%;
	text-align: left;
}

.contact-map-form .section-btn {
	text-align: right;
}

.contact-map-form .section-btn .btn-default.btn-phone:hover img {
	filter: initial;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 650px;
	border-radius: 40px;
}

.contact-form-content {
	margin-left: 30px;
}

.contact-form-content h3 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 40px;
}

.contact-form-content form .form-control {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: var(--secondary-color);
	border: none;
	border-radius: 10px;
	padding: 16px;
	outline: none;
	box-shadow: none;
}

.contact-form-content form .form-control::placeholder {
	color: var(--text-color);
}

.contact-form-content form .btn-default {
	width: 100%;
	padding: 17px;
	text-align: center;
}

.contact-form-content form .btn-default::before {
	display: none;
}

/************************************/
/***  	   25. 404 Page Css       ***/
/************************************/

.error-page {
	position: relative;
	/* background: url(../images/section-bg-image-1.svg); */
	background-repeat: no-repeat;
	background-position: right -80px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page::after {
	content: '';
	position: absolute;
	width: 177px;
	height: 425px;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-100%);
	/* background: url(../images/section-bg-image-2.svg) no-repeat left center; */
	background-size: cover;
	z-index: -1;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	margin-bottom: 20px;
}

/************************************/
/***       26. Responsive Css     ***/
/************************************/

@media only screen and (max-width: 1800px) {

	.bg-section {
		width: calc(100% - 100px);
		margin-left: 50px;
		margin-right: 50px;
		max-width: 100%;
	}
}

@media only screen and (max-width: 1560px) {

	.bg-section {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px) {

	#magic-cursor {
		display: none !important;
	}

	.topbar-social-links ul li {
		margin-right: 10px;
	}

	.navbar {
		padding: 20px 0px;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		max-width: 100%;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		font-size: 12px;
		background-position: left 15px center;
		padding: 6px 15px 6px 45px;
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 46px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		padding: 180px 0 90px;
		margin-top: -91px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 180px 0 90px;
	}

	.hero.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-content .section-title p {
		font-size: 16px;
		max-width: 100%;
		margin-top: 15px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-image {
		width: 100%;
		max-width: 80%;
		margin: 0 auto 30px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item {
		padding: 30px 20px;
	}

	.service-item::before {
		top: 10px;
		height: 95%;
		background-size: contain;
	}

	.service-item .icon-box {
		height: 80px;
		width: 80px;
		margin-bottom: 20px;
	}

	.service-item .icon-box img {
		max-width: 35px;
	}

	.service-box-footer p {
		margin-bottom: 20px;
	}

	.why-choose-us {
		background-position: left top 50px;
		padding: 50px 0;
	}

	.why-choose-image {
		max-width: 70%;
		margin: 0 auto 30px;
	}

	.why-choose-img-1 img {
		aspect-ratio: 1 / 1.48;
	}

	.why-choose-img-2 img {
		aspect-ratio: 1 / 1.5;
	}

	.why-choose-content {
		margin-left: 0;
	}

	.why-choose-body {
		gap: 30px;
	}

	.why-choose-item {
		width: calc(50% - 15px);
	}

	.why-choose-item .icon-box {
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.why-choose-item .icon-box img {
		max-width: 26px;
	}

	.how-it-works {
		padding: 50px 0;
	}

	.how-work-step-box {
		gap: 30px 60px;
	}

	.how-work-step-item {
		width: calc(33.33% - 40px);
	}

	.how-work-step-item::before {
		transform: translate(45px, -50%);
		height: 30px;
		width: 30px;
	}

	.how-work-image img {
		max-width: 110px;
	}

	.how-work-step-no {
		height: 30px;
		width: 30px;
	}

	.how-work-step-no h3 {
		font-size: 14px;
	}

	.how-work-content h3 {
		font-size: 18px;
	}

	.how-work-footer {
		margin-top: 30px;
	}

	.how-work-footer span {
		line-height: 1.2em;
		padding: 2px 10px;
		margin-right: 5px;
	}

	.our-testimonial {
		background-position: right -80px bottom 50px;
		padding: 50px 0;
	}

	.testimonial-slider .swiper {
		margin: 0 40px;
	}

	.testimonial-item .author-image img {
		width: 60px;
		height: 60px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-item {
		padding: 50px 20px 30px;
		margin-top: 30px;
	}

	.testimonial-rating i {
		font-size: 18px;
		margin: 0;
	}

	.testimonial-content p {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.testimonial-btn .testimonial-button-prev,
	.testimonial-btn .testimonial-button-next {
		width: 30px;
		height: 30px;
	}

	.testimonial-btn .testimonial-button-prev::before,
	.testimonial-btn .testimonial-button-next::before {
		font-size: 12px;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.our-pricing-nav {
		margin-bottom: 40px;
	}

	.pricing-item {
		padding: 30px;
	}

	.our-pricing-nav .nav-tabs {
		padding: 10px;
	}

	.our-pricing-nav .nav-tabs .nav-item {
		margin-right: 10px;
	}

	.pricing-item-header {
		margin-bottom: 20px;
	}

	.pricing-item-header h3 {
		margin-bottom: 20px;
	}

	.pricing-item-header h2 {
		font-size: 34px;
	}

	.pricing-item-body {
		margin-bottom: 20px;
	}

	.pricing-item-body ul li::before {
		font-size: 18px;
	}

	.pricing-item .pricing-btn .btn-default {
		padding: 18px;
	}

	.pricing-benefit-list ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list ul li img {
		max-width: 18px;
		margin-right: 5px;
	}

	.our-faqs {
		background-position: left top 50px;
		padding: 50px 0;
	}

	.our-faq-content {
		margin-bottom: 30px;
		margin-right: 0;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding-right: 35px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 0;
		width: 24px;
		height: 24px;
		background-size: 12px auto;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 35px;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 0.85;
		object-position: top center;
	}

	.cta-box-section {
		background-size: contain;
	}

	.cta-box {
		padding: 40px 30px;
		margin-top: 30px;
	}

	.cta-box-content {
		width: 70%;
	}

	.cta-box-content .section-title {
		margin-bottom: 20px;
	}

	.cta-box-content .section-title h2 {
		font-size: 32px;
	}

	.cta-author-content {
		margin-top: 10px;
	}

	.cta-box-image {
		width: 30%;
	}

	.cta-box-image img {
		max-width: 90%;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-item .post-tags a {
		padding: 10px 12px;
	}

	.post-item-content {
		padding: 20px 15px;
	}

	.post-item-btn .readmore-btn {
		padding-right: 40px;
	}

	.post-item-btn .readmore-btn::after {
		width: 30px;
		height: 30px;
		background-size: 16px auto;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.about-footer {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		font-size: 20px;
	}

	.newsletter-form .form-group .form-control {
		padding: 12px 0 12px 15px;
	}

	.footer-copyright {
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header {
		padding: 170px 0 80px;
		margin-top: -91px;
	}

	.page-header-box h1 {
		font-size: 46px;
	}

	.about-expert-counter {
		margin-top: 50px;
		gap: 30px 20px;
	}

	.expert-counter-item {
		width: calc(25% - 15px);
	}

	.expert-counter-item::after {
		right: -10px;
	}

	.expert-counter-item-content h3 {
		font-size: 36px;
	}

	.expert-counter-item-content p {
		font-size: 14px;
	}

	.vision-mission {
		padding: 50px 0 20px;
	}

	.vision-mission-item {
		padding: 30px 20px;
	}

	.vision-mission-item::before {
		background-size: 80% auto;
	}

	.vision-mission-item .icon-box {
		height: 80px;
		width: 80px;
		margin-bottom: 20px;
	}

	.vision-mission-item .icon-box img {
		max-width: 35px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-image {
		margin-bottom: 20px;
	}

	.team-content h3 {
		margin-bottom: 5px;
	}

	.our-excellence {
		padding: 50px 0;
	}

	.our-excellence-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.excellence-list-item {
		margin-bottom: 20px;
	}

	.Excellence-image img {
		aspect-ratio: 1 / 0.8;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.trusted-customer {
		padding: 50px 0;
	}

	.trusted-customer-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.trusted-customer-body {
		margin-bottom: 30px;
	}

	.trusted-customer .about-image {
		margin: 0 auto;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.service-catagery-list {
		padding: 30px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		margin-bottom: 20px;
	}

	.service-catagery-list ul li {
		margin-bottom: 20px;
	}

	.service-catagery-list ul li a {
		padding: 10px 45px 10px 15px;
	}

	.service-catagery-list ul li a::before {
		right: 15px;
		width: 24px;
		height: 24px;
		background-size: 12px auto;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.cta-contact-content {
		margin-bottom: 30px;
	}

	.cta-contact-content h3 {
		margin-bottom: 20px;
	}

	.service-single-content {
		margin-left: 0;
	}

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.52;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry h2 {
		font-size: 36px;
	}

	.service-entry ul {
		gap: 15px 10px;
	}

	.service-entry ul li {
		font-size: 14px;
		padding-left: 25px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.service-entry-list-image {
		margin: 30px 0;
	}

	.service-list-image img {
		aspect-ratio: 1 / 0.59;
	}

	.service-entry-list ul li {
		width: 100%;
	}

	.service-entry-images {
		margin-top: 30px;
	}

	.service-entry-img img {
		aspect-ratio: 1 / 0.78;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.tag-links {
		font-size: 22px;
	}

	.post-tags .tag-links a {
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-projects {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 40px;
	}

	.our-Project-nav ul {
		gap: 10px 30px;
	}

	.our-Project-nav ul li a {
		font-size: 14px;
	}

	.our-Project-nav ul li a:before {
		right: -20px;
	}

	.project-item img {
		aspect-ratio: 1 / 0.75;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.project-detail-box {
		padding: 30px;
	}

	.project-detail-title {
		margin-bottom: 20px;
	}

	.project-detail-item {
		padding: 10px 15px;
		margin-bottom: 15px;
	}

	.project-single-content {
		margin-left: 0;
	}

	.project-single-image {
		margin-bottom: 30px;
	}

	.project-info,
	.peoject-overview {
		margin-bottom: 30px;
	}

	.project-entry h2 {
		font-size: 36px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-info-box {
		gap: 20px;
		margin-bottom: 50px;
		padding-bottom: 50px;
	}

	.contact-info-item {
		display: block;
		width: calc(33.33% - 13.33px);
		text-align: center;
	}

	.contact-info-item .icon-box {
		height: 60px;
		width: 60px;
		margin: 0 auto 15px;
	}

	.contact-info-item .icon-box img {
		max-width: 30px;
	}

	.contact-info-content {
		width: 100%;
	}

	.contact-info-content p {
		font-size: 14px;
	}

	.google-map-iframe {
		margin-bottom: 30px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 500px;
		border-radius: 24px;
	}

	.contact-form-content {
		margin-left: 0;
	}

	.contact-form-content h3 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.contact-form-content form .form-control {
		padding: 10px 12px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.btn-default {
		padding: 15px 46px 15px 20px;
	}

	.btn-default.btn-phone {
		padding: 15px;
	}

	.topbar {
		padding: 10px 0;
	}

	.topbar-contact-info ul {
		justify-content: space-around;
		gap: 0;
	}

	.topbar-contact-info ul li a {
		font-size: 12px;
	}

	.topbar-contact-info ul li a i {
		font-size: 14px;
		margin-right: 8px;
	}

	.topbar-social-links {
		display: none;
	}

	.section-title {
		margin-bottom: 20px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .hero-btn .btn-default {
		margin-right: 20px;
	}

	.hero-content .hero-btn .btn-highlighted {
		margin-top: 10px;
		margin-left: 0;
	}

	.about-us {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.about-image {
		max-width: 100%;
	}

	.company-experience {
		max-width: 145px;
		border-radius: 14px;
		padding: 14px 10px;
	}

	.company-experience .icon-box {
		width: 35px;
		height: 35px;
		border-radius: 10px;
		margin-right: 10px;
	}

	.company-experience .icon-box img {
		max-width: 18px;
	}

	.company-experience-content {
		width: calc(100% - 45px);
	}

	.company-experience-content h3 {
		font-size: 14px;
	}

	.about-us-content-list ul {
		gap: 10px;
	}

	.about-us-content-list {
		margin-bottom: 20px;
	}

	.about-us-content-list ul li {
		width: 100%;
	}

	.about-us-content-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.service-item {
		padding: 20px;
	}

	.service-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.why-choose-us {
		background-size: 50% auto;
	}

	.why-choose-image {
		max-width: 100%;
	}

	.why-choose-img-1 {
		padding-top: 20px;
	}

	.why-choose-img-2 {
		max-width: 150px;
		padding-top: 20px;
	}

	.why-choose-item {
		width: 100%;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.how-work-step-item {
		width: 100%;
	}

	.how-work-step-item::before {
		display: none;
	}

	.how-work-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.testimonial-slider .swiper {
		margin: 0 30px;
	}

	.testimonial-item {
		padding: 40px 15px 20px;
		margin-top: 30px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content p {
		margin-bottom: 10px;
	}

	.testimonial-btn .testimonial-button-prev,
	.testimonial-btn .testimonial-button-next {
		width: 25px;
		height: 25px;
	}

	.our-pricing-nav {
		margin-bottom: 30px;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-item-header h3 {
		font-size: 18px;
	}

	.pricing-item-header h2 {
		font-size: 28px;
		padding: 8px;
		border-radius: 14px;
	}

	.pricing-item-body ul li {
		padding-left: 30px;
	}

	.pricing-item-body ul li::before {
		font-size: 18px;
	}

	.pricing-item .pricing-btn .btn-default {
		padding: 16px;
	}

	.pricing-benefit-list ul {
		gap: 5px 15px;
	}

	.pricing-benefit-list ul li {
		font-size: 12px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 0;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 0.99;
		object-position: center center;
	}

	.cta-box {
		display: block;
		padding: 30px 20px 0 20px;
		margin-top: 0px;
	}

	.cta-box-content {
		width: 100%;
		margin-bottom: 20px;
	}

	.cta-box-content .section-title h2 {
		font-size: 24px;
	}

	.cta-box-image {
		position: relative;
		width: 100%;
		text-align: center;
	}

	.cta-box-image img {
		max-width: 60%;
	}

	.post-item-body h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.about-footer-content,
	.footer-logo {
		margin-bottom: 15px;
	}

	.footer-contact-item {
		margin-bottom: 15px;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 14px;
	}

	.page-about-us::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.expert-counter-item {
		width: calc(50% - 10px);
	}

	.expert-counter-item:nth-child(2n + 2):after {
		display: none;
	}

	.expert-counter-item-content h3 {
		font-size: 26px;
	}

	.vision-mission-item {
		padding: 20px;
	}

	.vision-mission-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.excellence-list-item h3 {
		font-size: 18px;
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.excellence-list-item h3::before {
		font-size: 18px;
	}

	.Excellence-image img {
		aspect-ratio: 1 / 0.99;
	}

	.page-services {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-services::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.trusted-customer-images {
		width: 100%;
	}

	.trusted-customer-info {
		max-width: 100%;
	}

	.trusted-customer-info h3 {
		font-size: 18px;
		font-weight: 600;
	}

	.trusted-customer-image .company-experience .company-experience-content h3 {
		font-size: 12px;
	}

	.page-service-single {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-service-single::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.service-catagery-list {
		padding: 20px;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.75;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul {
		gap: 10px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-entry-list-image {
		gap: 20px;
		margin: 20px 0;
	}

	.service-list-image,
	.service-entry-list {
		width: 100%;
	}

	.service-entry-images {
		gap: 20px;
		margin-top: 20px;
	}

	.service-entry-img {
		width: 100%;
	}

	.page-blog {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-blog::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.page-single-post {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-single-post::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.80;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 65px 15px 15px 15px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 20px;
	}

	.page-projects {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-projects::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.page-project-single {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-project-single::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.project-detail-box {
		padding: 20px;
	}

	.project-detail-title h3 {
		font-size: 18px;
	}

	.project-detail-content h3 {
		font-size: 18px;
	}

	.project-single-image {
		margin-bottom: 20px;
	}

	.project-info,
	.peoject-overview {
		margin-bottom: 20px;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-entry ul {
		gap: 10px;
	}

	.project-entry ul li {
		font-size: 14px;
	}

	.project-entry ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.project-gallery-img {
		width: calc(50% - 7.5px);
	}

	.page-gallery {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-gallery::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.page-faqs {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-faqs::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.page-contact-us {
		background-position: right -45px center;
		background-size: 50% auto;
	}

	.page-contact-us::after {
		top: auto;
		bottom: 0;
		width: 110px;
		height: 265px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.contact-map-form .section-btn {
		text-align: left;
		margin-top: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-form-content h3 {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.error-page {
		background-position: right -45px bottom 20px;
		background-size: 50% auto;
	}

	.error-page::after {
		top: auto;
		bottom: 0;
		transform: translateY(-50%);
		width: 110px;
		height: 265px;
	}
}