/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Agrigo - Agriculture & Organic Farm 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. Our Feature css
09. Our Projects css 
10. How It Work css 
11. Our Pricing css 
12. Our Benefits css 
13. What We Do css
14. Our FAQs css 
15. Our Testimonials css 
16. Our Blog css
17. Footer css 
18. About Us Page css 
19. Services Page css 
20. Service Single css 
21. Blog Archive css 
22. Blog Single css 
23. Projects Page css 
24. Project Single css 
25. Team Page css 
26. Team Single css 
27. Pricing Page css 
28. Testimonials Page css 
29. Image Gallery css 
30. Video Gallery css 
31. FAQs Page css 
32. Contact Us Page css 
33. 404 Error Page css 
34. Responsive css 
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #022B23;
	--secondary-color			: #FFFFFF1A;
	--text-color				: #797979;
	--accent-color				: #C3F53E;
	--white-color				: #FFFFFF;
	--divider-color				: #132A131A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Anek Bangla", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--white-color);
}

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	line-height: 1.1em;
	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;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--primary-color);
	border: none;
	border-radius: 100px;
	padding: 17px 55px 17px 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background: transparent;
	color: var(--white-color);
}

.btn-default::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
	background-color: var(--primary-color);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 26px auto;
	border-radius: 50%;
    transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--accent-color);
}

