﻿/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Nihume - IT Consulting and Technology Website
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. How It Work css
09. What We Do css
10. Our Projects css
11. Our Features css
12. Our Testimonials css
13. Our FAQs css
14. Scrolling Ticker css
15. CTA Box 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. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. 404 Error Page css
33. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color					: #090915;
	--secondary-color				: #FFFFFF;
	--text-color					: #505058;
	--accent-color					: #0668FD;
	--bg-color						: #F8F9FD;
	--white-color					: #FFFFFF;
	--black-color					: #000000;
	--divider-color					: #0909151A;
	--dark-divider-color			: #FFFFFF1A;
	--error-color					: rgb(230, 87, 87);
	--default-font					: "IBM Plex Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body{
	width: 100%;
	overflow-x: clip;
}

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-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.7em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.container{
	max-width: 1700px;
}

.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;
}

.data-img-hover{
	position: relative;
	width: 100%;
}

.data-img-hover img{
	width: 100%;
	height: auto;
}

.data-img-hover canvas{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
	border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
	line-height: 1.25em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 15px 47px 15px 25px;
    overflow: hidden;
    border: none;
	transition: all 0.4s ease-in-out;
    z-index: 0;
}

.btn-default:hover{
	color: var(--white-color);
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 25px;
	width: 12px;
	height: 12px;
	background: url('../images/arrow-white.svg') no-repeat;
    background-position: center center;
    background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
    background: var(--primary-color);
	border-radius: 0;
    transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before{
	filter: brightness(1) invert(1);
}

.btn-default.btn-highlighted::after{
	background-color: var(--white-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 22px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 5px;
    right: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 12px;
	height: 12px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before{
	transform: rotate(45deg);
}

.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{
	max-width: 1880px;
	border-radius: 30px;
	margin: 0 auto;
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title.section-title-center{
	width: 100%;
	max-width: 1000px;
	text-align: center;
	margin: 0 auto;
}

.section-title.section-title-center p{
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

.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;
	display: inline-block;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	font-size: 14px;
    font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
    color: var(--text-color);
	padding: 9px 15px 9px 30px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.section-title h1{
	font-size: 70px;
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 50px;
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section{
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}

.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);
}

.dark-section .section-title h3{
	background: var(--dark-divider-color);
	border-color: var(--dark-divider-color);
	color: var(--white-color);
}

.dark-section .section-title h3::before{
	background: 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;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0px;
    z-index: 100;
}

header.main-header .container-fluid{
	padding: 0;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	border-radius: 0 0 20px 20px;
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

/* Constrain header logo width while preserving aspect ratio */
header.main-header .navbar-brand img{
	max-width: 180px;
	height: auto;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	position: relative;
	margin: 0 10px;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1em;
	padding: 15px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 10px;
	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(--white-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(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn{
    text-align: end;
}

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

/* Previously used to hide Resources and Partner menus. No longer needed
   because items are removed from HTML. */

.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(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-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(--white-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: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background-image: url('../images/hero-bg-shape.png');
	background-size: cover;
	padding: 250px 0 90px;
	margin-top: 20px;
}

.hero::before{
	content: '';
    display: block;
    position: absolute;
    left: 180px;
    top: 250px;
    background: url('../images/section-bg-shape-1.png');
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.hero::after{
	content: '';
    display: block;
    position: absolute;
    right: 180px;
    top: 40%;
    background: url('../images/section-bg-shape-2.png');
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 82px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes shape1{
	from{
		transform: translateY(0) rotate(0deg);
	  }
	to{
		transform: translateY(50px) rotate(360deg);
	}
}

.hero-content{
	position: relative;
	max-width: 830px;
	text-align: center;
	margin: 0 auto;
	z-index: 1;
}

.hero-sub-heading{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--dark-divider-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	margin-bottom: 20px;
	padding: 8px 15px 8px 8px;
}

.hero-sub-heading p{
	font-size: 14px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 0;
}

.satisfy-client-images{
	display: flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -12px;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.hero-sub-heading .satisfy-client-image{
	margin-left: -5px;
}

.satisfy-client-image:first-child{
	margin: 0;
}

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image figure img{
	width: 100%;
	max-width: 30px;
	border-radius: 50%;
}

.satisfy-client-image.add-more{
	width: 32px;
	height: 32px;
	background-color: var(--accent-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i{
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more img{
	width: 100%;
	max-width: 15px;
}

.satisfy-clients-content{
    margin-top: 15px;
}

.satisfy-clients-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-sub-heading .satisfy-client-image img{
	max-width: 20px;
}

.hero-content .section-title p{
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
}

.hero-benefits-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
	z-index: 2;
}

.hero-benefit-box{
	width: calc(33.33% - 20px);
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
}

.hero-benefit-item{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-benefit-item-content{
	width: calc(70% - 10px);
}

.hero-benefit-counter-content h3,
.hero-benefit-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.hero-benefit-counter-content p,
.hero-benefit-item-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-benefit-item .icon-box{
	width: calc(30% - 10px);
	text-align: right;
}

.hero-benefit-item .icon-box img{
	max-width: 60px;
	transition: all 0.4s ease-in-out;
}

.hero-benefit-box:hover .hero-benefit-item .icon-box img{
	transform: rotateY(180deg);
	filter: brightness(0) invert(1);
}

.hero-benefit-counter-box{
	background: var(--dark-divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 20px 20px 40px;
}

.hero-benefit-counter-content{
	width: calc(40% - 10px);
}

.hero-benefit-counter-image{
	width: calc(60% - 10px);
}

.hero-benefit-counter-image img{
	max-height: 80px;
}

.hero-benefit-box.box-3{
	padding-bottom: 0;
}

.hero-benefit-box.box-3 .hero-benefit-counter-image{
	text-align: center;
	width: 100%;
}

.hero-benefit-box.box-3 .hero-benefit-counter-image img{
	max-height: 100%;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us .section-row .section-title.section-title-center{
	max-width: 1230px;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
	background: var(--white-color);
	border-radius: 30px;
	padding: 50px;
}

.about-counter-item{
	position: relative;
	width: calc(25% - 75px);
}

.about-counter-item::before{
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.about-counter-item:nth-child(4n + 4):before,
.about-counter-item:last-child:before{
	display: none;
}

.about-counter-item img{
	max-width: 60px;
	margin-bottom: 60px;
}

.about-counter-item h2{
	font-size: 60px;
	line-height: 1em;
}

.about-counter-item p{
	margin: 10px 0 0 0;
}

.section-footer-text{
	margin-top: 60px;
	text-align: center;
}

.section-footer-text.section-satisfy-img{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.how-work-video-content .section-footer-text{
    margin: 30px 30px 0 30px;
}

.section-footer-text p{
	color: var(--text-color);
	margin-bottom: 0;
}

.section-footer-text p span{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	background: var(--accent-color);
	color: var(--primary-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 5px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p a{
	position: relative;
	font-weight: 700;
	display: inline-block;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text a:hover{
	color: var(--primary-color);
}

.section-footer-text ul{
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	color: var(--primary-color);
	line-height: 1.5em;
	font-weight: 600;
	margin-right: 5px;
}

.section-footer-text ul li:last-child{
	margin: 0;
}

.section-footer-text ul li i{
	color: var(--accent-color);
}

.dark-section .section-footer-text ul li,
.dark-section .section-footer-text a:hover,
.dark-section .section-footer-text p{
	color: var(--white-color);
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.services-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.services-item{
	position: relative;
	width: calc(25% - 22.5px);
	background: var(--bg-color);
	border-radius: 30px;
	min-height: 435px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	padding: 50px;
	overflow: hidden;
}

.services-item::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.services-item.active::before,
.services-item:hover::before{
	border-radius: 0;
	height: 100%;
}

.services-item-body,
.services-item-header{
	position: relative;
	z-index: 1;
}

.services-item-header img{
	max-width: 60px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.services-item-header h3{
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

.services-item-header h3 a{
	color: inherit;
}

.services-item-body{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
	transition: all 0.3s ease-in-out;
}

.services-item-body p{
	margin: 0 0 30px 0;
	transition: all 0.3s ease-in-out;
}

.services-item.active .services-item-header img,
.services-item:hover .services-item-header img{
	filter: brightness(0) invert(1);
}

.services-item.active .services-item-body .readmore-btn,
.services-item.active .services-item-body p,
.services-item.active .services-item-header h3,
.services-item:hover .services-item-body .readmore-btn,
.services-item:hover .services-item-body p,
.services-item:hover .services-item-header h3{
	color: var(--white-color);
}

.services-item.active .services-item-body,
.services-item:hover .services-item-body{
	border-color: var(--dark-divider-color);
}

.services-item.active .services-item-body .readmore-btn::before,
.services-item:hover .services-item-body .readmore-btn::before{
	filter: brightness(0) invert(1);
}

/************************************/
/***     07. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item{
	width: calc(33.33% - 20px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.why-choose-item.box-1{
	background: var(--white-color);
	border-radius: 30px;
	padding: 40px;
}

.why-choose-image{
	position: relative;
}

.why-choose-image figure{
	display: inline-block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
	border-radius: 30px;
	mask-image: url('../images/why-choose-image-shape.svg');
    background-image: url('../images/why-choose-image-shape.svg');
	width: 100%;
	height: 100%;
}

.why-choose-image figure img{
	width: 100%;
}

.why-choose-image-btn{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

.why-choose-image-btn a{
	position: relative;
	background: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.why-choose-image-btn a:hover{
	background: var(--accent-color);
}

.why-choose-image-btn a img{
	width: 100%;
	max-width: 12px;
	transition: all 0.3s ease-in-out;
}

.why-choose-image-btn a:hover img{
	transform: rotate(45deg);
}

.why-choose-content{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 30px;
}

.why-choose-content h2{
	width: 30%;
	font-size: 60px;
}

.why-choose-content p{
	width: 70%;
	margin: 0;
	padding-left: 10px;
}

.why-choose-item.box-2{
	position: relative;
	background: url('../images/why-choose-item-bg-box-2.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 40px;
}

.why-choose-item.box-2 .satisfy-client-image img{
	max-width: 60px;
}

.why-choose-item.box-2 .why-choose-image-btn{
	top: 0;
	right: 0;
}

.why-choose-item.box-2 .why-choose-image-btn::before{
	content: '';
    position: absolute;
    top: 0;
	right: 0;
    mask: url('../images/why-choose-box-2-shape.svg');
    -webkit-mask: url('../images/why-choose-box-2-shape.svg');
    background-color: var(--bg-color);
    mask-repeat: no-repeat;
    mask-position: right bottom;
    mask-size: cover;
    width: 130px;
    height: 130px;
    z-index: 0;
}

.why-choose-item.box-2 .why-choose-image-btn a{
	width: 60px;
	height: 60px;
	margin: 15px 15px 0 0;
}

.why-choose-item.box-2 .why-choose-image-btn a img{
	max-width: 20px;
}

.why-choose-counter-item{
	max-width: 270px;
	margin-top: 30px;
}

.why-choose-counter-item img{
	max-width: 60px;
	margin-bottom: 30px;
}

.why-choose-counter-item h2{
	font-size: 60px;
	line-height: 1em;
	color: var(--white-color);
}

.why-choose-counter-item p{
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.why-choose-item.box-3{
	gap: 40px;
}

.why-choose-box-header{
	background: var(--white-color) url('../images/why-choose-box-header-3.png') no-repeat;
	background-position: top right;
	background-size: auto;
	border-radius: 30px;
	padding: 40px;
}

.why-choose-box-header .icon-box{
	margin-bottom: 100px;
}

.why-choose-box-header .icon-box img{
	max-width: 60px;
}

.why-choose-support{
    /* Swap to real photo with subtle dark overlay for readability */
    background: linear-gradient(rgba(7,10,20,0.55), rgba(7,10,20,0.55)), url('../images/support-24x7.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 50px;
}

.why-choose-support-content,
.why-choose-support-title{
	width: calc(50% - 10px);
}

.why-choose-support-title h2{
	font-size: 60px;
	line-height: 1em;
	color: var(--white-color);
}

.why-choose-support-title h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-top: 10px;
}

.why-choose-support-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     08. How It Work css	  ***/
/************************************/

.how-it-work{
	padding: 100px 0;
}

.how-work-step-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-work-item{
	position: relative;
	width: calc(25% - 22.5px);
	background: var(--dark-divider-color);
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 390px;
	padding: 40px;
	overflow: hidden;
}

.how-work-item::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.how-work-item.active::before,
.how-work-item:hover::before{
	border-radius: 0;
	height: 100%;
}

.how-work-item-content,
.how-work-header{
	position: relative;
	z-index: 1;
}

.how-work-stpe-no{
	margin-bottom: 30px;
}

.how-work-item-title h3,
.how-work-stpe-no h3{
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.how-work-item-title h3{
	max-width: 160px;
}

.how-work-item-content{
	margin-top: 30px;
}

.how-work-item-content p{
	color: var(--white-color);
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.how-work-item.active .how-work-item-content p,
.how-work-item.active .how-work-item-title h3,
.how-work-item.active .how-work-stpe-no h3,
.how-work-item:hover .how-work-item-content p,
.how-work-item:hover .how-work-item-title h3,
.how-work-item:hover .how-work-stpe-no h3{
	color: var(--primary-color);
}

/************************************/
/***     09. What We Do css		  ***/
/************************************/

.what-we-do{
	padding: 100px 0;
}

.what-we-do-content{
	position: relative;
	text-align: center;
	z-index: 1;
}

.what-we-do .section-title p{
	max-width: 600px;
}

.what-we-btn{
	margin-top: 40px;
}

.what-we-do-box{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
	margin-top: -70px;
}

.what-we-do-box-1{
	width: calc(38% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
}

.what-we-item-1{
	width: calc(60% - 15px);
	background: var(--accent-color) url('../images/what-we-item-1-bg-shape.png') no-repeat;
	background-position: top center;
	background-size: 100% auto;
	border-radius: 30px;
	align-content: end;
	min-height: 447px;
	padding: 50px;
}

.what-we-item-1 p{
	font-size: 24px;
	line-height: 1.5em;
	color: var(--white-color);
	margin: 0;
}

.what-we-item-2{
	width: calc(40% - 15px);
	background: var(--white-color);
	border-radius: 30px;
	padding: 30px;
}

.what-we-item-2 .icon-box{
	margin-bottom: 120px;
}

.what-we-item-2 .icon-box img{
	max-width: 40px;
}

.what-we-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
}

.what-we-highlighted{
	position: relative;
	width: calc(24% - 20px);
}

.what-we-highlighted-image figure{
	position: relative;
	display: inline-block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
	border-radius: 30px;
	mask-image: url('../images/what-we-highlighted-shape.svg');
    background-image: url('../images/what-we-highlighted-shape.svg');
	width: 100%;
	height: 100%;
}

.what-we-highlighted-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 40%;
	width: 100%;
	height: 100%;
}

.what-we-highlighted-image figure img{
	width: 100%;
}

.what-we-highlighted-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 160px;
	text-align: center;
}

.what-we-highlighted-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.what-we-image{
	width: calc(60% - 15px);
}

.what-we-image figure{
	display: inline-block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
	border-radius: 30px;
	mask-image: url('../images/what-we-image-shape.svg');
    background-image: url('../images/what-we-highlighted-shape.svg');
	width: 100%;
	height: 100%;
}

.what-we-image figure img{
	width: 100%;
}

/************************************/
/***     10. Our Projects css	  ***/
/************************************/

.our-projects{
	background: var(--secondary-color);
	padding: 100px 0;
}

.project-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-item{
	width: calc(33.33% - 20px);
}

.project-item-image{
	position: relative;
	margin-bottom: 25px;
}

.project-item-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.project-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.84;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.project-item:hover .project-item-image figure img{
	transform: scale(1.08);
}

.project-item-btn{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-item-btn{
	top: 50%;
	opacity: 1;
	visibility: visible;
}

.project-item-btn a{
	background: var(--accent-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-item-btn a:hover{
	background: var(--primary-color);
}

.project-item-btn a img{
	width: 100%;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.project-item-btn a:hover img{
	transform: rotate(45deg);
}

.project-item-content{
	padding: 0 1.563vw;
}

.project-item-content ul{
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.project-item-content ul li{
	position: relative;
	padding-left: 15px;
}

.project-item-content ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
	transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.project-item-content h3{
	font-size: 20px;
}

.project-item-content h3 a{
	color: inherit;
}

/************************************/
/***     11. Our Features css	  ***/
/************************************/

.our-features{
	padding: 100px 0;
}

.feature-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item{
	width: calc(33.33% - 20px);
	background: var(--white-color);
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 60px;
	padding: 60px;
	overflow: hidden;
}

.feature-item-content h3{
	font-size: 20px;
}

.feature-item-content p{
	margin: 10px 0 0 0;
}

.feature-item-image{
	text-align: center;
}

.feature-item.feature-box-2{
	text-align: center;
}

.feature-item.feature-box-3{
	padding-bottom: 0;
}

.feature-item.feature-box-3 .feature-item-image{
	margin-bottom: -15px;
}

.feature-list{
	max-width: 1050px;
	margin: 60px auto 0;
}

.feature-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.feature-list ul li{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 10px 16px 10px 36px;
}

.feature-list ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

/************************************/
/***   12. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	padding: 100px 0;
}

.our-testimonials-content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 70px);
}

.satisfy-client-box{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.satisfy-client-box .satisfy-client-image figure img{
	max-width: 40px;
}

.satisfy-client-box-content{
	max-width: 135px;
}

.satisfy-client-box-content p{
	color: var(--white-color);
	line-height: 1.4em;
	margin: 0;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	background: var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-quote{
	margin-bottom: 40px;
}

.testimonial-quote img{
	width: 100%;
	max-width: 50px;
}

.testimonial-item-content p{
	color: var(--white-color);
	font-size: 18px;
	margin: 0;
}

.testimonial-author{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.testimonial-author .author-image{
	margin: 0 15px 0 0;
}

.testimonial-author .author-image figure{
	display: block;
	border-radius: 50%;
}

.testimonial-author .author-image img{
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-author .author-content{
	width: calc(100% - 65px);
}

.testimonial-author .author-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.testimonial-author .author-content p{
	color: var(--white-color);
	margin: 0;
}

.testimonial-slider .testimonial-pagination{
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 10px;
    width: 10px;
    background: var(--dark-divider-color);
	opacity: 1;
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--white-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border: 1px solid var(--white-color);
	height: 24px;
	width: 24px;
}

/************************************/
/***   	   13. Our FAQs css		  ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.our-faqs-content{
	position: sticky;
	top: 40px;
	margin-right: 5.208vw;
}

.faq-accordion .accordion-item{
	position: relative;
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
    background: var(--accent-color);
    color: var(--white-color);
	padding: 20px 55px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 30px;
    top: 50%;
	font-size: 18px;
    transform: translateY(-50%);
	color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(45deg);
	color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body{
	border-top: 1px solid var(--dark-divider-color);
	background: var(--accent-color);
	padding: 20px 55px 20px 30px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/***   14. Scrolling Ticker css — removed (unused)  ***/
/* The scrolling ticker components were removed from HTML. 
   Former styles and keyframes are pruned to reduce CSS size. */

/************************************/
/***   		15. CTA Box css		  ***/
/************************************/

.cta-box{
	position: relative;
	padding: 100px 0;
}

.cta-box::before{
	content: '';
    display: block;
    position: absolute;
    left: 150px;
    top: 150px;
    background: url('../images/section-bg-shape-1.png');
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.cta-box::after{
	content: '';
    display: block;
    position: absolute;
    right: 150px;
    bottom: 150px;
    background: url('../images/section-bg-shape-2.png');
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 82px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.cta-box-box{
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.cta-box-box .section-title{
	margin-bottom: 60px;
}

.cta-box-body{
	background: var(--dark-divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px;
	max-width: 630px;
	margin: 0 auto;
	padding: 30px;
}

.cta-box-item{
	position: relative;
	width: calc(50% - 50px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.cta-box-item::before{
	content: '';
	position: absolute;
	right: -25px;
	top: 0;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.cta-box-item:nth-child(2n + 2):before{
	display: none;
}

.cta-box-item .icon-box{
	background: var(--dark-divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.cta-box-item .icon-box img{
	width: 100%;
	max-width: 25px;
}

.cta-box-item:hover .icon-box{
	background: var(--primary-color);
}

.cta-box-item-content{
	text-align: left;
	width: calc(100% - 65px);
}

.cta-box-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.cta-box-item-content p{
	color: var(--white-color);
	margin: 0;
}

.cta-box-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.cta-box-item-content p a:hover{
	color: var(--primary-color);
}

/************************************/
/*** 	   16. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	background: var(--secondary-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a,
.post-featured-image figure{
    cursor: none;	
    display: block;
	border-radius: 30px;
    overflow: hidden;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.735;
    object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.08);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

/************************************/
/*** 	  	17. Footer css		  ***/
/************************************/

.main-footer{
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    padding: 100px 0 0;
    /* create visual breathing room from preceding section */
    margin-top: 60px;
    margin-bottom: 20px;
}

.footer-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 80px;
    margin-bottom: 80px;
}

.footer-header-title h2{
    font-size: 80px;
	font-weight: 400;
	line-height: 1em;
    text-transform: uppercase;
	color: var(--white-color);
    cursor: none;
}

.footer-header-title a{
	color: inherit;
	cursor: none;
}

.footer-header-btn a{
	display: inline-block;
}

.footer-header-btn a img{
	width: 60px;
	transition: all 0.3s ease-in-out;
}

.footer-header-btn a:hover img{
	transform: rotate(45deg);
}

.footer-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 100px;
}

.footer-contact-box{
	position: relative;
	width: calc(50% - 50px);
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
}

.footer-contact-box::before{
	content: '';
	position: absolute;
	right: -50px;
	top: 0;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.footer-contact-links{
	max-width: 40%;
}

.footer-links h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links p{
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-links p:last-child{
	margin: 0;
}

.footer-links p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links p a:hover{
	color: var(--accent-color);
}

.footer-privacy-policy{
	width: calc(50% - 50px);
	padding-left: 5.208vw;
}

.footer-newsletter-form form{
	width: 100%;
}

.footer-newsletter-form .form-group{
	width: 100%;
    position: relative;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
    display: flex;
}

.footer-newsletter-form .form-group .form-control{
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 16px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn{
	background: transparent;
    border: none;
	padding: 16px 20px;
}

.footer-newsletter-form .form-group .newsletter-btn img{
	width: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
    transform: rotate(45deg);
}

.footer-copyright{
    border-top: 1px solid var(--dark-divider-color);
    padding: 60px 0;
    margin-top: 80px;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
}

.footer-menu ul li{
	display: inline-block;
	line-height: 1.5em;
	color: var(--white-color);
	text-transform: capitalize;
}

.footer-menu ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	18. About Us Page css	  ***/
/************************************/

.page-header{
	background-image: url('../images/page-header-bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 265px 0 150px;
	margin-top: 20px;
}

.page-header-box{
	position: relative;
	text-align: center;
}

.page-header-box::before{
	content: '';
	display: block;
	position: absolute;
	left: 30px;
	top: -130px;
	background: url('../images/section-bg-shape-1.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 103px;
	height: 100px;
	animation: shape1 20s infinite linear;
	animation-direction: alternate;
	z-index: 0;
}

.page-header-box::after{
	content: '';
	display: block;
	position: absolute;
	right: 30px;
	bottom: -70px;
	background: url('../images/section-bg-shape-2.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 72px;
	height: 100px;
	animation: shape1 20s infinite linear;
	animation-direction: alternate;
	z-index: 0;
}

.page-header-box h1{
	display: inline-block;
	font-size: 70px;
	font-weight: 400;
	letter-spacing: -0.03em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	position: relative;
	margin: 0;
	padding: 0;
	justify-content: center;
	z-index: 1;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: var(--white-color);
}

.our-approach{
	background: var(--white-color);
	padding: 100px 0;
}

.approach-image-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.approach-review-box{
	width: calc(38% - 15px);
}

.review-box{
	background: var(--primary-color) url('../images/approach-review-box-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	margin-bottom: 30px;
	padding: 30px;
}

.review-box .satisfy-client-image figure img{
	max-width: 44px;
}

.review-box .satisfy-client-image.add-more{
	width: 46px;
	height: 46px;
}

.review-box .satisfy-client-box-content{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
	max-width: 100%;
}

.approach-review-counter-box{
	background: var(--bg-color);
	border-radius: 30px;
	padding: 40px;
}

.approach-review-counter-image{
	background: var(--white-color);
	text-align: center;
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 40px;
}

.approach-review-counter-image img{
	width: 100%;
	max-width: 180px;
	margin-bottom: -30px;
}

.approach-review-counter-image h2{
	font-size: 30px;
	font-weight: 400;
}

.approach-review-counter-image p{
	margin: 20px 0 0;
}

.approach-review-counter-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.approach-review-counter-content p{
	margin-bottom: 30px;
}

.approach-image{
	width: calc(62% - 15px);
	border-radius: 30px;
	overflow: hidden;
}

.approach-image figure{
	display: block;
	height: 100%;
}

.approach-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.27;
	object-fit: cover;
}

.approach-content-box{
	margin-left: 20px;
}

.approach-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.approach-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.approach-item-header{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.approach-item .icon-box{
	margin-right: 20px;
}

.approach-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.approach-item-title{
	width: calc(100% - 60px);
}

.approach-item-title h3{
	font-size: 20px;
}

.approach-item-content p{
	margin: 0;
}

.approach-btn{
	margin-top: 60px;
}

.our-success{
	padding: 100px 0;
}

.our-success-image{
	height: 100%;
	border-radius: 30px;
	margin-right: 20px;
	overflow: hidden;
}

.our-success-image figure{
	display: block;
	height: 100%;
}

.our-success-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.807;
	object-fit: cover;
}

.success-content-box{
	background-image: url('../images/success-content-box-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 50px;
}

.skills-progress-bar .skillbar{
	margin-bottom: 40px;
}

.skills-progress-bar .skillbar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-title,
.skills-progress-bar .skillbar .skill-no{
	font-size: 20px;
	color: var(--white-color);
	line-height: normal;
	font-weight: 500;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 15px;
	background: var(--dark-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(--accent-color);
	border-radius: 100px;
}

.success-btn{
	margin-top: 60px;
}

.our-expertise{
	padding: 100px 0;
}

.expertise-item{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	gap: 60px 30px;
	background-color: var(--dark-divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.expertise-item.box-1 .expertise-image{
	border: 1px solid var(--dark-divider-color);
	border-radius: 20px;
	padding: 30px;
	margin: 0 auto;
}

.expertise-image figure{
	display: block;
}

.expertise-image img{
	width: 100%;
	object-fit: cover;
}

.expertise-item.box-1 .expertise-image img{
	max-width: 285px;
}

.expertise-item-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.expertise-item-content p{
	color: var(--white-color);
	margin: 15px 0 0;
}

.expertise-item.box-4,
.expertise-item.box-5{
	align-items: center;
	flex-direction: row;
}

.expertise-item.box-4 .expertise-item-content{
	width: calc(54% - 15px);
}

.expertise-item.box-4 .expertise-list{
	width: calc(46% - 15px);
	margin-right: -40px;
}

/* Expertise list tickers removed */

.expertise-item.box-5 .expertise-item-content{
	width: calc(100% - 310px);
}

.expertise-item.box-5 .expertise-image{
	max-width: 280px;
}

.our-expertise .section-footer-text{
	margin-top: 30px;
}

.our-team{
	padding: 100px 0;
}

.team-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	border-radius: 30px;
	overflow: hidden;
}

.team-image a,
.team-image a figure{
	display: block;
	cursor: none;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.193;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-item-body{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	background: var(--white-color);
	border-radius: 10px;
	text-align: center;
	padding: 30px;
	overflow: hidden;
	z-index: 1;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 10px 0 0;
}

.team-social-icon{
	opacity: 0;
	visibility: hidden;
	height: 0;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon{
	opacity: 1;
	visibility: visible;
	height: 40px;
	margin-top: 20px;
}

.team-social-icon ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
    background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	font-size: 20px;
	color: inherit;
}

/************************************/
/*** 	19. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0;
}

.page-services .services-item{
	background: var(--white-color);
}

/************************************/
/*** 	20. Service Single css	  ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 40px;
    margin-right: 2.344vw;
}

.page-category-list{
    background: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-category-list h3{
	font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
	background: var(--accent-color);
    padding: 20px 40px;
}

.page-category-list ul{
    list-style: none;
    margin: 0;
    padding: 40px;
}

.page-category-list ul li{
    border-bottom: 1px solid var(--divider-color);
    line-height: 1.2em;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-category-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: inherit;
	padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover{
    color: var(--primary-color);
}

.page-category-list ul li a::before{
	content: '';
    position: absolute;
	right: 0;
	top: 4px;
    background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover:before{
	transform: rotate(45deg);
}

.sidebar-cta-box{
	background: var(--primary-color) url('../images/sidebar-cta-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
    padding: 40px;
}

.sidebar-cta-logo{
	margin-bottom: 60px;
}

.sidebar-cta-logo img{
	width: 100%;
	max-width: 80px;
}

.sidebar-cta-content{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.sidebar-cta-content h3{
	font-size: 40px;
	color: var(--white-color);
}

.sidebar-cta-content p{
	margin: 15px 0 0;
	color: var(--white-color);
}

.sidebar-cta-contact-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-cta-contact-list ul li{
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	color: var(--white-color);
	margin-bottom: 20px;
}

.sidebar-cta-contact-list ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-list ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-list ul li a:hover{
	color: var(--accent-color);
}

.sidebar-cta-contact-list ul li img{
	width: 100%;
	max-width: 20px;
}

.sidebar-cta-btn{
	margin-top: 60px;
}

.sidebar-cta-btn a{
	display: block;
	padding: 15px;
	text-align: center;
}

.sidebar-cta-btn a::before{
	display: none;
}

.page-single-image{
	border-radius: 30px;
    margin-bottom: 40px;
	overflow: hidden;
}

.page-single-image figure{
    display: block;
}

.page-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.52;
    object-fit: cover;
}

.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;
	font-weight: 400;
    margin-bottom: 20px;
}

.service-entry h2:last-child{
	margin-bottom: 0;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.service-entry ul{
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.service-entry ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.service-solutions-box,
.service-why-choose-box,
.service-benefit-box{
	margin-top: 60px;
}

.service-solution-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.service-solution-item{
	width: calc(50% - 20px);
}

.service-solution-item h3{
	position: relative;
	padding-left: 25px;
}

.service-solution-item h3::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.service-why-choose-image{
	border-radius: 30px;
	margin: 40px 0;
	overflow: hidden;
}

.service-why-choose-image figure{
	display: block;
}

.service-why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.451;
	object-fit: cover;
}

.service-benefit-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.service-benefit-image,
.service-benefit-content{
	width: calc(50% - 15px);
	border-radius: 30px;
	overflow: hidden;
}

.service-benefit-image figure{
	display: block;
	height: 100%;
}

.service-benefit-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
}

.service-benefit-content{
	background: var(--white-color);
	padding: 40px;
}

.service-benefit-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.service-benefit-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/************************************/
/*** 	 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;
    color: var(--primary-color);
    background: var(--secondary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
	color: var(--white-color);
    background: var(--accent-color);
}

/************************************/
/*** 	  22. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0px;
}

.post-single-meta{
	margin-top: 5px;
}

.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.5;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1400px;
	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: 400;
	line-height: 1.1em;
	margin: 0 0 0.4em;
}

.post-entry h1{
	font-size: 70px;
}

.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.6em;
    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(--accent-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 30px;
    padding: 30px 30px 30px 90px;
    margin: 30px 0;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--bg-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: 700;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
	border-radius: 10px;
    color: var(--bg-color);
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-color: var(--primary-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);
	border-radius: 10px;
    color: var(--bg-color);
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	23. Projects Page css	  ***/
/************************************/

.page-projects{
	padding: 100px 0;
}

/************************************/
/*** 	24. Project Single css	  ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-category-list ul li{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.page-category-list ul li span{
	font-weight: 500;
	color: var(--primary-color);
}

.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;
	font-weight: 400;
    margin-bottom: 20px;
}

.project-entry h2:last-child{
	margin-bottom: 0;
}

.project-entry h3{
	font-size: 20px;
	line-height: normal;
	margin-bottom: 15px;
}

.project-entry h3:last-child{
	margin-bottom: 0;
}

.project-entry ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-entry ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.project-solutions-box,
.project-results-box,
.project-problems-box{
	margin-top: 60px;
}

.project-solution-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-solution-image{
	width: calc(37% - 15px);
	border-radius: 30px;
	overflow: hidden;
}

.project-solution-image figure{
	display: block;
	height: 100%;
}

.project-solution-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.32;
	object-fit: cover;
}

.project-solution-content{
	width: calc(63% - 15px);
}

.project-solution-blockquotes{
	background: var(--accent-color) url('../images/project-solution-blockquotes-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 10px;
	padding: 40px;
	margin: 40px 0;
}

.project-solution-blockquotes .icon-box{
	margin-bottom: 30px;
}

.project-solution-blockquotes .icon-box img{
	width: 100%;
	max-width: 40px;
}

.project-solution-blockquotes p{
	color: var(--white-color);
}

.project-solution-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.project-solution-list ul li{
	width: calc(50% - 7.5px);
	margin: 0;
}

.project-results-steps{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 0;
	margin-top: 40px;
}

.results-step-item{
	width: 25%;
}

.results-step-no{
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	padding: 0 30px 30px 0;
	margin-bottom: 40px;
}

.results-step-no::before{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 10px;
	height: 10px;
	border: 2px solid var(--accent-color);
	background: var(--bg-color);
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
}

.results-step-item:hover .results-step-no::before{
	background: var(--accent-color);
}

.results-step-no h3{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.results-step-item:hover .results-step-no h3{
	color: var(--primary-color);
}

.results-step-content{
	padding-right: 30px;
}

.project-problem-item-list{
	margin-top: 40px;
}

.project-problem-item{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 100px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.project-problem-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.problem-item-content{
	min-width: 40%;
}

/************************************/
/*** 	  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: 40px;
}

.team-single-image figure{
	display: block;
	border-radius: 30px;
}

.team-single-image img{
	width: 100%;
	aspect-ratio: 1 / 1.13;
    object-fit: cover;
}

.team-member-about,
.member-professional-bio,
.team-skills-box{
	margin-bottom: 60px;
}

.team-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-contact-item{
	width: calc(33.33% - 20px);
	background-color: var(--white-color);
	border-radius: 30px;
	padding: 40px;
	display: flex;
	align-items: center;
}

.team-contact-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.team-contact-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.team-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.team-contact-content{
	width: calc(100% - 75px);
}

.team-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-contact-content p{
	margin: 0;
}

.member-biography-counter-list{
	background: var(--primary-color) url('../images/member-bio-counter-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	padding: 50px;
}

.member-bio-counter-item{
	position: relative;
	width: calc(25% - 37.5px);
	text-align: center;
}

.member-bio-counter-item:before{
	content: '';
	position: absolute;
	top: 0;
	right: -25px;
	bottom: 0;
	background: var(--dark-divider-color);
	height: 100%;
	width: 1px;
}

.member-bio-counter-item:last-child:before,
.member-bio-counter-item:nth-child(4n + 4):before{
	display: none;
}

.member-bio-counter-item h2{
	color: var(--secondary-color);
	font-size: 50px;
	font-weight: 400;
	margin-bottom: 10px;
}

.member-bio-counter-item p{
	color: var(--secondary-color);
	margin: 0;
}

.team-skills-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-skills-list .skills-progress-bar{
	width: calc(50% - 15px);
}

.team-skills-list .skills-progress-bar .skillbar .skill-title,
.team-skills-list .skills-progress-bar .skillbar .skill-no{
	color: var(--primary-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress{
	background: var(--white-color);
}

.contact-us-form.team-contact-form{
	margin-right: 0;
}

/************************************/
/***   27. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	background-color: var(--secondary-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item-content p{
	color: var(--text-color);
}

.page-testimonials .testimonial-author{
	border-color: var(--divider-color);
}

.page-testimonials .testimonial-author .author-content h3{
	color: var(--primary-color);
}

.page-testimonials .testimonial-author .author-content p{
	color: var(--text-color);
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery{
    padding: 100px 0px 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: 30px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0px 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: 30px;
	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(--secondary-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.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	  30. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs .page-single-faqs{
	margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child{
	margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-form{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 60px;
	margin-right: 30px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 19px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
	opacity: 50%;
}

.contact-us-sidebar .sidebar-cta-box{
	margin-bottom: 30px;
}

.google-map iframe{
	width: 100%;
	height: 360px;
	border-radius: 30px;
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0px;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 40%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1880px){

	.bg-section{
		width: calc(100% - 40px);
		margin: 0 20px;
	}

	.hero,
	.page-header{
		margin-top: 20px;
	}

	.main-footer{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 1440px){

	.container{
		max-width: 1300px;
	}

	.main-menu ul li{
		margin: 0 5px;
	}
	
	.hero::before{
		left: 100px;
	}

	.hero::after{
		right: 100px;
	}

	.hero-benefit-box{
		padding: 30px;
	}

	.hero-benefit-counter-box{
		border-radius: 20px;
		padding: 20px;
	}

	.services-item{
		padding: 30px;
	}

	.why-choose-box-header .icon-box{
		margin-bottom: 50px;
	}

	.why-choose-item.box-2,
	.why-choose-item.box-1,
	.why-choose-box-header,
	.why-choose-support{
		padding: 30px;
	}

	.how-work-item{
		min-height: 350px;
		padding: 30px;
	}

	.what-we-item-1{
		min-height: 332px;
		padding: 30px;
	}

	.what-we-item-1 p{
		font-size: 22px;
	}

	.what-we-item-2{
		padding: 20px;
	}

	.what-we-item-2 .icon-box{
		margin-bottom: 80px;
	}

	.feature-item{
		padding: 40px;
		gap: 40px;
	}

	.feature-list ul{
		gap: 20px;
	}

	.testimonial-item{
		padding: 30px;
	}

	.testimonial-quote{
		margin-bottom: 30px;
	}

	.testimonial-author{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-faqs-content{
		margin-right: 0;
	}

	.cta-box::before{
		left: 100px;
    	top: 100px;
	}

	.cta-box::after{
		right: 100px;
    	bottom: 100px;
	}

	.post-item{
		padding: 20px;
	}

	.approach-review-counter-box{
		padding: 30px;
	}

	.approach-review-counter-image{
		padding: 20px;
		margin-bottom: 30px;
	}

	.approach-content-box{
		margin-left: 0px;
	}

	.approach-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.approach-item-header{
		margin-bottom: 15px;
	}

	.approach-btn{
		margin-top: 30px;
	}

	.success-content-box{
		padding: 40px;
	}

	.expertise-item{
		padding: 30px;
	}

	.expertise-item.box-4 .expertise-list{
		margin-right: -30px;
	}

	.team-image{
		border-radius: 20px;
	}

	.team-item-body{
		bottom: 20px;
		left: 20px;
		right: 20px;
		padding: 20px;
	}

	.team-social-icon ul li{
		margin-right: 5px;
	}

	.team-social-icon ul li a{
		width: 38px;
		height: 38px;
	}

	.project-solution-blockquotes{
		padding: 30px;
	}

	.project-solution-blockquotes .icon-box{
		margin-bottom: 20px;
	}
	
	.results-step-no{
		padding: 0 20px 20px 0;
		margin-bottom: 30px;
	}

	.results-step-content{
		padding-right: 20px;
	}

	.problem-item-content{
		min-width: 55%;
	}

	.team-contact-item{
		padding: 25px;
	}

	.team-contact-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.team-contact-item .icon-box img{
		max-width: 26px;
	}

	.team-contact-content{
		width: calc(100% - 60px);
	}

	.team-contact-content h3{
		margin-bottom: 5px;
	}

	.member-biography-counter-list{
		gap: 30px;
		padding: 30px;
	}

	.member-bio-counter-item{
		width: calc(25% - 22.5px);
	}

	.member-bio-counter-item:before{
		right: -15px;
	}

	.member-bio-counter-item h2{
		font-size: 40px;
		margin-bottom: 10px;
	}

	.member-bio-counter-item p{
		font-size: 14px;
	}

	.contact-us-form{
		margin-right: 15px;
	}
}

@media only screen and (max-width: 1366px){

	.our-testimonials-content{
		display: block;
		height: auto;
		margin-bottom: 40px;
	}



	.footer-contact-box{
		gap: 50px;
	}

	.project-solution-blockquotes{
        padding: 20px;
    }

	.project-solution-blockquotes .icon-box{
        margin-bottom: 10px;
    }

	.team-contact-item{
		border-radius: 20px;
		padding: 20px;
	}

	.member-biography-counter-list{
		padding: 20px;
	}
}

@media only screen and (max-width: 1024px){

	header.main-header{
		top: 0;
	}

	header.main-header .header-sticky.active{
		border-radius: 0;
	}

	.main-menu ul li{
		margin: 0px;
	}

	.main-menu ul li a{
		padding: 15px 10px !important;
	}	

	.btn-default{
		padding: 12px 40px 12px 20px;
	}

	.btn-default::before{
		width: 10px;
		height: 10px;
		right: 20px;
	}

	.bg-section{
		width: 100%;
		border-radius: 0;
		margin: 0px;
	}

	.hero::before{
		left: 30px;
	}

	.hero::after{
		right: 30px;
	}

	.hero-benefits-list{
		gap: 20px;
	}

	.hero-benefit-box{
		width: calc(33.33% - 13.33px);
		border-radius: 20px;
		padding: 20px;
	}

	.about-us-body{
		border-radius: 20px;
		padding: 30px;
		gap: 50px;
	}

	.about-counter-item{
		width: calc(25% - 37.5px);
	}

	.about-counter-item::before{
		right: -25px;
	}

	.section-footer-text{
		margin-top: 30px;
	}

	.section-footer-text ul{
		margin: 5px 0 0 0;
	}

	.services-item{
		width: calc(50% - 15px);
		border-radius: 20px;
		min-height: 380px;
	}

	.why-choose-item{
		width: calc(50% - 15px);
	}

	.why-choose-support,
	.why-choose-box-header,
	.why-choose-item.box-2,
	.why-choose-item.box-1{
		border-radius: 20px;
	}

	.how-work-item{
		width: calc(50% - 15px);
		border-radius: 20px;
	}

	.how-work-item{
		min-height: 300px;
	}

	.what-we-do-box{
		gap: 20px;
	}

	.what-we-do-box-1{
    	width: calc(38% - 13.33px);
		gap: 20px;
	}

	.what-we-item-1{
		width: calc(60% - 10px);
		border-radius: 20px;
	}

	.what-we-item-2{
		width: calc(40% - 10px);
		border-radius: 20px;
	}

	.what-we-highlighted{
		width: calc(24% - 13.33px);
	}

	.what-we-image{
		width: calc(60% - 10px);
	}

	.what-we-item-1 p,
	.what-we-highlighted-content h3,
	.what-we-item-content h3{
		font-size: 18px;
	}

	.project-item-image figure{
		border-radius: 20px;
	}

	.project-item-btn a{
		width: 60px;
		height: 60px;
	}

	.project-item-btn a img{
		max-width: 18px;
	}

	.project-item-content{
		padding: 0 5px;
	}

	.feature-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-item{
		border-radius: 20px;
	}

	.our-faqs-content{
		position: initial;
		margin-bottom: 40px;
	}

	.cta-box-box .section-title{
		margin-bottom: 30px;
	}

	.post-featured-image a,
	.post-featured-image figure,
	.post-item{
		border-radius: 20px;
	}

	.footer-box{
		gap: 50px;
	}

	.footer-contact-box{
		width: calc(50% - 25px);
		gap: 30px;
	}

	.footer-contact-box::before{
		right: -25px;
	}

	.footer-privacy-policy{
		width: calc(50% - 25px);
	}

	.approach-image-box{
		margin-bottom: 30px;
	}

	.review-box,
	.approach-review-counter-box,
	.approach-review-counter-image,
	.approach-image{
		border-radius: 20px;
	}

	.review-box,
	.approach-review-counter-box{
		padding: 20px;
	}

	.approach-image img{
		aspect-ratio: 1 / 0.98;
	}

	.our-success-image{
		height: auto;
		border-radius: 20px;
		margin: 0 0 30px;
	}

	.success-content-box{
		border-radius: 20px;
		padding: 30px;
	}

	.skills-progress-bar .skillbar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.success-btn{
		margin-top: 30px;
	}

	.expertise-item{
		gap: 40px 30px;
		border-radius: 20px;
	}

	.expertise-item.box-1 .expertise-image img{
		max-width: 245px;
	}

	.expertise-item.box-4{
		flex-direction: column;
	}

	.expertise-item.box-4 .expertise-item-content{
		width: 100%;
	}

	.expertise-item.box-4 .expertise-list{
		width: calc(100% + 60px);
		margin: 0 -30px;
	}

	.our-expertise .section-footer-text{
		margin-top: 10px;
	}

	.team-item-body{
		padding: 15px;
	}

	.page-single-sidebar{
		margin: 0;
	}

	.page-category-list{
		border-radius: 20px;
	}

	.page-category-list h3{
		padding: 15px 30px;
	}

	.page-category-list ul{
		padding: 30px;
	}

	.sidebar-cta-box{
		border-radius: 20px;
		padding: 30px;
	}

	.sidebar-cta-logo{
		margin-bottom: 40px;
	}

	.sidebar-cta-logo img{
		max-width: 60px;
	}

	.sidebar-cta-content{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.sidebar-cta-content h3{
		font-size: 34px;
	}

	.sidebar-cta-content p{
		margin-top: 10px;
	}

	.sidebar-cta-contact-list ul li{
		gap: 10px;
		font-size: 18px;
		margin-bottom: 15px;
	}

	.sidebar-cta-btn{
		margin-top: 30px;
	}

	.sidebar-cta-btn a{
		padding: 12px;
	}

	.page-single-image{
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-single-image img{
		aspect-ratio: 1 / 0.65;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry ul{
		margin-top: 30px;
	}

	.service-entry ul li{
		margin-bottom: 10px;
	}

	.service-solutions-box,
	.service-why-choose-box,
	.service-benefit-box{
		margin-top: 40px;
	}

	.service-why-choose-image{
		border-radius: 20px;
		margin: 30px 0;
	}

	.service-benefit-body{
		gap: 20px;
		margin: 30px 0;
	}
	
	.service-benefit-image,
	.service-benefit-content{
		width: calc(50% - 10px);
		border-radius: 20px;
	}

	.service-benefit-content{
		padding: 20px;
	}

	.service-benefit-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.post-image figure,
	.post-image img,
	.post-entry blockquote{
		border-radius: 20px;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-entry h3{
		margin-bottom: 10px;
	}

	.project-solutions-box,
	.project-results-box,
	.project-problems-box{
		margin-top: 40px;
	}

	.project-solution-image{
		width: 100%;
		border-radius: 20px;
	}

	.project-solution-image img{
		aspect-ratio: 1 / 0.56;
	}

	.project-solution-content{
		width: 100%;
	}

	.project-solution-blockquotes{
		margin: 30px 0;
	}

	.project-results-steps{
		gap: 30px 0;
		margin-top: 30px;
	}

	.results-step-item{
		width: 50%;
	}

	.results-step-no{
		margin-bottom: 20px;
	}

	.project-problem-item{
		gap: 20px 30px;
	}

	.problem-item-content{
        min-width: 70%;
    }

	.team-single-image figure{
		border-radius: 20px;
	}

	.team-member-about,
	.member-professional-bio,
	.team-skills-box{
		margin-bottom: 40px;
	}
	
	.team-contact-item{
		width: calc(50% - 15px);
		border-radius: 20px;
	}
	
	.team-skills-list .skills-progress-bar .skillbar .skill-title,
	.team-skills-list .skills-progress-bar .skillbar .skill-no{
		font-size: 18px;
	}

	.page-gallery-box .photo-gallery figure,
	.page-gallery-box .photo-gallery img{
		border-radius: 20px;
	}

	.video-gallery-image a::before,
	.video-gallery-image img{
		border-radius: 20px;
	}
	
	.contact-us-form{
		border-radius: 20px;
		margin-right: 0;
		padding: 40px;
	}

	.google-map iframe{
		border-radius: 20px;
	}
}

@media only screen and (max-width: 991px){

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}
	
	.section-row{
		margin-bottom: 40px;
	}

	.section-title.section-title-center{
		max-width: 100%;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		padding: 8px 12px 8px 25px;
	}

	.section-title h3::before{
		width: 6px;
		height: 6px;
		left: 12px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.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: 170px 0 50px;
	}

	.hero::before{
		top: 150px;
		width: 80px;
        height: 77px;
        opacity: 30%;
	}

	.hero::after{
		top: 25%;
        width: 52px;
        height: 80px;
        opacity: 30%;
    }

	.hero-benefits-list{
		margin-top: 50px;
	}

	.hero-benefit-box{
		width: calc(50% - 10px);
	}

	.hero-benefit-item-content{
		width: calc(80% - 10px);
	}

	.hero-benefit-item .icon-box{
		width: calc(20% - 10px);
	}

	.hero-benefit-item .icon-box img{
		max-width: 50px;
	}

	.hero-benefit-counter-content h3,
	.hero-benefit-item-content h3{
		margin-bottom: 10px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-counter-item{
        width: calc(50% - 25px);
    }

	.about-counter-item:nth-child(4n + 4):before{
		display: block;
	}

	.about-counter-item:nth-child(2n + 2):before{
		display: none;
	}

	.about-counter-item img{
		max-width: 50px;
		margin-bottom: 30px;
	}

	.about-counter-item h2{
		font-size: 45px;
	}

	.our-services{
		padding: 50px 0;
	}

	.services-item-header img{
		max-width: 50px;
		margin-bottom: 20px;
	}

	.services-item{
        min-height: 350px;
    }

	.services-item-body{
		margin-top: 20px;
		padding-top: 20px;
	}

	.services-item-body p{
		margin: 0 0 20px 0;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-item.box-2,
	.why-choose-item.box-1,
	.why-choose-box-header,
	.why-choose-support{
        padding: 20px;
    }

	.why-choose-counter-item img{
		max-width: 50px;
		margin-bottom: 20px;
	}

	.why-choose-support-title h2,
	.why-choose-counter-item h2,
	.why-choose-content h2{
		font-size: 45px;
	}

	.why-choose-support-content p,
	.why-choose-content p{
		font-size: 14px;
	}

	.why-choose-item.box-2 .satisfy-client-image img{
		max-width: 45px;
	}

	.why-choose-box-header .icon-box{
		margin-bottom: 30px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do .section-title p{
		max-width: 100%;
	}

	.what-we-btn{
		margin-top: 30px;
	}

	.what-we-do-box{
		margin-top: 30px;
	}

	.what-we-do-box-1{
		width: 100%;
	}

	.what-we-highlighted{
        width: 100%;
    }

	.our-projects{
		padding: 50px 0;
	}

	.project-item{
		width: calc(50% - 15px);
	}

	.project-item-image{
		margin-bottom: 20px;
	}

	.project-item-content ul{
		margin-bottom: 15px;
	}

	.our-features{
		padding: 50px 0;
	}

	.feature-item{
		width: calc(50% - 15px);
		gap: 30px;
	}

	.feature-list ul{
        gap: 10px;
    }

	.feature-list ul li{
		padding: 8px 12px 8px 25px;
	}

	.feature-list ul li::before{
		left: 12px;
		width: 6px;
		height: 6px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.our-testimonials-content{
		margin-bottom: 30px;
	}

	.testimonial-quote img{
		max-width: 40px;
	}

	.testimonial-item-content p{
		font-size: 16px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 15px 50px 15px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 20px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px 20px;
	}



	.cta-box{
		padding: 50px 0;
	}

	.cta-box::before{
		top: 50px;
		left: 30px;
		width: 80px;
        height: 77px;
        opacity: 30%;
	}

	.cta-box::after{
		right: 40px;
        width: 52px;
        height: 80px;
        opacity: 30%;
    }

	.cta-box-body{
		border-radius: 20px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.main-footer{
		padding: 50px 0 0;
		margin-top: 40px; /* smaller gap on small screens */
	}

	.footer-header{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.footer-header-title h2{
		font-size: 50px;
	}

	.footer-header-btn a img{
    	width: 40px;
	}

	.footer-privacy-policy{
		padding-left: 0;
	}

	.footer-privacy-policy,
	.footer-contact-box{
		width: 100%;
	}

	.footer-contact-box::before{
		display: none;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.footer-menu ul{
		gap: 10px 15px;
	}

	.page-header{
		padding: 160px 0 90px;
	}

	.page-header-box::before{
		top: -50px;
		left: 15px;
        width: 70px;
        height: 67px;
        opacity: 30%;
	}

	.page-header-box::after{
		bottom: 0;
		right: 15px;
        width: 42px;
        height: 70px;
        opacity: 30%;
    }

	.page-header-box h1{
		font-size: 50px;
	}
	
	.our-approach{
		padding: 50px 0;
	}

	.review-box .satisfy-client-box-content{
		margin-top: 15px;
		padding-top: 15px;
	}

	.approach-review-counter-image img{
		margin-bottom: -20px;
	}

	.approach-review-counter-image h2{
		font-size: 26px;
	}

	.approach-review-counter-image p{
		margin-top: 10px;
	}

	.approach-review-counter-content p{
		margin-bottom: 20px;
	}

	.approach-item-header{
		margin-bottom: 10px;
	}

	.our-success{
		padding: 50px 0;
	}

	.success-content-box{
		padding: 30px 20px;
	}

	.our-expertise{
		padding: 50px 0;
	}

	.expertise-item{
		padding: 20px;
		gap: 30px;
	}
	
	.expertise-item.box-1 .expertise-image{
		padding: 20px;
		border-radius: 12px;
	}

	.expertise-item.box-1 .expertise-image img{
		max-width: 190px;
	}

	.expertise-item-content p{
		margin-top: 10px;
	}

	.expertise-item.box-4 .expertise-list{
		width: calc(100% + 40px);
		margin: 0 -20px;
	}



	.expertise-item.box-5 .expertise-item-content{
		width: calc(100% - 220px);
	}
	
	.expertise-item.box-5 .expertise-image{
		max-width: 190px;
	}

	.our-team{
		padding: 50px 0;
	}

	.page-services{
		padding: 50px 0;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		margin-bottom: 30px;
	}

	.page-category-list{
		margin-bottom: 30px;
	}

	.page-category-list h3{
		padding: 15px 20px;
	}

	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-category-list ul li a::before{
		width: 10px;
		height: 10px;
	}

	.sidebar-cta-box{
		padding: 20px;
	}
	
	.sidebar-cta-logo{
		margin-bottom: 20px;
	}

	.sidebar-cta-logo img{
		max-width: 40px;
	}

	.sidebar-cta-content h3{
        font-size: 28px;
    }

	.service-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.service-entry ul{
		margin-top: 20px;
	}

	.service-solution-item-list{
		margin-top: 30px;
		gap: 30px 40px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0px;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.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: 20px 0;
	}

	.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;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry ul li{
		margin-bottom: 10px;
	}

	.project-solution-body{
		margin-top: 30px;
	}

	.project-solution-blockquotes{
        margin: 20px 0;
    }

	.project-solution-blockquotes .icon-box img{
		max-width: 30px;
	}

	.project-solution-list ul li{
		margin: 0;
	}

	.project-problem-item-list{
		margin-top: 30px;
	}

	.project-problem-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-single-image img{
		aspect-ratio: 1 / 0.75;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-gallery{
		padding: 50px 0px 20px;
	}

	.page-video-gallery{
		padding: 50px 0px 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs .page-single-faqs{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-form .form-control{
		padding: 14px;
	}

	.contact-us-sidebar{
		margin-top: 30px;
	}

	.error-page{
		padding: 50px 0px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@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-benefit-box{
		width: 100%;
		gap: 30px;
	}

	.hero-benefit-counter-content h3,
	.hero-benefit-item-content h3{
		font-size: 18px;
	}

	.hero-benefit-counter-content p,
	.hero-benefit-item-content p{
		font-size: 14px;
	}

	.hero-benefit-counter-content,
	.hero-benefit-counter-image{
		width: calc(50% - 10px);
	}

	.about-us-body{
		gap: 30px;
		padding: 30px 20px;
	}

	.about-counter-item{
        width: 100%;
    }

	.about-counter-item::before{
		right: auto;
		left: auto;
		top: auto;
		bottom: -15px;
		width: 100%;
		height: 1px;
	}

	.about-counter-item:nth-child(2n + 2):before{
		display: block;
	}

	.about-counter-item:last-child:before{
		display: none;
	}

	.about-counter-item img{
        max-width: 40px;
        margin-bottom: 20px;
    }

	.about-counter-item h2{
        font-size: 30px;
    }

	.services-item{
		width: 100%;
    }

	.services-item-header h3{
		font-size: 18px;
	}

	.why-choose-item{
        width: 100%;
    }

	.why-choose-support-title h2,
	.why-choose-counter-item h2,
	.why-choose-content h2{
		font-size: 30px;
	}

	.why-choose-content h2{
		width: 20%;
	}

	.why-choose-content p{
		width: 80%;
	}

	.why-choose-support-title h3{
		font-size: 18px;
	}

	.why-choose-support-title{
		width: calc(40% - 10px);
	}

	.why-choose-support-content{
		width: calc(60% - 10px);
	}

	.section-footer-text.section-satisfy-img{
		gap: 5px;
	}

	.how-work-item{
		width: 100%;
		padding: 20px;
	}

	.how-work-item-title h3{
		max-width: 100%;
		font-size: 18px;
	}

	.what-we-item-1{
        width: calc(55% - 10px);
		min-height: 250px;
        padding: 20px;
    }

	.what-we-item-2{
        width: calc(45% - 10px);
	}

	.what-we-item-2 .icon-box{
		margin-bottom: 50px;
	}

	.what-we-item-1 p,
	.what-we-highlighted-content h3,
	.what-we-item-content h3{
		font-size: 16px;
	}

	.what-we-image{
		width: calc(55% - 10px);
	}

	.project-item{
		width: 100%;
	}

	.project-item-content h3{
		font-size: 18px;
	}

	.feature-item{
		width: 100%;
	}

	.feature-item-content h3{
		font-size: 18px;
	}

	.feature-list{
		margin-top: 30px;
	}

	.feature-list ul li{
		font-size: 14px;
        padding: 6px 8px 6px 20px;
    }

	.feature-list ul li::before{
		left: 8px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonial-quote{
		margin-bottom: 20px;
	}

	.testimonial-author{
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-author .author-content h3{
		font-size: 18px;
	}

	.testimonial-slider .testimonial-pagination{
		margin-top: 30px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
        right: 15px;
    }

	.faq-accordion .accordion-item .accordion-body{
        padding: 12px 15px;
    }

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}



	.cta-box-body{
		padding: 20px;
		gap: 20px;
	}

	.cta-box-item{
		width: 100%;
	}

	.cta-box-item::before{
		display: none;
	}

	.cta-box-item-content h3{
		font-size: 18px;
	}

	.post-featured-image,
	.post-item-content{
		margin-bottom: 15px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-header{
		gap: 10px;
		margin-bottom: 30px;
        padding-bottom: 30px;
	}

	.footer-header-title h2{
		font-size: 28px;
	}

	.footer-header-btn a img{
		width: 20px;
	}

	.footer-box{
		gap: 30px;
	}

	.footer-contact-links{
		width: 100%;
		max-width: 100%;
	}

	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright{
		justify-content: center;
		gap: 10px;
		padding: 15px 0;
	}

	.footer-menu ul{
		justify-content: center;
		gap: 10px;
	}

	.footer-menu ul li{
		font-size: 14px;
	}
	
	.page-header-box h1{
		font-size: 30px;
	}

	.approach-image-box{
		gap: 20px;
	}

	.approach-review-box,
	.approach-image{
		width: 100%;
	}

	.review-box{
		margin-bottom: 20px;
	}

	.approach-review-counter-image{
		padding: 20px 15px;
		margin-bottom: 20px;
	}

	.approach-review-counter-image h2{
		font-size: 22px;
	}

	.approach-review-counter-content h3{
		font-size: 18px;
	}

	.approach-image img{
        aspect-ratio: 1 / 1.27;
    }

	.approach-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.approach-item .icon-box{
		margin-right: 10px;
	}

	.approach-item-title{
		width: calc(100% - 50px);
	}

	.approach-item-title h3{
		font-size: 18px;
	}

	.skills-progress-bar .skillbar .skill-title,
	.skills-progress-bar .skillbar .skill-no{
		font-size: 18px;
	}

	.expertise-item{
		gap: 20px;
	}

	.expertise-item-content h3{
		font-size: 18px;
	}



	.expertise-item.box-5 .expertise-item-content{
		width: 100%;
	}

	.expertise-item.box-5 .expertise-image{
		max-width: 100%;
	}

	.page-category-list h3{
		font-size: 18px;
	}

	.sidebar-cta-content h3{
		font-size: 22px;
	}

	.sidebar-cta-contact-list ul li{
		font-size: 16px;
	}

	.page-single-image{
		margin-bottom: 20px;
	}

	.service-entry h2{
		font-size: 26px;
	}

	.service-solution-item-list{
		gap: 20px;
	}

	.service-solution-item{
		width: 100%;
	}

	.service-why-choose-image img{
		aspect-ratio: 1 / 0.75;
	}

	.service-benefit-image,
	.service-benefit-content{
		width: 100%;
	}

	.service-benefit-content{
        padding: 20px 15px;
    }

	.post-single-meta ol li,
	.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-entry h2{
		font-size: 26px;
	}

	.project-entry h3{
		font-size: 18px;
	}

	.project-entry ul li{
		font-size: 14px;
	}
	
	.project-solution-blockquotes{
		padding: 15px;
	}

	.project-solution-list ul{
		gap: 10px;
	}

	.project-solution-list ul li{
		width: 100%;
	}

	.project-results-steps{
		gap: 20px;
	}

	.results-step-item{
		width: 100%;
	}

	.results-step-no{
		padding: 0 0 15px;
		margin-bottom: 15px;
	}

	.results-step-no::before{
		width: 8px;
		height: 8px;
	}

	.results-step-content{
		padding: 0;
	}

	.results-step-content h3{
		margin-bottom: 5px;
	}

	.project-problem-item{
		gap: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.problem-item-content{
		min-width: 100%;
		width: 100%;
	}

	.team-single-image img{
        aspect-ratio: 1 / 1.1;
    }

	.team-contact-list{
		gap: 20px;
	}

	.team-contact-item{
		width: 100%;
	}

	.team-contact-content h3{
		font-size: 18px;
	}

	.member-biography-counter-list{
		gap: 30px;
	}

	.member-bio-counter-item{
		width: calc(50% - 15px);
	}

	.member-bio-counter-item:before{
		right: -15px;
	}

	.member-bio-counter-item:nth-child(4n + 4):before{
		display: block;
	}

	.member-bio-counter-item:nth-child(2n + 2):before{
		display: none;
	}

	.member-bio-counter-item h2{
		font-size: 30px;
		margin-bottom: 5px;
	}

	.team-skills-list .skills-progress-bar{
		width: 100%;
	}

	.contact-us-form{
		padding: 20px;
	}

	.google-map iframe{
		height: 300px;
	}
}

/* Preloader logo sizing */
.preloader #loading-icon img{ max-width: 64px; height: auto; }