.btn-default::after{ 
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

.btn-default.btn-highlighted{
	background: var(--white-color);
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before{
	background-color: var(--primary-color);
}

.btn-default.btn-highlighted::after{
	background-color: var(--accent-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	/* padding: 5px 40px 5px 0; */
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--accent-color);
}

.readmore-btn:after{
	content: '';
    position: absolute;
	right: 0;
	top: 0;
	transform: translateX(-2px);
	background-color: var(--accent-color);
    background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center top 4px;
	background-size: 16px auto;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after{
	transform: translateX(0);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-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(--white-color) transparent var(--white-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: 1880px;
	margin: 0 auto;
	border-radius: 30px;
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

.section-title-content p:last-child{
	margin-bottom: 0;	
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	position: relative;
	font-size: 14px;
    font-weight: 600;
	line-height: 1.3em;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	display: inline-block;
	padding-left: 20px;
    margin-bottom: 10px;
}

.section-title h3::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.section-title h1{
	font-size: 80px;
	text-transform: uppercase;
    line-height: 1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 50px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section{
	background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
    left: 0;
    right: 0;
    top: 0;	
    background: transparent;
	z-index: 100;
}

header.main-header .container-fluid{
	padding: 0;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
    border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

.main-header.bg-section{
	border-radius: 0;
}

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);
	border-radius: 0 0 20px 20px;
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: left;
	margin: 0 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: 18px;
	font-weight: 500;
	line-height: 1em;
	padding: 15px 20px !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: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,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(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--white-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-box{
	display: flex;
	align-items: center;
	gap: 40px;
}

.header-contact-item{
	display: flex;
	align-items: center;
}

.header-contact-item .icon-box{
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.header-contact-item:hover .icon-box{
	background: var(--white-color);
}

.header-contact-item .icon-box img{
	max-width: 25px;
}

.header-contact-item-content p{
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 5px;
	color: var(--white-color);
	opacity: 80%;
}

.header-contact-item-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.header-contact-item-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.header-contact-item-content h3 a:hover{
	color: var(--accent-color);
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.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: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-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);
	background-color: var(--primary-color);
}

.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);
	background-color: var(--primary-color);
}

.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: 8px 20px;
	color: var(--primary-color);
	line-height: 1em;
	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(--white-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 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(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--white-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
    margin-top: 20px;
	padding: 290px 0 40px;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	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::after,
.hero.hero-slider-layout::before{
	display: none;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 290px 0 40px;
	z-index: 2;
}

.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: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	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(--dark-divider-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(--accent-color);
}

.hero-section{
	position: relative;
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	z-index: 2;
}

.hero-section .container-fluid{
	padding: 0;
}

.hero-content{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}

.hero-content .section-title h1{
	font-size: 140px;
	font-weight: 700;
	line-height: 0.8em;
}

.hero-content .section-title h1 span{
	font-size: 80px;
	font-weight: 700;
	line-height: 1em;
}

.hero-content-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 30px;
}

.hero-content-list ul li{
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 30px;
}

.hero-content-list ul li::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.hero-btn{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 40px;
	margin-top: 80px;
}

.hero-counter-item-box{
	position: relative;
	margin-top: 150px;
	z-index: 2;
}

.hero-benefit-box{
	background: var(--dark-divider-color);
	backdrop-filter: blur(60px);
	-webkit-backdrop-filter: blur(60px);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	height: 100%;
}

.hero-benefit-item,
.hero-benefit-image{
	width: 50%;
}

.hero-benefit-image figure{
	display: block;
	height: 100%;
	border-radius: 30px;
}

.hero-benefit-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.923;
	object-fit: cover;
	border-radius: 30px;
}

.hero-benefit-item{
	align-content: center;
	padding: 2.083vw 1.823vw;
}

.hero-benefit-item .icon-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.hero-benefit-item .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.hero-benefit-box:hover .hero-benefit-item .icon-box::before{
    transform: scale(1);
}

.hero-benefit-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.hero-benefit-item-content h3{
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.hero-benefit-item-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-counter-box{
	height: 100%;
	background: var(--accent-color);
	border-radius: 30px;
	align-content: center;
	padding: 2.604vw 2.083vw;
}

.hero-counter-item{
	text-align: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.hero-counter-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.hero-counter-item h2{
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 5px;
}

.hero-counter-item p{
	color: var(--primary-color);
	opacity: 80%;
	margin: 0;
}

/************************************/
/***        05. About Us css      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	display: flex;
	justify-content: center;
	margin-right: 20px;
}

.about-us-img-1{
	width: 100%;
	max-width: 290px;
	transform: rotate(-6.64deg);
}

.about-us-img-2{
	width: 100%;
	max-width: 330px;
	margin-top: 70px;
	margin-left: -90px;
	transform: rotate(13.54deg);
}

.about-us-img-2 figure,
.about-us-img-1 figure{
	display: block;
	border-radius: 999px;
}

.about-us-img-2 figure{
	border: 6px solid var(--white-color);
}

.about-us-img-2 img,
.about-us-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 1.72;
	object-fit: cover;
	border-radius: 999px;
}

.experience-circle{
	position: absolute;
	bottom: 40px;
	left: 70px;
}

.experience-circle img{
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-body-item{
	position: relative;
	width: calc(50% - 15px);
	background: var(--primary-color);
	border-radius: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px 20px;
	overflow: hidden;
}

.about-us-body-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-body-item:hover:before{
	height: 100%;
}

.about-us-body-item img{
	position: relative;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.about-us-body-item:hover img{
	filter: brightness(0) invert(0);
}

.about-us-body-item h3{
	position: relative;
	font-size: 22px;
	line-height: 1.2em;
	text-transform: capitalize;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.about-us-body-item:hover h3{
	color: var(--primary-color);
}

.about-us-body-content{
	width: 100%;
}

.about-us-body-content p{
	margin: 0;
}

.about-us-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}

.about-contact-box{
	display: inline-flex;
	align-items: center;
	text-align: left;
}

.about-contact-box .icon-box{
	position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-contact-box .icon-box img{
	max-width: 25px;
}

.about-contact-box-content p{
	margin-bottom: 5px;
}

.about-contact-box-content h3{
    font-size: 22px;
}

.about-contact-box-content h3 a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3 a:hover{
	color: var(--accent-color);
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services{
	background-image: url('../images/service-bg.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 100px 0;
}

.service-item{
	position: relative;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 35px;
	overflow: hidden;
}

.service-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active:before,
.service-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.service-item::after{
	content: '';
	position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	background: url('../images/service-item-bg-shape.svg') no-repeat;
	background-position: top right;
	background-size: cover;
	width: 125px;
	height: 122px;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.service-item.active:after,
.service-item:hover:after{
	filter: brightness(0) invert(0);
}

.service-content{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.service-content h3{
	font-size: 22px;
	margin-bottom: 10px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	color: var(--white-color);
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-content p,
.service-item.active .service-content h3,
.service-item:hover .service-content p,
.service-item:hover .service-content h3{
	color: var(--primary-color);
}

.service-image{
	position: relative;
}

.service-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.service-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.751;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.service-image:hover figure img{
	transform: scale(1.1)
}

.service-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-item.active .service-btn,
.service-item:hover .service-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.service-btn a{
	background: var(--accent-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.service-btn:hover a{
	background: var(--white-color);
}

.service-btn a img{
	max-width: 32px;
}

.section-footer-text{
	margin-top: 10px;
	text-align: center;
}

.section-footer-text p{
	margin: 0;
}

.dark-section .section-footer-text p{
	color: var(--white-color);
}

.section-footer-text p span{
	display: inline-block;
	line-height: 1.1em;
	color: var(--primary-color);
	background: var(--accent-color);
	border-radius: 30px;
	padding: 4px 12px;
	margin-right: 10px;
}

.section-footer-text p a{
	color: var(--accent-color);
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--accent-color);
}

.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

/************************************/
/***     07. Why Choose Us css    ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-image{
	width: 100%;
}

.why-choose-image figure{
	display: block;
	border-radius: 30px;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.846;
	object-fit: cover;
	border-radius: 30px;
}

.why-choose-box-circle,
.why-choose-image-content,
.why-choose-content{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.why-choose-image-content .why-choose-image,
.why-choose-content-box{
	width: calc(50% - 15px);
}

.why-choose-quality-disc{
	margin-bottom: 40px;
}

.why-choose-quality-disc p{
	margin: 0;
}

.why-choose-box-circle .experience-circle,
.quality-box{
	position: initial;
	width: calc(50% - 15px);
}

.quality-box{
	background: var(--primary-color);
	border-radius: 20px;
	padding: 20px;
}

.quality-box img{
	max-width: 40px;
	margin-bottom: 20px;
}

.quality-box p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.why-choose-box-circle .experience-circle{
	text-align: center;
}

.why-choose-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.why-choose-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.why-choose-item-header{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.why-choose-item-header .icon-box{
	position: relative;
	background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.why-choose-item-header .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .why-choose-item-header .icon-box::before{
    transform: scale(1);
}

.why-choose-item-header .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .why-choose-item-header .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-title h3{
	font-size: 22px;
	text-transform: capitalize;
}

.why-choose-item-content{
	width: calc(50% - 15px);
}

.why-choose-item-content p{
	margin: 0;
}

/************************************/
/***     08. Our Feature css      ***/
/************************************/

.our-feature .container-fluid{
    padding: 0;
}

.feature-content{
    padding: 5.208vw;
}

.feature-item-list{
    display: flex;
    gap: 30px 60px;
    flex-wrap: wrap;
}

.feature-item{
    position: relative;
    width: calc(33.33% - 40px);
}

.feature-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background-color: var(--dark-divider-color);
    height: 100%;
    width: 1px;
}

.feature-item:nth-child(3n + 3):before,
.feature-item:last-child:before{
	display: none;
}

.feature-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-item .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.feature-item:hover .icon-box::before{
    transform: scale(1);
}

.feature-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.feature-item-content h3{
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.feature-item-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.faeture-image-content{
    display: flex;
    align-items: center;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding-top: 60px;
}

.faeture-circle-image{
    margin-right: 40px;
}

.faeture-circle-image img{
    max-width: 180px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.faeture-image-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.feature-video-box{
    position: relative;
    background: url('../images/feature-bg-img.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    align-content: end;
    padding: 4.167vw;
}

.feature-video-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(2, 43, 35, 0.3), rgba(2, 43, 35, 0.3)), linear-gradient(180deg, rgba(19, 42, 19, 0) 0.16%, rgba(19, 42, 19, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-play-button,
.feature-list{
    position: relative;
    z-index: 1;
}

.video-play-button{
    top: -50%;
    transform: translateY(50%);
    text-align: center;
}

.video-play-button a{
    position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button i{
	font-size: 30px;
	margin-left: 3px;
	color: var(--primary-color);
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	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: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	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 h3{
    font-size: 22px;
    color: var(--white-color);
    text-transform: capitalize;
	margin-top: 30px;
}

.feature-list{
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
}

.feature-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px 30px;
}

.feature-list ul li{
	position: relative;
    font-size: 16px;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 30px;
}

.feature-list ul li::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

/************************************/
/***     09. Our Projects css     ***/
/************************************/

.our-projects{
    padding: 100px 0;
}

.our-projects-boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.our-project-nav{
	width: calc(33.33% - 15px);
}

.our-project-nav ul{
	list-style: none;
    padding: 0;
    margin: 0;
	border: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.our-project-nav ul li{
	width: 100%;
	position: relative;
    display: inline-block;
}

.our-project-nav ul li .nav-link{
    position: relative;
	width: 100%;
	display: block;
	text-align: left;
    background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
    color: var(--primary-color);
	font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
	padding: 30px 75px 30px 30px;
	margin: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.our-project-nav ul li .nav-link.active,
.our-project-nav ul li .nav-link:hover{
    background: transparent;
    color: var(--white-color);
}

.our-project-nav ul li .nav-link::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 10px;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--accent-color);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 34px auto;
}

.our-project-nav ul li .nav-link::after{
    content: '';
	position: absolute;
	bottom: 0;
	right: 0;
    left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.our-project-nav ul li .nav-link.active::after,
.our-project-nav ul li .nav-link:hover::after{
    height: 100%;
}

.our-project-box{
    width: calc(66.66% - 15px);
}

.our-project-box,
.our-project-box.active{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.project-box-image,
.project-box-content{
    width: calc(50% - 15px);
}

.project-box-image figure{
    display: block;
    border-radius: 30px;
}

.project-box-image img{
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    border-radius: 30px;
}

.project-content-header,
.project-content-list{
    margin-bottom: 30px;
}

.project-content-header h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.project-content-header p{
    margin-bottom: 0;
}

.project-content-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-content-list ul li{
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-content-list ul li:last-child{
    margin-bottom: 0;
}

.project-content-list ul li::before{
    content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.project-counter-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    margin-top: 80px;
    padding-top: 80px;
}

.project-counter-item{
    position: relative;
    width: calc(25% - 22.5px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    overflow: hidden;
}

.project-counter-item::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.project-counter-item:hover::before{
    height: 100%;
}

.project-counter-item .icon-box,
.project-counter-content{
    position: relative;
    z-index: 1;
}

.project-counter-item .icon-box{
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.project-counter-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.project-counter-content{
    width: calc(100% - 80px);
}

.project-counter-content h2{
    font-size: 50px;
    margin-bottom: 5px; 
    transition: all 0.4s ease-in-out;
}

.project-counter-content p{
    text-transform: capitalize;
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.project-counter-item:hover .project-counter-content h2,
.project-counter-item:hover .project-counter-content p{
    color: var(--white-color);
}

/************************************/
/***      10. How It Work css     ***/
/************************************/

.how-it-work{
    background-image: url('../images/how-it-work-bg.png');
    background-position: bottom left;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding: 100px 0 0;
    margin-bottom: 200px;
}

.work-step-list{
    display: flex;
    align-items: start;
    gap: 40px 30px;
    flex-wrap: wrap;
}

.work-step-item{
    width: calc(25% - 22.5px);
    position: relative;
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover{
    background-color: var(--accent-color);
}

.work-step-item:nth-child(even){
    margin-top: 80px;
}

.work-step-item::before{
    content: '';
    position: absolute;
    bottom: -30px;
    transform: translateY(100%);
    background: url('../images/how-work-box-arrow.svg') no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 66px;
    height: 42px;
}

.work-step-item:nth-child(even)::before{
    bottom: auto;
    top: -30px;
    transform: translateY(-100%) rotateX(180deg);
}

.work-step-item:first-child::before{
    display: none;
}

.work-step-item h3,
.work-step-item h2,
.work-step-item p{
    position: relative;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.work-step-item h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.work-step-item h2{
    font-size: 22px;
    margin-bottom: 15px;
}

.work-step-item p{
    margin-bottom: 0;
}

.work-step-item:hover h3,
.work-step-item:hover h2,
.work-step-item:hover p{
    color: var(--primary-color);
}

.our-product-box{
    display: flex;
    gap: 30px 120px;
    flex-wrap: wrap;
    padding: 80px;
    background-color: var(--white-color);
	border: 1px solid var(--divider-color);
    box-shadow: 0px 0px 30px 0px #132A130D;
    border-radius: 30px;
    margin-bottom: -200px;
    margin-top: 100px;
}

.product-item{
    position: relative;
    width: calc(33.33% - 80px);
    text-align: center;
}

.product-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -60px;
    background-color: var(--divider-color);
    height: 100%;
    width: 1px;
}

.product-item:nth-child(3n + 3):before,
.product-item:last-child:before{
    display: none;
}

.product-image{
    margin-bottom: 30px;
}

.product-image img{
    max-width: 140px;
    max-height: 120px;
}

.product-item-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.product-item-content p{
    margin-bottom: 0;
}

/************************************/
/***     11. Our Pricing css      ***/
/************************************/

.our-pricing{
	padding: 100px 0 0;
}

.pricing-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-title h3{
	font-size: 22px;
	margin-bottom: 5px;
}

.pricing-title p{
	margin: 0;
}

.pricing--price h2{
	background: var(--accent-color);
	border-radius: 100px;
	font-size: 24px;
	padding: 5px 20px;
}

.pricing-body p{
	margin-bottom: 30px;
}

.pricing-body ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-body ul li{
	position: relative;
	line-height: 1.3em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-body ul li::before{
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.pricing-btn{
	margin-top: 30px;
}

.pricing-btn .btn-default{
	width: 100%;
	text-align: center;
	padding: 17px 20px;
}

.pricing-btn .btn-default::before{
	display: none;
}

.pricing-item.highlighted-box{
	background: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-body p,
.pricing-item.highlighted-box .pricing-title p,
.pricing-item.highlighted-box .pricing-title h3{
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-header{
	border-color: var(--dark-divider-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--text-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***     12. Our Benefits css     ***/
/************************************/

.our-benefits{
	padding: 100px 0 70px;
}

.benefits-box{
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #132A130D;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px 0 0 30px;
	overflow: hidden;
}

.benefit-item{
	width: 50%;
	align-content: center;
	padding: 0 20px 30px 0;
}

.benefit-item .icon-box{
	position: relative;
	background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.benefit-item .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.benefits-box:hover .benefit-item .icon-box::before{
    transform: scale(1);
}

.benefit-item .icon-box img{
	position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.benefits-box:hover .benefit-item .icon-box img{
    filter: brightness(0) invert(1);
}

.benefit-content h3{
	font-size: 22px;
	line-height: 1.3em;
	margin-bottom: 15px;
}

.benefit-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.benefit-content ul li{
	position: relative;
	line-height: 1.3em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.benefit-content ul li:last-child{
	margin-bottom: 0;
}

.benefit-content ul li::before{
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.benefit-btn{
	margin-top: 30px;
}

.benefit-image{
	width: 50%;
	text-align: right;
	align-content: end;
}

.benefit-image img{
	width: 100%;
}

/************************************/
/***      13. What We Do css      ***/
/************************************/

.what-we-do{
	background-image: url('../images/what-we-do-bg.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 100px 0;
}

.what-we-image figure{
	display: block;
	border-radius: 30px;
}

.what-we-image-box{
	position: relative;
}

.what-we-image img{
	width: 100%;
	aspect-ratio: 1 / 1.112;
	object-fit: cover;
	border-radius: 30px;
}

.faqs-contact-box{
	position: absolute;
	left: 30px;
	right: 60px;
	bottom: 30px;
	background: var(--accent-color);
	border-radius: 16px;
	padding: 15px;
	overflow: hidden;
	z-index: 1;
}

.faqs-contact-box::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background: var(--primary-color);
	width: calc(0% + 80px);
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.faqs-contact-box:hover:before{
	width: 100%;
}

.faqs-contact-box .icon-box{
	margin-right: 30px;
}

.faqs-contact-box .about-contact-box-content{
	position: relative;
	z-index: 1;
}

.faqs-contact-box .about-contact-box-content p{
	color: var(--primary-color);
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.faqs-contact-box:hover .about-contact-box-content h3,
.faqs-contact-box:hover .about-contact-box-content p{
	color: var(--white-color);
}

.what-we-item{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.what-we-item h3{
	position: relative;
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	padding-left: 30px;
	margin-bottom: 10px;
}

.what-we-item h3::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.what-we-item p{
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/***        14. Our FAQs css      ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.faqs-images{
	margin-right: 15px;
}

.faqs-image-box-2,
.faqs-image-box-1,
.faqs-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.faqs-image-box-1{
	width: calc(47% - 15px);
}

.faqs-image-box-2{
	width: calc(53% - 15px);
}

.faqs-img{
	width: 100%;
}

.faqs-img figure{
	display: block;
	border-radius: 30px;
}

.faqs-img img{
	width: 100%;
	aspect-ratio: 1 / 0.922;
	border-radius: 30px;
}

.faqs-image-box-2 .faqs-img img{
	aspect-ratio: 1 / 1.37;
}

.faqs-image-box-2 .about-contact-box .icon-box{
	width: 60px;
	height: 60px;
}

.faqs-image-box-2 .about-contact-box .icon-box img{
    max-width: 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{
    font-size: 22px;
	font-weight: 600;
    line-height: 1.3em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
	transform: rotate(90deg);
	background-color: var(--accent-color);
    background-image: url(../images/arrow-primary.svg);
    background-repeat: no-repeat;
    background-position: center top 4px;
    background-size: 16px auto;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: rotate(-90deg);
}

.faq-accordion .accordion-item .accordion-body{
	padding-right: 30px;
}

.accordion-item .accordion-body p{
	color: var(--text-color);
    margin-bottom: 15px;
}

.accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/***   15. Our Testimonials css   ***/
/************************************/

.our-testimonials{
    background-image: url('../images/testimonial-bg-img.png');
	background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 100px 0;
}

.testimonial-slider .swiper-wrapper{
    cursor: none;
}

.testimonial-item{
	position: relative;
    background: var(--secondary-color);
    backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 40px;
	overflow: hidden;
}

.testimonial-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--accent-color);
    transition: all 0.5s ease-in-out;
    height: 100%;
    z-index: 0;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item::before{
    top: 0;
}

.testimonial-rating{
	position: relative;
    margin-bottom: 30px;
	z-index: 1;
}

.testimonial-rating i{
    font-size: 18px;
    color: var(--accent-color);
	transition: all 0.6s ease-in-out;
}

.testimonial-content{
	position: relative;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.testimonial-content p{
    font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
    margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.testimonial-author{
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
}

.author-image{
    display: inline-block;
    margin-right: 20px;
}

.author-image figure{
    border-radius: 50%;
    display: block;
}

.author-image img{
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.author-content h3{
    font-size: 22px;
    text-transform: capitalize;
	color: var(--white-color);
    margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.author-content p{
	color: var(--white-color);
	opacity: 80%;
    margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item .testimonial-rating i,
.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item .testimonial-content p,
.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item .author-content h3,
.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item .author-content p{
	color: var(--primary-color);
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item .testimonial-content{
	border-color: var(--divider-color);
}

.testimonial-pagination{
	position: relative;
	text-align: center;
	margin-top: 50px;
}

.testimonial-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--text-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active{
	width: 20px;
    background: var(--accent-color);
	border-radius: 12px;
}

/************************************/
/***       16. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;	
    display: block;
	border-radius: 30px;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.744;
    object-fit: cover;
	border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	margin: 0 15px;
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 22px;
	line-height: 1.3em;
	margin-bottom: 15px;
}

.post-item-content h2 a{
	display: inline-block;
    color: inherit;
}

/************************************/
/***        17. Footer css	      ***/
/************************************/

.main-footer{
	background-image: url(../images/footer-bg.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 100px 0 0;
}

.footer-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title{
	width: calc(58% - 15px);
	margin-bottom: 0;
}

.footer-header .section-title p{
	margin-top: 10px;
}

.footer-newsletter-form{
    width: calc(42% - 15px);
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--accent-color);
	border-radius: 999px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control{
	width: 72%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--primary-color);
}

.footer-newsletter-form .form-group .btn-default{
	width: 28%;
	background: var(--primary-color);
    padding: 17px 18px;
    line-height: 1em;
	color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default:hover{
	background: transparent;
	color: var(--primary-color);
}

.footer-newsletter-form .form-group .btn-default::before{
	display: none;
}

.footer-newsletter-form .form-group .btn-default::after{
	background: var(--white-color);
}

.about-footer{
	margin-right: 80px;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 168px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links{
	margin-top: 30px;
}

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

.footer-social-links ul li{
	display: inline-block;
	margin-right: 12px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	width: 38px;
	height: 38px;
	color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

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

.footer-social-links ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

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

.footer-links ul li{
	text-transform: capitalize;
	color: var(--white-color);
	line-height: 1.2em;
	margin-bottom: 20px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-links ul li i{
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 10px;
}

.footer-contact-box{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
}

.footer-copyright-text{
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
	text-align: center;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/***    18. About Us Page css     ***/
/************************************/

.page-header{
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 230px 0 120px;
	margin-top: 20px;
    overflow: hidden;
}

.page-header::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 2;
}

.page-header-box h1{
	font-size: 80px;
    font-weight: 700;
	text-transform: uppercase;
	color: var(--white-color);
	cursor: none;
    overflow: hidden;
    margin-bottom: 10px;
}

.page-header-box h1 span{
    color: var(--accent-color);
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
    color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-approach{
    position: relative;
    background-image: url('../images/approach-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0 0;
    margin-bottom: 190px;
}

.our-approach::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);    
    opacity: 80%;
    width: 100%;
    height: 100%;
}

.our-approach .container{
    position: relative;
    z-index: 1;
}

.approach-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: -190px;
}

.approach-item{
    position: relative;
    width: calc(33.33% - 20px);
    background: var(--primary-color);
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

.approach-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.approach-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.approach-item .icon-box,
.approach-item-content,
.approach-list{
    position: relative;
    z-index: 1;
}

.approach-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.approach-item .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.approach-item:hover .icon-box::before{
    transform: scale(1);
}

.approach-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.approach-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.approach-item-content h3{
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.approach-item-content p{
    color: var(--white-color);
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.approach-list{
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
    transition: all 0.4s ease-in-out;
}

.approach-item:hover .approach-list{
    border-color: var(--divider-color);
}

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

.approach-list ul li{
    position: relative;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.approach-list ul li:last-child{
    margin-bottom: 0;
}

.approach-list ul li::before{
    content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.approach-item:hover .approach-item-content h3,
.approach-item:hover .approach-item-content p,
.approach-item:hover .approach-list ul li,
.approach-item:hover .approach-list ul li::before{
    color: var(--primary-color);
}

.our-communities{
    padding: 100px 0;
}

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

.communities-list ul li{
    position: relative;
    font-size: 16px;
	line-height: 1.5em;
	padding-left: 30px;
    margin-bottom: 15px;
}

.communities-list ul li:last-child{
    margin-bottom: 0;
}

.communities-list ul li::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.communities-counter-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.communities-counter-list .project-counter-item{
    width: calc(50% - 15px);
}

.community-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.community-image-box-1,
.community-image-box-2{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.community-image-box-1{
	background: url('../images/community-image-bg-1.svg') no-repeat;
	background-position: top left;
	background-size: auto;
	padding-top: 65px;
    padding-left: 15px;
}

.community-image-box-2{
	background: url('../images/community-image-bg-2.svg') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding-bottom: 65px;
    padding-right: 15px;
}

.community-img-1,
.community-img-2,
.community-img-3{
	width: 100%;
}

.community-img-1 figure,
.community-img-2 figure,
.community-img-3 figure{
	display: block;
}

.community-img-1 img,
.community-img-2 img,
.community-img-3 img{
	width: 100%;
	border-radius: 30px;
    object-fit: cover;
}

.community-img-1 img{
	aspect-ratio: 1 / 0.95;
}

.community-img-2 img{
	aspect-ratio: 1 / 0.65;
}

.community-img-3 img{
	aspect-ratio: 1 / 1.275;
}

.community-image-box-1 .quality-box{
    width: 100%;
    padding: 30px;
    border-radius: 30px;
}

.community-image-box-1 .quality-box h3{
    font-size: 22px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.our-team{
    padding: 100px 0 70px;
}

.team-item{
	position: relative;
	height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a{
    display: block;
	cursor: none;
	border-radius: 30px;
	overflow: hidden;
}

.team-image figure:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: 0;
	background: linear-gradient(180deg, rgba(2, 43, 35, 0) 51.52%, rgba(2, 43, 35, 0.8) 83.37%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-image figure:before{
    bottom: 0;
}

.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.356;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-body{
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-body{
    transform: translateY(0);
}

.team-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
    color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.team-social-list{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul{
	display: flex;
	justify-content: center;
	gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: transparent;
	border-radius: 50%;
	border: 1px solid var(--dark-divider-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li:hover a{
	color: var(--primary-color);
	background: var(--accent-color);
}

.team-social-list ul li a i{
    font-size: 18px;
    color: inherit;
}

.our-purpose{
    padding: 100px 0;
}

.our-purpose-image{
    position: relative;
    margin-right: 15px;
}

.our-purpose-image figure{
    display: block;
    border-radius: 30px;
}

.our-purpose-image figure img{
    width: 100%;
    aspect-ratio: 1 / 1.012;
    border-radius: 30px;
    object-fit: cover;
}

.purpose-counter-box{
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    max-width: 180px;
    background-color: var(--secondary-color);
    backdrop-filter: blur(10px);
    --wbkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
}

.purpose-counter-box::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-purpose-image:hover .purpose-counter-box::before{
    height: 100%;
    border-radius: 0;
}

.purpose-counter-box .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.purpose-counter-box .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.our-purpose-image:hover .purpose-counter-box .icon-box::before{
    transform: scale(1);
}

.purpose-counter-box .icon-box img{
    position: relative;
    width: 100%;
    max-width: 25px;
    z-index: 1;
}

.purpose-counter-content{
    position: relative;
    z-index: 1;
}

.purpose-counter-content h2{
    font-size: 50px;
    font-weight: 500;
    color: var(--white-color);
}

.purpose-counter-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.purpose-body-item{
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.purpose-body-item .icon-box{
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.purpose-body-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.purpose-body-item:hover .icon-box::before{
    transform: scale(1);
}

.purpose-body-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.purpose-body-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.purpose-body-content{
    width: calc(100% - 80px);
}

.purpose-body-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.purpose-body-content p{
    margin-bottom: 0;
}

/************************************/
/***    19. Services Page css     ***/
/************************************/

.page-services{
    padding: 100px 0 70px;
}

.page-services .service-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
}

.page-services .service-item .service-content h3{
	color: var(--primary-color);
}

.page-services .service-item .service-content p{
	color: var(--text-color);
}

.page-services .service-item.active .service-content p,
.page-services .service-item:hover .service-content p{
	color: var(--primary-color);
}

/************************************/
/***    20. Service Single css    ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.page-single-sidebar{
	position: sticky;
    top: 20px;
    margin-right: 20px;
}

.page-catagery-list{
    border: 1px solid var(--divider-color);
	background-color: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3{
    font-size: 22px;
    text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.page-catagery-list ul li{
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    margin: 0;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	line-height: 1.5em;
    padding: 13px 50px 13px 20px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--white-color);
}

.page-catagery-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background-image: url('../images/arrow-text.svg');
	border: 1px solid var(--divider-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
	border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li:hover a::before{
    background-image: url('../images/arrow-primary.svg');
    background-color: var(--accent-color);
}

.page-catagery-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;    
	padding: 180px 30px 30px;
    overflow: hidden;
}

.sidebar-cta-box:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    background: linear-gradient(180deg, rgba(19, 42, 19, 0) 24.35%, rgba(19, 42, 19, 0.95) 75.8%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content{
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo{
	margin-bottom: 40px;
}

.sidebar-cta-logo img{
	width: 100%;
	max-width: 168px;
}

.sidebar-cta-content h3{
    font-size: 22px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.service-single-slider{
	margin-bottom: 40px;
}

.service-single-slider figure{
	display: block;
	border-radius: 30px;
}

.service-single-slider img{
	width: 100%;
	aspect-ratio: 1 / 0.574;
	object-fit: cover;
	border-radius: 30px;
}

.service-button-prev,
.service-button-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-button-prev{
	left: 40px;
}

.service-button-next{
	right: 40px;
}

.service-button-prev:hover,
.service-button-next:hover{
	background-color: var(--white-color);
}

.service-button-prev::before,
.service-button-next::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../images/arrow-white.svg') no-repeat;
    background-position: center center;
    background-size: 30px auto;
    transition: all 0.4s ease-in-out;
}

.service-single-btn .service-button-prev::before{
    top: 1px;
	transform: rotate(180deg);
}

.service-button-prev:hover::before,
.service-button-next:hover::before{
	filter: brightness(0) invert(0);
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry h2{
    font-size: 50px;
	margin-bottom: 20px;
}

.service-entry h2 span{
    color: var(--accent-color);
}

.service-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-entry ul li{
    position: relative;
	line-height: 1.5em;
	padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child{
    margin-bottom: 0;
}

.service-entry ul li::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.service-growth-box,
.service-organic-box,
.service-solution-box,
.service-why-choose{
    margin-top: 60px;
}

.service-growth-list{
    margin-top: 40px;
}

.service-organic-image-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.service-organic-content,
.service-organic-image{
    width: calc(50% - 15px);
}

.service-organic-list{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.service-organic-item-list .purpose-body-item{
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 30px;
}

.service-organic-item-list .purpose-body-item:last-child{
    margin-bottom: 0;
}

.service-organic-image figure{
    display: block;
    border-radius: 30px;
}

.service-organic-image img{
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    border-radius: 30px;
}

.service-solution-steps{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-solution-step-item{
    position: relative;
    width: calc(33.33% - 20px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 25px;
    overflow: hidden;
}

.service-solution-step-item::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    border-radius: 999px 999px 0 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.service-solution-step-item:hover::before{
    height: 100%;
    border-radius: 0;
}

.service-solution-step-item h2,
.service-solution-step-item h3,
.service-solution-step-item p,
.service-solution-step-item img{
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-solution-step-item h2{
    font-size: 18px;
	font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.service-solution-step-item h3{
    font-size: 22px;
    margin-bottom: 20px;
}

.service-solution-step-item p{
    margin-bottom: 20px;
}

.service-solution-step-item img{
    width: 100%;
    max-width: 40px;
}

.service-solution-step-item:hover h2,
.service-solution-step-item:hover p{
    color: var(--primary-color);
}

.service-entry-image-content{
    position: relative;
    margin-top: 40px;
}

.service-entry-image{
    border-radius: 30px;
    overflow: hidden;
}

.service-entry-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(2, 43, 35, 0) 0%, #022B23 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-entry-image figure{
    display: block;
}

.service-entry-image img{
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
}

.service-entry-content{
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 1;
}

.service-entry-content .purpose-body-item{
    width: calc(50% - 15px);
    padding: 0;
    border: none;
    margin-bottom: 0;
    border-radius: 0;
}

.service-entry-content .purpose-body-item .icon-box::before{
    background: var(--white-color);
}

.service-entry-content .purpose-body-item .icon-box img{
    filter: none;
}

.service-entry-content .purpose-body-item .purpose-body-content h3,
.service-entry-content .purpose-body-item .purpose-body-content p{
    color: var(--white-color);
}

/************************************/
/***     21. Blog Archive css     ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    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(--divider-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);
}

/************************************/
/***      22. Blog Single css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 30px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.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: 600;
	line-height: 1.1em;
	margin: 0 0 0.417em;
}

.post-entry h1{
	font-size: 80px;
}

.post-entry h2{
	font-size: 50px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.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 ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    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(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--primary-color);
	border-radius: 99px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
	color: var(--white-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(--primary-color);
	border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***    23. Projects Page css     ***/
/************************************/

.page-projects{
	padding: 100px 0 70px;
}

.project-item{
    position: relative;
	border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-image a,
.project-image figure{
    display: block;
    cursor: none;
}

.project-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(2, 43, 35, 0) 65.42%, rgba(2, 43, 35, 0.6) 75.79%, #022B23 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-image img{
    width: 100%;
	aspect-ratio: 1 / 0.83;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img{
	transform: scale(1.1);
}

.project-body{
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

.project-item-content{
	width: calc(100% - 60px);
}

.project-item-content h3{
	color: var(--white-color);
	font-size: 22px;
	line-height: 1.3em;
}

.project-item-content h3 a{
	color: inherit;
}

.project-readmore-btn a{
	background: var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.project-readmore-btn a:hover{
	background: var(--white-color);
}

.project-readmore-btn a img{
	width: 100%;
	max-width: 24px;
}

/************************************/
/***    24. Project Single css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-category-list{
    border: 1px solid var(--divider-color);
	background: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
    overflow: hidden;
}

.project-category-list h3{
    font-size: 22px;
    text-transform: capitalize;
    padding: 30px;
    border-bottom: 1px solid var(--divider-color);
}

.project-category-list ul{
    margin: 0;
    padding: 30px;
    list-style: none;
}

.project-category-list ul li{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
	line-height: 1.5em;
	color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-list ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-list ul li span{
    width: 65%;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
}

.project-single-image{
	margin-bottom: 40px;
}

.project-single-image figure{
	display: block;
	border-radius: 30px;
}

.project-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.574;	
	object-fit: cover;
	border-radius: 30px;
}

.project-entry{
	margin-bottom: 60px;
}

.project-entry p{
	margin-bottom: 20px;
}

.project-entry p:last-child{
	margin-bottom: 0;
}

.project-entry h2{
    font-size: 50px;
	margin-bottom: 20px;
}

.project-entry h2 span{
    color: var(--accent-color);
}

.project-future-box,
.project-innovating-box,
.project-challenge-box{
    margin-top: 60px;
}

.project-future-image-content{
    margin-top: 40px;
}

.project-future-item-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.project-future-item-list:last-child{
    margin-bottom: 0;
}

.project-future-item-list:nth-child(even){
    flex-direction: row-reverse;
}

.project-future-item-list .purpose-body-item{
    width: calc(50% - 15px);
    margin-bottom: 0;
}

.project-future-image{
    width: calc(50% - 15px);
}

.project-future-image figure{
    display: block;
    border-radius: 30px;
}

.project-future-image img{
    width: 100%;
    aspect-ratio: 1 / 0.417;
    object-fit: cover;
    border-radius: 30px;
}

.project-innovating-body{
	position: relative;
    background: var(--white-color);
	padding: 30px;
    box-shadow: 0px 0px 20px 0px #022B231A;
    border-left: 6px solid var(--primary-color);
    border-radius: 20px;
	margin-top: 40px;
	overflow: hidden;
}

.project-innovating-body::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 0 20px 20px 0;
    height: 100%;
    width: 0px;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.project-innovating-body:hover::before{
    width: 100%;
	right: 100%;
}

.project-innovating-body h3{
    position: relative;
    font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-innovating-body:hover h3{
    color: var(--white-color);
}

.project-entry-video-image{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 40px;
}

.project-entry-video-image figure{
    display: block;
    border-radius: 30px;
}

.project-entry-video-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-entry-video-image figure img{
    width: 100%;
    aspect-ratio: 1 / 0.479;
    object-fit: cover;
}

.project-entry-video-image .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project-challenge-list{
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 40px;
}

.project-challenge-item-box{
    width: 50%;
    background-color: var(--primary-color);
    padding: 40px;
}

.project-challenge-item-box:nth-child(even){
    background-color: var(--accent-color);
}

.project-challenge-item{
    display: flex;
}

.project-challenge-content{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.project-challenge-item-box:nth-child(even) .project-challenge-content{
    border-bottom-color: var(--divider-color);
}

.project-challenge-item h3{
    font-size: 22px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.project-challenge-item p{
    color: var(--white-color);
    margin-bottom: 0;
}

.project-challenge-item-box:nth-child(even) .project-challenge-item h3,
.project-challenge-item-box:nth-child(even) .project-challenge-item p{
    color: var(--primary-color);
}

.project-challenge-item .icon-box{
    margin-right: 20px;
}

.project-challenge-item .icon-box img{
    width: 100%;
    max-width: 40px;
}

.project-challenge-item-box:nth-child(even) .project-challenge-item .icon-box img{
    filter: brightness(0) invert(0);
}

.project-challenge-item-content{
    width: calc(100% - 60px);
}

/************************************/
/***       25. Team Page css      ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***      26. Team Single css     ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-single-image{
	margin-bottom: 60px;
}

.team-single-image figure{
    display: block;
    border-radius: 30px;
}

.team-single-image img{
    width: 100%;
	aspect-ratio: 1 / 1.29;
    object-fit: cover;
    border-radius: 30px;
}

.team-member-about,
.team-member-biography,
.team-member-skills{
	margin-bottom: 60px;
}

.team-contact-list{
    border-radius: 30px;
    overflow: hidden;
}

.team-contact-list-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 100px;
    background: var(--primary-color);
    padding: 40px;
}

.team-contact-list-box:nth-child(even){
    background: var(--accent-color);
}

.team-contact-box{
    position: relative;
    width: calc(50% - 50px);
    display: flex;
    align-items: center;
}

.team-contact-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    background-color: var(--dark-divider-color);
    height: 100%;
    width: 1px;
}

.team-contact-list-box:nth-child(even) .team-contact-box::before{
    background-color: var(--divider-color);
}

.team-contact-box:nth-child(2n + 2)::before,
.team-contact-box:last-child::before{
    display: none;
}

.team-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
    transition: all 0.5s ease-in-out;
}

.team-contact-list-box:nth-child(even) .team-contact-box .icon-box{
    background-color: var(--primary-color);
}

.team-contact-box:hover .icon-box,
.team-contact-list-box:nth-child(even) .team-contact-box:hover .icon-box{
    background: transparent;
}

.team-contact-box .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--white-color);
	transform: scale(0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.team-contact-box:hover .icon-box::before{
	transform: scale(1);
}

.team-contact-box .icon-box img{
    position: relative;
	width: 100%;
	max-width: 25px;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-contact-list-box:nth-child(even) .team-contact-box:hover .icon-box img{
    filter: brightness(0) invert(0);
}

.team-contact-content{
	width: calc(100% - 70px);
}

.team-contact-content h3{
	font-size: 22px;
    text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.team-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.team-contact-list-box:nth-child(even) .team-contact-box .team-contact-content h3,
.team-contact-list-box:nth-child(even) .team-contact-box .team-contact-content p{
    color: var(--primary-color);
}

.team-biography-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.team-biography-list ul li{
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.team-biography-list ul li::before{
    content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.member-skill-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-skill-list .skills-progress-bar{
	width: calc(50% - 15px);
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
	margin-bottom: 20px;
	gap: 10px;
    margin-bottom: 10px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
    position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--primary-color);
    border-radius: 100px;
}

/************************************/
/***      27. Pricing Page css    ***/
/************************************/

.page-pricing{
	padding: 100px 0;
}

/************************************/
/***  28. Testimonials Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--accent-color);
    transition: all 0.5s ease-in-out;
    height: 100%;
    z-index: 0;
}

.page-testimonials .testimonial-item.active:before,
.page-testimonials .testimonial-item:hover:before{
    top: 0;
}

.page-testimonials .testimonial-item.active .testimonial-rating i,
.page-testimonials .testimonial-item:hover .testimonial-rating i{
	color: var(--primary-color);
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p{
	color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3{
	color: var(--primary-color);
}

.page-testimonials .testimonial-item.active .author-content p,
.page-testimonials .testimonial-item.active .author-content h3,
.page-testimonials .testimonial-item.active .testimonial-content p,
.page-testimonials .testimonial-item:hover .author-content p,
.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .testimonial-content p{
	color: var(--primary-color);
}

.page-testimonials .testimonial-item .testimonial-content{
	border-color: var(--divider-color);
}

/************************************/
/***     29. Image Gallery css    ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.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{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***      31. FAQs Page css       ***/
/************************************/

.page-faqs{
    padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-form{
	margin-right: 15px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.contact-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.contact-info-item{
	width: calc(50% - 15px);
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #132A130D;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
}

.contact-info-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.contact-info-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 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{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.contact-info-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p{
	margin: 0;
}

.contact-info-content p a{
	display: inline-block;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover{
	color: var(--primary-color);
}

.google-map{
	margin-top: 100px;
}

.google-map iframe{
	width: 100%;
	height: 500px;
	border-radius: 20px;
}

/************************************/
/***    33. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.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,
.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1880px){

	.bg-section{
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 20px;
	}

	header.main-header .header-sticky{
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 20px;
	}

	header.main-header .container-fluid{
		padding: 0 15px;
	}

	.hero{
		margin-top: 20px;
	}

	.hero-section{
		max-width: 100%;
	}
	
	.hero-section .container-fluid{
		padding: 0 15px;
	}

	.page-header{
		margin-top: 20px;
	}
}

@media only screen and (max-width: 1366px){
	
	.main-menu .nav-menu-wrapper{
		margin: 0 20px;
	}

	.main-menu ul li a{
		padding: 15px !important;
	}

	.header-contact-box{
		gap: 20px;
	}

	.header-contact-item .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.header-contact-item .icon-box img{
		max-width: 22px;
	}

	.header-contact-item-content h3{
		font-size: 18px;
	}

	.feature-content{
        padding: 50px 30px;
    }

    .feature-item-list{
        gap: 30px;
    }

    .feature-item{
        width: calc(33.33% - 20px);
    }

    .feature-item::before{
        right: -15px;
    }

    .feature-item .icon-box{
        margin-bottom: 30px;
    }

    .feature-item-content h3{
        font-size: 20px;
    }

    .feature-video-box{
        padding: 40px 30px;
    }
}

@media only screen and (max-width: 1024px){

	.header-contact-item{
		display: none;
	}

	.hero-content .section-title h1{
		font-size: 100px;
	}
}

@media only screen and (max-width: 991px){

	body{
		font-size: 16px;
	}

	.btn-default{
		padding: 14px 50px 14px 15px;
	}

	.btn-default::before{
		width: 35px;
		height: 35px;		
		background-size: 24px auto;
	}

	header.main-header .header-sticky{
        width: 100%;
        margin: 0;
    }

	header.main-header .header-sticky.active{
		border-radius: 0;
	}

	.navbar{
		padding: 15px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.bg-section{
		width: 100%;
		border-radius: 0;
		margin: 0;
	}
	
	.section-row{
		margin-bottom: 40px;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		background-size: 18px auto;
		padding-left: 25px;
	}

	.section-title h1{
		font-size: 46px;
	}

	.section-title h2{
		font-size: 38px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
        margin-top: 10px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}
    
	.hero{
        padding: 160px 0 40px;
		margin: 0;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 160px 0 40px;
	}

	.hero.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

	.hero-content .section-title h1{
		font-size: 80px;
	}

	.hero-content .section-title h1 span{
		font-size: 60px;
	}

	.hero-content-list ul{
		gap: 20px;
	}

	.hero-content-list ul li{
		padding-left: 25px;
	}

	.hero-content-list ul li::before{
		font-size: 18px;
	}

	.hero-btn{
		margin-top: 40px;
	}

	.hero-counter-item-box{
		margin-top: 50px;
	}

	.hero-benefit-image figure,
	.hero-benefit-image img,
	.hero-benefit-box{
		border-radius: 20px;
		height: auto;
	}

	.hero-benefit-item,
	.hero-benefit-image{
		width: 100%;
	}
	
	.hero-benefit-image img{
		aspect-ratio: 1 / 0.8;
	}

	.hero-benefit-item{
		padding: 20px;
	}

	.hero-benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.hero-benefit-item-content h3{
		font-size: 20px;
	}

	.hero-counter-box{
		height: auto;
		margin-top: 30px;
		padding: 20px;
		border-radius: 20px;
	}

	.hero-counter-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.hero-counter-item h2{
		font-size: 38px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.experience-circle{
		left: 105px;
	}

	.experience-circle img{
		max-width: 140px;
	}

	.about-us-body-item{
		border-radius: 20px;
		padding: 20px;
	}

	.about-us-body-item h3{
		font-size: 20px;
	}

	.about-us-footer{
		margin-top: 30px;
	}

	.about-contact-box-content h3{
		font-size: 20px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item{
		border-radius: 20px;
		padding: 30px;
	}

	.service-content{
		margin-bottom: 20px;
	}

	.service-content h3{
		font-size: 20px;
	}

	.service-image figure,
	.service-image img{
		border-radius: 20px;
	}

	.service-btn a{
		width: 50px;
		height: 50px;
	}

	.service-btn a img{
		max-width: 26px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-images{
		margin-bottom: 30px;
	}

	.why-choose-image{
		width: calc(50% - 15px);
	}

	.why-choose-image figure,
	.why-choose-image img{
		border-radius: 20px;
	}

	.why-choose-quality-disc{
		margin-bottom: 30px;
	}

	.quality-box{
		width: calc(55% - 15px);
		padding: 15px;
	}

	.quality-box img{
		margin-bottom: 15px;
	}

	.why-choose-box-circle .experience-circle{
		width: calc(45% - 15px);
	}

	.why-choose-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-item-title h3{
		font-size: 20px;
	}

	.feature-content{
        padding: 50px 15px;
    }

    .faeture-image-content{
        margin-top: 30px;
        padding-top: 30px;
    }

    .faeture-circle-image{
        margin-right: 30px;
    }

    .faeture-circle-image img{
        max-width: 140px;
    }

    .feature-video-box{
        padding: 80px 15px 40px;
    }

    .video-play-button{
        top: auto;
        transform: initial;
    }

    .video-play-button h3{
        font-size: 20px;
		margin-top: 20px;
    }

    .feature-list{
        margin-top: 40px;
    }

    .feature-list ul{
        gap: 20px;
    }

    .feature-list ul li{
		padding-left: 25px;
	}

	.feature-list ul li::before{
		font-size: 18px;
	}

	.our-projects{
        padding: 50px 0;
    }

    .our-project-nav,
    .our-project-box{
        width: 100%;
    }

    .our-project-nav ul{
        gap: 20px;
    }

    .our-project-nav ul li{
        width: calc(50% - 10px);
    }

    .our-project-nav ul li .nav-link{
        font-size: 20px;
        padding: 20px 65px 20px 20px;
    }

    .our-project-nav ul li .nav-link::before{
        width: 40px;
        height: 40px;
        background-size: 26px auto;
    }

    .project-box-image figure{
        border-radius: 20px;
    }

    .project-box-image img{
        aspect-ratio: 1 / 1.01;
        border-radius: 20px;
    }

    .project-content-header,
    .project-content-list{
        margin-bottom: 20px;
    }

    .project-content-header h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .project-content-list ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .project-content-list ul li::before{
        font-size: 18px;
    }

    .project-counter-list{
        gap: 20px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .project-counter-item{
        width: calc(25% - 15px);
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 20px;
        padding: 15px;
    }

    .project-counter-item .icon-box{
        width: 50px;
        height: 50px;
        margin: 0 0 10px 0;
    }

    .project-counter-item .icon-box img{
        max-width: 26px;
    }

    .project-counter-content{
        width: 100%;
    }

    .project-counter-content h2{
        font-size: 38px;
    }

	.how-it-work{
        padding: 50px 0 0;
        margin-bottom: 150px;
    }

    .work-step-list{
        gap: 40px 20px;
    }

    .work-step-item{
        width: calc(25% - 15px);
        border-radius: 20px;
        padding: 20px;
    }

    .work-step-item:nth-child(even){
        margin-top: 60px;
    }

    .work-step-item::before{
        bottom: -20px;
        width: 48px;
        height: 30px;
    }

    .work-step-item h2{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .our-product-box{
        gap: 30px;
        padding: 40px 15px;
        border-radius: 20px;
        margin-bottom: -150px;
        margin-top: 50px;
    }

    .product-item{
        width: calc(33.33% - 20px);
    }

    .product-item::before{
        right: -15px;
    }

    .product-image{
        margin-bottom: 20px;
    }

    .product-item-content h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

	.our-pricing{
		padding: 50px 0 0;
	}

	.pricing-item{
		border-radius: 20px;
		padding: 30px;
	}

	.pricing-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-title h3{
		font-size: 20px;
	}

	.pricing--price h2{
		font-size: 22px;
	}

	.pricing-body p{
		margin-bottom: 20px;
	}

	.pricing-body ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.pricing-body ul li::before{
		font-size: 16px;
	}

	.pricing-btn .btn-default{
		padding: 14px 15px;
	}

	.pricing-benefit-list{
		margin-top: 10px;
	}

	.our-benefits{
		padding: 50px 0 20px;
	}

	.benefits-box{
		border-radius: 20px;
		padding: 0;
	}

	.benefit-item{
		width: 100%;
		padding: 20px;
		margin: 0px;
	}

	.benefit-content h3{
		font-size: 20px;
	}

	.benefit-content ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.benefit-content ul li::before{
		font-size: 16px;
	}

	.benefit-image{
		width: 100%;
		margin-top: -95px;
	}

	.benefit-image img{
		max-width: 30%;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-content{
		margin-bottom: 30px;
	}

	.what-we-image figure,
	.what-we-image img{
		border-radius: 20px;
	}

	.faqs-contact-box{
		left: 20px;
		right: 20px;
		bottom: 20px;
		border-radius: 12px;
	}

	.what-we-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.what-we-item h3{
		font-size: 20px;
	}

	.what-we-item h3::before{
		font-size: 18px
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-images{
		margin: 0 0 30px 0;
	}

	.faqs-img img,
	.faqs-img figure{
		border-radius: 20px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 20px;
		padding-right: 25px;
	}

	.faq-accordion .accordion-button:not(.collapsed){
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		background-size: 14px auto;
		width: 22px;
		height: 22px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.testimonial-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-rating{
		margin-bottom: 20px;
	}

	.testimonial-content{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-pagination{
		margin-top: 30px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-featured-image a,
	.post-featured-image img{
		border-radius: 20px;
	}

	.author-content h3{
		font-size: 20px;
	}

	.post-item-content h2{
		font-size: 20px;
	}

	.post-item-content{
		margin-bottom: 15px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-newsletter-form,
	.footer-header .section-title{
		width: 100%;
	}

	.footer-newsletter-form .form-group .form-control{
		padding: 10px 15px;
	}

	.footer-newsletter-form .form-group .btn-default{
		padding: 15px;
	}

	.about-footer{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.footer-logo{
		margin-bottom: 15px;
	}

	.footer-social-links{
		margin-top: 20px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 15px;
	}

	.footer-copyright-text{
		padding: 30px 0;
		margin-top: 30px;
	}

	.page-header{
		padding: 150px 0 70px;
		margin-top: 0px;
	}

	.page-header-box h1{
		font-size: 46px;
	}

	.our-approach{
        padding: 50px 0 0;
        margin-bottom: 190px;
    }

    .approach-item{
        width: calc(50% - 15px);
        border-radius: 20px;
        padding: 30px;
    }

    .approach-item .icon-box{
        margin-bottom: 30px;
    }

    .approach-item-content h3{
        font-size: 20px;
    }

    .approach-list{
        margin-top: 20px;
        padding-top: 20px;
    }

    .approach-list ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .approach-list ul li::before{
        font-size: 18px;
    }

	.our-communities{
        padding: 50px 0;
    }

    .communities-content{
        margin-bottom: 30px;
    }

    .communities-list ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .communities-list ul li::before{
        font-size: 18px;
    }

    .communities-counter-list{
        margin-top: 30px;
    }
    
    .communities-counter-list .project-counter-item{
        flex-direction: row;
        text-align: left;
    }
    
    .communities-counter-list .project-counter-item .icon-box{
        margin: 0 15px 0 0;
    }

    .communities-counter-list .project-counter-item .project-counter-content{
        width: calc(100% - 65px);
    }

	.community-images{
		max-width: 75%;
		margin: 0 auto;
	}

    .community-img-1 img,
    .community-img-2 img,
    .community-img-3 img,
    .community-image-box-1 .quality-box{
        border-radius: 20px;
    }

    .community-image-box-1 .quality-box{
        padding: 20px;
    }

    .community-image-box-1 .quality-box h3{
        font-size: 20px;
    }

	.our-team{
        padding: 50px 0 20px;
    }

    .team-image a{
        border-radius: 20px;
    }

    .team-image img{
        aspect-ratio: 1 / 1.1;
    }

    .team-content h3{
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .team-item:hover .team-social-list{
        margin-top: 10px;
    }

	.our-purpose{
        padding: 50px 0;
    }

    .our-purpose-image{
        margin: 0 0 30px 0;
    }
    
    .our-purpose-image figure{
        border-radius: 20px;
    }
    
    .our-purpose-image figure img{
        aspect-ratio: 1 / 0.7;
        border-radius: 20px;
    }

    .purpose-counter-box{
        max-width: 160px;
        border-radius: 20px;
    }

    .purpose-counter-content h2{
        font-size: 38px;
    }

    .purpose-body-item{
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .purpose-body-content h3{
        font-size: 20px;
    }

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
        padding: 50px 0;
    }

    .page-single-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagery-list{
        border-radius: 20px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .page-catagery-list h3{
        font-size: 20px;
        margin-bottom: 20px;
    }

    .page-catagery-list ul li a{
        padding: 10px 40px 10px 15px;
    }

    .page-catagery-list ul li a::before{
        right: 15px;
        background-size: 16px auto;
        width: 22px;
        height: 22px;
    }

    .sidebar-cta-box{
        border-radius: 20px;
        padding: 100px 20px 20px;
    }

    .sidebar-cta-logo{
        margin-bottom: 30px;
    }

    .sidebar-cta-content h3{
        font-size: 20px;
    }

    .service-single-slider{
        margin-bottom: 30px;
    }

    .service-single-slider figure,
    .service-single-slider img{
        border-radius: 20px;
    }

    .service-entry{
        margin-bottom: 40px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-entry h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-entry ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .service-entry ul li::before{
        font-size: 18px;
    }

    .service-growth-box,
    .service-organic-box,
    .service-solution-box,
    .service-why-choose{
        margin-top: 40px;
    }

    .service-organic-image-content{
        margin-top: 30px;
    }

    .service-organic-list{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .service-organic-image figure,
    .service-organic-image img{
        border-radius: 20px;
    }

    .service-solution-steps{
        margin-top: 30px;
        gap: 20px;
    }

    .service-solution-step-item{
        width: calc(33.33% - 13.33px);
        border-radius: 20px;
        padding: 15px;
    }

    .service-solution-step-item h2{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .service-solution-step-item h3{
        font-size: 20px;
        margin-bottom: 15px;
    }
        
    .service-entry-image-content{
        margin-top: 30px;
    }

    .service-entry-image{
        border-radius: 20px;
    }

    .service-entry-content{
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.42em;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 10px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
		padding: 50px 0 20px;
	}

	.project-item{
		border-radius: 20px;
	}

	.project-item-content h3{
		font-size: 20px;
	}

	.page-project-single{
        padding: 50px 0;
    }

    .project-category-list{
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .project-category-list h3{
        font-size: 20px;
        padding: 20px;
    }

    .project-category-list ul{
        padding: 20px;
    }

    .project-category-list ul li{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .project-single-image{
        margin-bottom: 30px;
    }

    .project-single-image figure,
    .project-single-image img{
        border-radius: 20px;
    }

    .project-entry{
        margin-bottom: 40px;
    }

    .project-entry p{
        margin-bottom: 15px;
    }

    .project-entry h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

    .project-future-box,
    .project-innovating-box,
    .project-challenge-box{
        margin-top: 40px;
    }

    .project-future-image-content{
        margin-top: 30px;
    }

    .project-future-item-list{
        gap: 20px;
        margin-bottom: 20px;
    }

    .project-future-item-list .purpose-body-item,
    .project-future-image{
        width: calc(50% - 10px);
    }

    .project-future-image figure,
    .project-future-image img{
        border-radius: 20px;
    }

	.project-future-image img{
		aspect-ratio: 1 / 0.35;
	}

    .project-innovating-body{
        padding: 20px;
        margin-top: 30px;
    }

	.project-entry-video-image{
		margin-top: 30px;
	}

    .project-entry-video-image,
    .project-entry-video-image figure{
        border-radius: 20px;
    }

    .project-challenge-list{
        border-radius: 20px;
        margin-top: 30px;
    }

    .project-challenge-item-box{
        padding: 30px;
    }

    .project-challenge-content{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .project-challenge-item h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
        padding: 50px 0;
    }

    .team-single-image{
        margin-bottom: 30px;
    }

    .team-single-image figure{
        border-radius: 20px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 0.8;
        border-radius: 20px;
    }

    .team-member-about,
    .team-member-biography,
    .team-member-skills{
        margin-bottom: 40px;
    }

    .team-contact-list{
        border-radius: 20px;
    }

    .team-contact-list-box{
        padding: 30px;
    }

    .team-contact-content h3{
        font-size: 20px;
    }

    .team-biography-list ul{
        gap: 15px 20px;
    }

    .team-biography-list ul li{
        width: calc(50% - 10px);
        padding-left: 25px;
    }

    .team-biography-list ul li::before{
        font-size: 18px;
    }

	.page-pricing{
		padding: 50px 0;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}
	
	.page-faqs-catagery .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-form{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

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

	.contact-info-item .icon-box{
		margin-bottom: 30px;
	}

	.contact-info-content h3{
		font-size: 20px;
	}

	.google-map{
		margin-top: 50px;
	}

	.google-map iframe{
		height: 350px;
	}

	.error-page{
        padding: 50px 0;
    }

    .error-page-image{
        margin-bottom: 20px;
    }

    .error-page-image img{
        max-width: 80%;
    }

    .error-page-content .section-title,
    .error-page-content-body p{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-content .section-title h1{
		font-size: 40px;
	}

	.hero-content .section-title h1 span{
		font-size: 30px;
	}

	.hero-content-list ul{
		gap: 10px;
	}

	.hero-content-list ul li::before{
        font-size: 16px;
    }

	.hero-btn{
        margin-top: 30px;
		gap: 20px;
    }

	.hero-counter-item-box{
        margin-top: 40px;
    }

	.hero-counter-box{
		margin: 30px 0;
	}

	.hero-counter-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.hero-counter-item h2{
        font-size: 30px;
    }

	.about-us-images{
        max-width: 92%;
    }

	.about-us-img-2{
		margin-top: 90px;
		margin-left: -65px;
	}

	.experience-circle{
		bottom: 20px;
        left: 55px;
    }

	.experience-circle img{
        max-width: 100px;
    }

	.about-us-body{
		gap: 20px;
	}

	.about-us-body-item{
        width: 100%	;
    }

	.about-us-footer{
		gap: 20px;
	}

	.about-contact-box .icon-box{
		width: 45px;
		height: 45px;
	}

	.about-contact-box .icon-box img{
		max-width: 22px;
	}

	.about-contact-box-content p{
		margin-bottom: 2px;
	}

	.about-contact-box-content h3{
        font-size: 18px;
    }

	.service-item{
		padding: 20px;
	}

	.service-item::after{
		width: 105px;
		height: 102px;
	}

	.why-choose-images{
		gap: 20px;
		margin-bottom: 20px;
	}

	.why-choose-image{
        width: 100%;
    }

	.why-choose-image img{
		aspect-ratio: 1 / 0.7;
	}

	.why-choose-image-content .why-choose-image,
	.why-choose-content-box{
		width: 100%;
	}

	.why-choose-box-circle,
	.why-choose-image-content,
	.why-choose-content{
		gap: 20px 30px;
	}

	.why-choose-quality-disc{
        margin-bottom: 20px;
    }

	.why-choose-box-circle .experience-circle img{
		max-width: 140px;
	}

	.why-choose-item{
		gap: 10px;
		padding-bottom: 15px;
        margin-bottom: 15px;
	}

	.why-choose-item-content,
	.why-choose-item-header{
		width: 100%;
	}

	.why-choose-item-header .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.why-choose-item-header .icon-box img{
		max-width: 26px;
	}

	.feature-item{
        width: 100%;
    }

    .feature-item::before{
        top: auto;
        left: 0;
        right: 0;
        bottom: -15px;
        width: 100%;
        height: 1px;
    }

    .feature-item .icon-box{
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .feature-item .icon-box img{
        max-width: 26px;
    }

    .faeture-image-content{
		display: block;
    }

    .faeture-circle-image{
        margin: 0 0 20px 0;
    }

    .faeture-circle-image img{
        max-width: 100px;
    }

    .feature-list{
        margin-top: 30px;
        padding-top: 30px;
    }

    .video-play-button a{
        width: 60px;
        height: 60px;
    }

    .video-play-button a::before,
    .video-play-button a::after{
        top: -33%;
        left: -33%;
    }

    .video-play-button i{
        font-size: 26px;
    }

    .feature-list ul{
        gap: 10px;
    }

	.feature-list ul li{
		font-size: 14px;
	}

	.feature-list ul li::before{
        font-size: 16px;
    }

	.our-project-nav ul li{
        width: 100%;
    }

    .our-project-nav ul li .nav-link{
		font-size: 18px;
        padding: 14px 65px 14px 20px;
    }

    .our-project-nav ul li .nav-link::before{
        width: 28px;
        height: 28px;
        background-size: 18px auto;
    }

    .our-project-box,
    .our-project-box.active{
        gap: 20px;
    }

    .project-box-image,
    .project-box-content{
        width: 100%;
    }
    
    .project-box-image img{
        aspect-ratio: 1 / 0.72;
    }    

    .project-counter-list{
        margin-top: 30px;
        padding-top: 30px;
    }

    .project-counter-item{
        width: calc(50% - 10px);
    }

    .project-counter-content h2{
        font-size: 26px;
    }

	.work-step-list{
        gap: 20px;
    }

    .work-step-item{
        width: 100%;
        padding: 15px;
    }

    .work-step-item::before{
        display: none;
    }

	.work-step-item:nth-child(even){
        margin-top: 0px;
    }

    .work-step-item h3{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .our-product-box{
       padding: 30px 15px;
    }

    .product-item{
        width: 100%;
    }

    .product-item::before{
        top: auto;
        right: auto;
        left: 0;
        bottom: -15px;
        width: 100%;
        height: 1px;
    }

    .product-image img{
        max-width: 120px;
        max-height: 100px;
    }

	.pricing-item{
		padding: 20px;
	}

	.pricing--price h2{
        font-size: 20px;
    }

	.pricing-benefit-list{
        margin-top: 5px;
    }

	.pricing-benefit-list ul{
		gap: 10px;
	}

	.pricing-benefit-list ul li{
		width: calc(50% - 5px);
		font-size: 14px;
	}

	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.what-we-image{
		margin-bottom: 30px;
	}

	.faqs-image-box-2,
	.faqs-image-box-1,
	.faqs-images{
		gap: 20px;
	}

	.faqs-image-box-1{
		width: calc(47% - 10px);
	}

	.faqs-image-box-2{
		width: calc(53% - 10px);
	}

	.faqs-image-box-2 .about-contact-box .icon-box{
		width: 45px;
		height: 45px;
	}

	.faqs-image-box-2 .about-contact-box .icon-box img{
		max-width: 24px;
	}

	.faq-accordion .accordion-header .accordion-button{
        font-size: 18px;
    }

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 0px;
	}

	.testimonial-item{
        padding: 20px;
    }

	.testimonial-rating{
        margin-bottom: 15px;
    }

	.footer-newsletter-form .form-group .form-control{
		width: 70%;
	}

	.footer-newsletter-form .form-group .btn-default{
		width: 30%;
	}

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

	.footer-links h3{
        margin-bottom: 15px;
    }

	.footer-links ul li{
        margin-bottom: 12px;
    }

	.footer-links ul li i{
		font-size: 14px;
	}

	.footer-contact-box{
		padding: 15px;
	}

	.footer-copyright-text{
        padding: 15px 0;
        margin-top: 0px;
    }

	.page-header-box h1{
		font-size: 30px;
	}

    .page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }

	.approach-item{
        width: 100%;
        padding: 20px;
    }

    .approach-item .icon-box{
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .approach-item .icon-box img{
        max-width: 26px;
    }

	.communities-counter-list{
        gap: 20px;
    }

    .communities-counter-list .project-counter-item{
        width: calc(50% - 10px);
        flex-direction: column;
        text-align: center;
    }

    .communities-counter-list .project-counter-item .icon-box{
        margin: 0 0 10px 0;
    }

    .communities-counter-list .project-counter-item .project-counter-content{
        width: 100%;
    }

    .community-images{
		max-width: 100%;
        gap: 20px;
    }

    .community-image-box-1,
    .community-image-box-2{
        width: calc(50% - 10px);
        background-size: 80% auto;
        gap: 20px;
    }

    .community-image-box-1{
        padding-left: 0;
        padding-top: 40px;
    }

    .community-image-box-2{
        padding-right: 0;
        padding-bottom: 40px;
    }

    .community-image-box-1 .quality-box{
        padding: 10px;
    }

	.community-image-box-1 .quality-box img{
		max-width: 30px;
	}

    .community-image-box-1 .quality-box p{
        font-size: 14px;
    }

	.our-purpose-image figure img{
        aspect-ratio: 1 / 1.05;
    }
    
    .purpose-counter-box .icon-box{
        margin-bottom: 10px;
    }

    .purpose-counter-box{
        max-width: 140px;
        bottom: 20px;
        left: 20px;
        padding: 15px;
    }

    .purpose-counter-content h2{
        font-size: 26px;
    }

	.purpose-body-item{
		display: block;
	}

    .purpose-body-item .icon-box{
        width: 50px;
        height: 50px;
		margin-right: 0;
        margin-bottom: 15px;
    }

    .purpose-body-item .icon-box img{
        max-width: 26px;
    }

    .purpose-body-content{
        width: 100%;
    }

	.service-single-slider{
        margin-bottom: 20px;
    }

	.service-single-slider img{
		aspect-ratio: 1 / 0.7;
	}

	.service-button-prev,
	.service-button-next{
		width: 34px;
		height: 34px;
	}

	.service-button-prev::before,
	.service-button-next::before{
        background-size: 24px auto;
	}

	.service-button-prev{
		left: 20px;
	}
	
	.service-button-next{
		right: 20px;
	}

    .service-entry h2{
        font-size: 26px;
    }

	.service-growth-list{
		margin-top: 30px;
	}

    .service-organic-image-content{
        gap: 20px;
    }

    .service-organic-content,
    .service-organic-image{
        width: 100%;
    }

    .service-organic-list{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .service-organic-image img{
        aspect-ratio: 1 / 0.9;
    }

    .service-solution-step-item{
        width: 100%;
    }

    .service-solution-step-item h2{
        font-size: 18px;
    }

    .service-entry-content{
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 20px;
    }

    .service-entry-content .purpose-body-item{
        width: 100%;
    }

    .service-entry-image img{
        aspect-ratio: 1 / 1.2;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.project-single-image{
        margin-bottom: 20px;
    }

    .project-single-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .project-entry h2{
        font-size: 26px;
    }

    .project-future-item-list .purpose-body-item,
    .project-future-image{
        width: 100%;
    }

    .project-future-image img{
        aspect-ratio: 1 / 0.55;
    }

    .project-innovating-body h3{
        font-size: 18px;
    }

    .project-entry-video-image figure img{
        aspect-ratio: 1 / 0.55;
    }

    .project-challenge-item-box{
        width: 100%;
        padding: 20px;
    }

	.team-single-image img{
        aspect-ratio: 1 / 0.99;
    }

    .team-contact-list-box{
        padding: 20px;
    }

    .team-contact-box{
        width: 100%;
    }

    .team-contact-box::before{
        top: auto;
        right: auto;
        left: 0;
        bottom: -15px;
        width: 100%;
        height: 1px;
    }

    .team-biography-list ul{
        gap: 10px;
    }

    .team-biography-list ul li{
        width: 100%;
    }

    .member-skill-list{
        gap: 20px;
    }

    .member-skill-list .skills-progress-bar{
        width: 100%;
    }

	.contact-info-list{
		gap: 20px;
	}

	.contact-info-item{
		width: 100%;
	}

	.contact-info-item .icon-box{
        margin-bottom: 20px;
    }
}