/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Seore - SEO And Digital Marketing Agency HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Strategy css
08. Company Feature css
09. How It Work css
10. Our Pricing css
11. Our Projects
12. Our Testimonial css
13. Our Blog css
14. Footer css
15. About us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Team Page css  
23. Contact us Page css
24. FAQs Page css
25. 404 Page css
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #0E0D1B;
	--secondary-color: #FFF4F3;
	--text-color: #757575;
	--accent-color: #FF4438;
	--gradient-color: #FFBE36;
	--box-shadow-color: #585B631A;
	--white-color: #FFFFFF;
	--divider-color: #FFDCC8;
	--dark-divider-color: #E6E6E6;
	--error-color: rgb(230, 87, 87);
	--default-font: "Roboto", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.1em;
}

figure {
	display: block;
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.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;
}

.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;
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--secondary-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(--accent-color) transparent var(--accent-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);
	}
}

.btn-default {
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	text-transform: capitalize;
	background: #e94a5c;
	background-size: 200% auto;
	padding: 15px 30px;
	border-radius: 28px;
	border: none;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default:hover {
	background-position: right center;
}

.btn-large {
	font-size: 20px;
	padding: 20px 65px 20px 20px;
}

.btn-default.btn-large::before {
	width: 40px;
	height: 40px;
	background-size: 15px;
}

.section-row {
	text-align: center;
	margin-bottom: 60px;
}

.section-row .section-title {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	margin-bottom: 0;
}

.section-btn {
	text-align: end;
}

.section-title {
	margin-bottom: 30px;
}

.section-title h3 {
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: #e94a5c;
	border-radius: 8px;
	transition: all 0.4s;
	padding: 6px 10px;
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-bottom: 16px;
	text-transform: capitalize;
}

.section-title h3::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	transition: all 0.4s;
	background: #e94a5c;
	opacity: 10%;
	border-radius: 8px;
}

.section-title h1,
.section-title h2 {
	font-size: 36px;
	letter-spacing: -0.02em;
	color: var(--primary-color);

}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	color: var(--text-color);
	margin-top: 20px;
	margin-bottom: 0;
}

/************************************/
/*** 	   03. Header css		  ***/
/************************************/

.topbar {
	background-color: var(--primary-color);
}

.topbar-contact-info {
	padding: 10px 0;
	text-align: left;
}

.topbar-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-right: 4px;
	padding-right: 13px;
}

.topbar-contact-info ul li:last-child {
	margin-right: 0;
	padding-right: 0;
}

.topbar-contact-info ul li::after {
	content: '/';
	position: absolute;
	right: 0;
	top: 0;
	color: var(--white-color);
}

.topbar-contact-info ul li:last-child:after {
	display: none;
}

.topbar-contact-info ul li a {
	color: var(--white-color);
}

.topbar-social-links {
	padding: 10px 0;
}

.topbar-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: end;
}

.topbar-social-links ul li {
	display: inline-block;
	margin-right: 12px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	color: var(--accent-color);
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
}

.topbar-social-links ul li a i {
	font-size: 16px;
	color: inherit;
}

header.main-header {
	position: fixed;
	z-index: 100;
	width: 100%;
	top: 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(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}

.navbar {
	padding: 20px 0;
	align-items: center;
	background-color: white;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 400;
	padding: 10px 4px !important;
	color: black;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}


.subheading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-menu ul li.submenu>a:after {
	/*content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;*/
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 350px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	/* overflow: hidden; */
	background: #fff;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: #515151;
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid #ececec;
	border-left: 4px solid transparent;

}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 0 0;
}

.main-menu ul ul li a:hover {
	color: #ffffff;
	background-color: #52b9cc;
	border-left: 4px solid #fbbc3b;

}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	margin: 0 ;
	background: white;
	border-top: 2px solid #52b9cc;
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li {
	border-bottom: 1px solid #a2b5cb57;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: #677294;
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	color: #ffffff;
    background: #ff4438;
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 35px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: black;
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}


.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: red;
}

.slicknav_open>.nav-link {
	color: red;
	/* Change text color */
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	background-image: url(../images/header-bg1.png);
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 200px 0 100px;
}

.hero .elements1 {
	position: absolute;
	z-index: -1;
}

.aniamtion-key-1 {
	position: relative;
	animation-name: animation-1;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.hero-content {
	padding-right: 80px;
}

.hero-content-body p {
	color: #484848;
}

.welcome-animation {
	position: relative;
	-webkit-animation: bounceHero 5s ease-in-out infinite;
	animation: bounceHero 5s ease-in-out infinite;
}

.hero-content .section-title.hero-content-title h1 {
	font-size: 35px;
	line-height: 46px;
	color: #333;
}

.hero-content .section-title.hero-content-title h1 span {
	color: #333;
}

.hero-image {
	text-align: center;
}

.hero-content-footer {
	display: flex;
	align-items: center;
}

.wide-client {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.wide-client-image {
	margin-right: 10px;
}

.wide-client-image img {
	width: 136px;
}

.wide-client-content {
	width: calc(100% - 146px);
}

.wide-client-content p {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	max-width: 100px;
	margin: 0;
}

.hero-image {
	position: relative;
}

.company-sales {
	position: absolute;
	bottom: 0;
	left: 0;
	/* transform: translateY(-50%); */
	display: flex;
	align-items: center;
	/* background-color: var(--white-color); */
	/* border: 1px solid var(--divider-color); */
	border-radius: 17px;
	/* padding: 15px 25px 15px 15px; */
	animation: salesmoveobject 3s infinite linear alternate;
}

@keyframes salesmoveobject {
	50% {
		left: 50px;
	}
}

.company-sales .icon-box {
	margin-right: 15px;
}

.company-sales .icon-box img {
	width: 50px;
}

.company-sales-content {
	width: calc(100% - 65px);
	text-align: left;
}

.company-sales-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.company-sales-content p {
	text-transform: capitalize;
	margin: 0;
}

.company-visit {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: visitmoveobject 3s infinite linear alternate;
}

@keyframes visitmoveobject {
	50% {
		right: 30px;
	}
}

.company-visit .icon-box {
	margin-right: 15px;
}

.company-visit .icon-box img {
	width: 50px;
}

.company-visit-content {
	width: calc(100% - 65px);
	text-align: left;
}

.company-visit-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.company-visit-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	position: relative;
	background: url('../images/section-bg-img-1.png') no-repeat;
	background-position: right -100px bottom -100px;
	padding: 60px 0;
}

.about-image {
	position: relative;
}

.about-img {
	text-align: center;
}

.company-experience {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: expmoveobject 3s infinite linear alternate;
}

@keyframes expmoveobject {
	50% {
		right: 50px;
	}
}

.company-experience .icon-box {
	margin-right: 15px;
}

.company-experience .icon-box img {
	width: 50px;
}

.company-experience-content {
	width: calc(100% - 65px);
	text-align: left;
}

.company-experience-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.company-experience-content p {
	text-transform: capitalize;
	margin: 0;
}

.about-content {
	padding-left: 80px;
}

.about-content-body {
	margin-bottom: 30px;
}

.about-content-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-content-body ul li {
	position: relative;
	width: calc(50% - 10px);
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.about-content-body ul li:before {
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services {
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -100px bottom -250px;
	padding: 60px 0 60px;
}

.our-service-content {
	position: sticky;
	top: 20px;
	margin-bottom: 30px;
}

.our-services .section-btn {
	text-align: left;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
	border-radius: 16px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 0px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;

}

.service-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 1;
}

.service-item:hover:before {
	top: 0;
}

.service-item .icon-box {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
}

.service-item .icon-box img {
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img {}


.service-body {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
	padding: 0 15px;
}

.service-body h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-body h3 {
	color: var(--white-color);
}

.service-body p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-body p {
	color: var(--white-color);
}

.service-footer {
	position: relative;
	z-index: 2;
	margin-bottom: 15px;
	margin-left: 15px;
}

.service-footer a {
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-footer a img {
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.service-item:hover .service-footer a img {
	transform: rotate(0deg);
}

/************************************/
/***     07. Our Strategy css	  ***/
/************************************/

.our-strategy {
	background: url('../images/section-bg-img-3.png') no-repeat;
	background-position: top right;
	padding: 100px 0;
}

.strategy-image {
	display: flex;
	align-items: start;
	text-align: left;
	position: relative;
}

.strategy-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/strategy-image-bg.png') no-repeat;
	background-position: center top;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.strategy-img-1 {
	margin-right: 30px;
}

.strategy-img-2 {
	padding-top: 80px;
}

.strategy-img-2 figure,
.strategy-img-1 figure {
	display: block;
}

.strategy-img-2 img,
.strategy-img-1 img {
	border-radius: 16px;
}

.our-strategy-box {
	padding-left: 80px;
}

.strategy-item {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
	border-radius: 16px;
	display: flex;
	align-items: center;
	padding: 30px;
	margin-bottom: 30px;
}

.strategy-item:last-child {
	margin-bottom: 0;
}

.strategy-item .icon-box {
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.strategy-item:hover .icon-box {
	border-color: transparent;
}

.strategy-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.strategy-item:hover .icon-box:before {
	transform: scale(1);
}

.strategy-item .icon-box img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.strategy-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.strategy-progress-bar {
	width: calc(100% - 95px);
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skillbar .skill-data .skill-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
}

.skillbar .skill-data .skill-no {
	font-size: 16px;
	font-weight: 600;
	color: var(--accent-color);
}

.skillbar .skill-progress {
	width: 100%;
	height: 12px;
	background: var(--dark-divider-color);
	border-radius: 16px;
	position: relative;
}

.skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	border-radius: 16px;
}

/************************************/
/***    08. Company Feature css   ***/
/************************************/

.company-feature {
	background: var(--secondary-color) url('../images/section-bg-img-1.png') no-repeat;
	background-position: right -100px bottom -100px;
	padding: 100px 0;
}

.company-feature-item {
	background-color: var(--white-color);
	box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	display: flex;
	align-items: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px 15px;
}

.company-feature-item .icon-box {
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.company-feature-item:hover .icon-box {
	border-color: transparent;
}

.company-feature-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.company-feature-item:hover .icon-box:before {
	transform: scale(1);
}

.company-feature-item .icon-box img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.company-feature-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.feature-item-content {
	width: calc(100% - 90px);
	text-align: left;
}

.feature-item-content h3 {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.feature-item-content p {
	margin: 0;
}

.company-feature-image {
	text-align: center;
}

/************************************/
/***     09. How It Work css      ***/
/************************************/

.how-it-work {
	padding: 60px 0 60px;
}

.how-work-item {
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;

}

.how-work-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 1;
}

.how-work-item:hover:before {
	top: 0;
}

.how-work-item .icon-box {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
}

.how-work-item .icon-box img {
	width: 55px;
	transition: all 0.4s ease-in-out;
}

.how-work-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.how-work-content {
	position: relative;
	z-index: 2;
}

.how-work-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .how-work-content h3 {
	color: var(--white-color);
}

.how-work-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .how-work-content p {
	color: var(--white-color);
}

.counter-item-three {
	border: 1.2px solid #D4DCED;
	border-radius: 10px;
	display: flex;
	align-items: center;
	padding: 28px 30px;
	/* margin-bottom: 30px; */
	transform: translateY(0);
	transition: .3s linear;
}

.counter-icon {
	font-size: 60px;
	line-height: 0;
	position: relative;
	color: red;
	margin-right: 40px;
}

.counter-icon::before {
	content: "";
	position: absolute;
	left: -14px;
	top: -15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #d4dced4d;
	z-index: -1;
	transition: .3s linear;
}


.counter-icon::after {
	content: "";
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 38px;
	background: #cbcbcb;
}

.counter-content .count {
	font-size: 36px;
	margin-bottom: 10px;
	line-height: .8;
	display: flex;
	align-items: center;
}

.counter-content p {
	margin-bottom: 0;
	line-height: 1.2;
}

.counter-item-three:hover {
	transform: translateY(-5px);
}

.counter-item-three:hover .counter-icon::before {
	left: 0;
	top: 0;
}

/************************************/
/***     10. Our Pricing css	  ***/
/************************************/

.our-pricing {
	background-color: var(--secondary-color);
	padding: 100px 0 70px;
}

.pricing-item {
	background-color: var(--white-color);
	box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
	border-radius: 16px;
	height: calc(100% - 30px);
	padding: 75px 30px;
	margin-bottom: 30px;
}

.pricing-header {
	border-bottom: 1px solid var(--dark-divider-color);
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.pricing-header h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-header h2 {
	font-size: 48px;
	margin-bottom: 15px;
}

.pricing-header p {
	margin: 0;
}

.pricing-body {
	margin-bottom: 40px;
}

.pricing-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-body ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child {
	margin-bottom: 0;
}

.pricing-body ul li i {
	position: absolute;
	top: 2px;
	right: 0;
	font-size: 18px;
	color: #3BC13B;
}

.pricing-body ul li i.fa-solid.fa-xmark {
	color: var(--error-color);
}

.pricing-footer {
	text-align: center;
}

.pricing-item.highlighted-box {
	position: relative;
	background-color: var(--primary-color);
	overflow: hidden;
}

.pricing-item.highlighted-box::before {
	content: '';
	display: block;
	position: absolute;
	top: -40px;
	right: -60px;
	transform: rotate(45deg);
	background: url('../images/icon-star.svg') no-repeat, linear-gradient(to right, var(--accent-color) 35%, var(--gradient-color) 2.05%, var(--accent-color) 99.13%);
	background-position: right 50px top 60px;
	width: 140px;
	height: 100px;
	z-index: 1;
}

.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-header p,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h3 {
	color: var(--white-color);
}

/************************************/
/***     11. Our Projects css	  ***/
/************************************/

.our-project {
	padding: 100px 0 70px;
}

.our-projects-nav {
	margin-bottom: 30px;
}

.our-projects-nav ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}

.our-projects-nav ul li {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 10px;
}

.our-projects-nav ul li:last-child {
	margin-right: 0;
}

.our-projects-nav ul li a {
	position: relative;
	display: inline-block;
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	color: var(--text-color);
	font-weight: 600;
	padding: 8px 20px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-projects-nav ul li a:hover {
	color: var(--white-color);
}

.our-projects-nav ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	transition: all 0.3s ease-in-out;
	height: 100%;
	z-index: -1;
}

.our-projects-nav ul li a:hover:before {
	top: 0;
}

.our-projects-nav ul li a.active-btn {
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	color: var(--white-color);
}

.project-item-box .project-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-item {
	position: relative;
	overflow: hidden;

}

.project-image a {
	position: relative;

	display: block;
}

.project-image img {
	width: 100%;
	border-radius: 16px;
	aspect-ratio: 1/1.1;
	object-fit: cover;
}

.project-body {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 20px;
	transform: translateY(100%);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.project-body::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--primary-color);
	border-radius: 10px;
	opacity: 90%;
	z-index: -1;
}

.project-item:hover .project-body {
	opacity: 1;
	transform: translateY(0px);
}

.project-content {
	text-align: left;
}

.project-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.project-readmore-btn a {
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-readmore-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-body:hover .project-readmore-btn a img {
	transform: rotate(0deg);
}

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonial {
	padding: 60px 0;
	background: var(--secondary-color) url('../images/section-bg-img-3.png') no-repeat;
	background-position: top right;
}

.our-testimonial .section-title {
	text-align: center;
}

.testimonial-slider .testimonial-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 30px;
}

.testimonial-slider .swiper-wrapper {}

.testimonial-header {
	margin-bottom: 15px;
}

.testimonial-header .author-image {
	margin-bottom: 15px;
}

.testimonial-header .author-image figure,
.testimonial-header .author-image img {
	height: 78px;
	width: 78px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 100%;
}

.testimonial-header .testimonial-rating i {
	font-size: 14px;
	color: var(--accent-color);
}

.testimonial-body {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
}

.testimonial-body p {
	margin: 0;
}

.testimonial-footer .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-footer .author-content p {
	margin: 0;
	text-transform: capitalize;
}

.testimonial-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 15px;
}

.testimonial-slider .testimonial-button-prev {
	margin-right: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background-color: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/icon-arrow.svg') no-repeat center center;
	background-size: 15px auto;
	transform: rotate(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next::before {
	content: '';
	background: url('../images/icon-arrow.svg') no-repeat center center;
	background-size: 15px auto;
	transform: rotate(0deg);
}

/************************************/
/***      13. Our Blog css	      ***/
/************************************/

.our-blog {
	padding: 60px 0 60px;
}

.our-blog .section-title {
	text-align: center;
}

.blog-item {
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
	overflow: hidden;
	margin-bottom: 30px;
	height: calc(100% - 30px);
}

.blog-item .post-item-content {
	padding: 30px;
}

.post-featured-image figure a {
	display: block;

}

.blog-item .post-featured-image img {
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.blog-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-body h2 {
	font-size: 20px;
	color: var(--primary-color);
	line-height: 1.4em;
	margin-bottom: 20px;
}

.post-item-body h2 a {
	color: inherit;
}

.post-item-body p {
	margin-bottom: 20px;
}

.post-item-footer a {
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-item-footer a img {
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.blog-item:hover .post-item-footer a img {
	transform: rotate(0deg);
}

.we-promise {
	text-align: center;
	display: inline-block;
	font-size: 26px;
	color: #4e4d4d;
	margin: 32px 25px 0;
	text-decoration: underline;
}

.we-promise span {
	font-weight: 700;
}

/************************************/
/***    	14. Footer css		  ***/
/************************************/

.main-footer {
	background: black;
	padding: 60px 0 0;
}

.about-footer {
	padding-right: 25px;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-contact-box .footer-info-box {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
}

.footer-contact-box .footer-info-box:last-child {
	margin-bottom: 0;
}

.footer-info-box .icon-box {
	position: absolute;
	top: 2px;
	left: 0;
}


.footer-info-box .icon-box i {
	color: #d9d9d9;
	font-size: 20px;
}

.footer-info-box p {
	color: white;
	margin: 0;
}

.footer-links h3 {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	color: #e3e3e3;
	text-transform: capitalize;
	margin-bottom: 30px;
	cursor: pointer;
	position: relative;
}

.footer-links h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background: #e94b5d;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);

}

.footer-links h3:hover {
	color: #e94b5d;
}

.footer-links h3:hover::before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 2px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	font-size: 16px;
	color: white;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	margin-top: 80px;
	padding: 20px 0;
	border-top: 1px solid #FFFFFF26;
}

.footer-copyright-text p {
	color: #343434;
	margin: 0;
}

.footer-copyright .footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-copyright .footer-social-links ul li {
	display: inline-block;
	margin-right: 10px;
}

.footer-copyright .footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-copyright .footer-social-links ul li a {
	background-color: var(--white-color);
	color: var(--primary-color);
	height: 36px;
	width: 36px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	border: 1px solid #f7dfdd;
}

.footer-copyright .footer-social-links ul li a i {
	font-size: 18px;
}

.footer-copyright .footer-social-links ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***     15. About us Page css    ***/
/************************************/

.page-header {
	position: relative;
	padding: 120px 0px;
	background: linear-gradient(179.5deg, var(--primary-color) 0.06%, var(--box-shadow-color) 90.6%), url('../images/page-header-bg.jpg') no-repeat center center;
	background-size: cover;
	margin-top: 96px;
}

.page-header-box {
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1 {
	color: var(--white-color);
	font-size: 56px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;

}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	color: var(--white-color);
	font-size: 16px;
	line-height: 1.1em;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-about {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-1.png') no-repeat;
	background-position: right -100px bottom -100px;
}

.page-about .row.section-row {
	max-width: 100%;
	text-align: left;
}

.page-about .section-row .section-title {
	margin-bottom: 30px;
}

.about-us-image {
	position: relative;
	margin-right: 40px;
}

.about-img-1 {
	position: relative;
	width: 380px;
}

.about-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-2 figure,
.about-img-1 figure {
	display: block;
}

.about-img-1 img {
	aspect-ratio: 1 /1.32;
	object-fit: cover;
	border-radius: 219px 219px 0 0;
}

.about-img-2 figure {
	border-radius: 219px 219px 0 0;
}

.about-img-2 img {
	aspect-ratio: 1 /1.26;
	object-fit: cover;
	border-width: 10px 0 0 10px;
	border-style: solid;
	border-color: var(--secondary-color);
	border-radius: 219px 219px 0 0;
}

.experience-counter-item {
	position: absolute;
	top: 50px;
	right: 0;
	display: flex;
	align-items: center;
	width: 250px;
	padding: 15px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	animation: moveobject 3s infinite linear alternate;
}

@keyframes moveobject {
	50% {
		right: 50px;
	}
}

.experience-counter-item .icon-box {
	margin-right: 15px;
}

.experience-counter-item .icon-box img {
	width: 50px;
}

.experience-counter-item .experience-counter-content {
	width: calc(100% - 60px);
}

.experience-counter-item .experience-counter-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.experience-counter-item .experience-counter-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.about-us-content-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-us-content-body ul li {
	position: relative;
	width: calc(50% - 10px);
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.about-us-content-body ul li:before {
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
}

.trusted-company {
	margin-top: 60px;
}

.trusted-companies-title h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
}

.why-choose-us {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -120px bottom -300px;
}

.why-choose-us .section-title {
	text-align: center;
}

.faq-accordion.why-choose-accordion .accordion-item {
	position: relative;
	background: none;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.faq-accordion.why-choose-accordion .accordion-item:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion.why-choose-accordion .accordion-header {
	position: relative;
}

.faq-accordion.why-choose-accordion .accordion-header .icon-box {
	position: absolute;
	left: 0;
	top: 4px;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-button {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	border: none;
	box-shadow: none;
	padding: 5px 35px 5px 55px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-button.collapsed::after,
.faq-accordion.why-choose-accordion .accordion-item .accordion-button:after {
	display: none;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-button span {
	position: absolute;
	right: 0;
	top: 0;
	bottom: auto;
	transform: translateY(50%);
	font-size: 26px;
	line-height: 1em;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-body {
	padding: 5px 30px 5px 55px;
}

.faq-accordion.why-choose-accordion .accordion-item.accordion-body p {
	margin: 0;
}

.why-choose-image {
	display: flex;
	align-items: start;
	justify-content: end;
	position: relative;
	margin-left: 60px;
}

.why-choose-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/why-choose-image-bg.png') no-repeat;
	background-position: center top;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.why-choose-img-1 {
	margin-right: 30px;
}

.why-choose-img-2 {
	padding-top: 80px;
}

.wwhy-choose-img-1 figure,
.why-choose-img-2 figure {
	display: block;
}

.why-choose-img-1 img,
.why-choose-img-2 img {
	border-radius: 16px;
}

.our-team {
	padding: 100px 0 70px;
}

.our-team .section-row {
	width: 100%;
	max-width: 100%;
	text-align: left;
}

.team-member-item {
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	margin-bottom: 15px;
}

.team-image img {
	width: 100%;
	border-radius: 0px;
	aspect-ratio: 1/1.2;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	z-index: 1;
}

.team-member-item:hover .team-social-icon {
	opacity: 1;
	bottom: 20px;
}

.team-social-icon ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-icon ul li {
	display: inline-block;
	text-align: center;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	display: block;
}

.team-social-icon ul li a i {
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-out;
	color: var(--white-color);
	font-size: 18px;
}

.team-social-icon ul li a i:hover {
	background-color: var(--primary-color);
}

.team-content {
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.about-company-counter {
	background: linear-gradient(180deg, var(--white-color) 50%, var(--secondary-color) 50%);
}

.about-company-counter .company-counter-box {
	/* background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%); */
	border-radius: 16px;
	padding: 40px 0;
}

.company-counter-item {
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	border: 2px solid #a9a9a9;
	box-shadow: 0px 5px 8px -5px black;
	border-bottom: 4px solid #a7a7a7;
}

.company-counter-item .company-counter-content h3 {
	font-size: 40px;
	color: #e94a5c;
	margin-bottom: 5px;
}

.company-counter-item .company-counter-content p {
	font-size: 20px;
	font-weight: 600;
	color: black;
	text-transform: capitalize;
	margin: 0;
}

.company-counter-content .key-word {
	color: black;
	font-size: 18px;
	font-weight: 700;
}


.our-faq {
	padding: 100px 0;
	background: var(--white-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -100px bottom -250px;
}

.faq-image {
	position: relative;
	padding-bottom: 110px;
	margin-right: 20px;
}

.faq-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.faq-img-1 {
	position: relative;
	width: 450px;
}

.faq-img-2 figure,
.faq-img-1 figure {
	display: block;
}

.faq-img-1 img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 16px;
}

.faq-img-2 img {
	aspect-ratio: 1 /1.25;
	object-fit: cover;
	border: 10px solid var(--secondary-color);
	border-radius: 16px;
}

.faq-accordion .accordion-item {
	position: relative;
	background: none;
	/* border-bottom: 1px solid var(--dark-divider-color); */
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.faq-accordion .accordion-item:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button {
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--primary-color);
	border: none;
	box-shadow: none;
	padding: 5px 30px 5px 0px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 0px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 5px;
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f067';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 5px 30px 5px 30px;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

/************************************/
/***     16. Services Page css    ***/
/************************************/

.page-services {
	background: var(--secondary-color) url('../images/section-bg-img-1.png') no-repeat;
	background-position: right -100px bottom -100px;
	padding: 100px 0 70px;
}

.our-pricing.service-pricing {
	background: var(--secondary-color) url(../images/section-bg-img-2.png) no-repeat;
	background-position: left -100px bottom -250px;
}

/************************************/
/***   17. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -100px bottom -250px;
}

.service-sidebar {
	position: sticky;
	top: 20px;
}

.service-list {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 30px;
}

.service-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-list ul li {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.service-list ul li:last-child {
	border: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.service-list ul li a {
	display: block;
	position: relative;
	color: var(--text-color);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.service-list ul li a:after {
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
	display: block;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	color: var(--accent-color);
}

.service-list ul li a:hover {
	color: var(--accent-color);
}

.sidebar-cta-box {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 30px;
}

.sidebar-cta-box .icon-box {
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content p {
	margin-bottom: 20px;
}

.service-featured-image {
	margin-bottom: 30px;
}

.service-featured-image figure {
	display: block;
}

.service-featured-image img {
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 16px;
}

.service-entry {
	margin-bottom: 30px;
}

.service-entry h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.company-growth .company-growth-img figure {
	display: block;
}

.company-growth .company-growth-img img {
	border-radius: 16px;
}

.company-growth-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.company-growth-content p {
	margin-bottom: 20px;
}

.company-growth-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.company-growth-content ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 25px;
	margin-bottom: 12px;
}

.company-growth-content ul li:last-child {
	margin-bottom: 0;
}

.company-growth-content ul li:before {
	content: '';
	position: absolute;
	background: url('../images/icon-check.svg') no-repeat center center;
	background-size: 100% auto;
	height: 16px;
	width: 16px;
	top: 5px;
	left: 0;
}

.about-company-growth-content {
	margin-top: 20px;
}

.about-company-growth-content p {
	margin: 0;
}

.our-solution-faq {
	padding: 100px 0;
}

.our-solution-faq .solution-faqs {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

/************************************/
/***    18. Blog Archive css  	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.post-pagination {
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 4px;
	border-radius: 4px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
	background: var(--primary-color);
}

/************************************/
/***    19. Blog Single css  	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li i {
	font-size: 16px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 16px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--dark-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 {
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 58px;
}

.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: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 700;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 18px;
}

.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: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 40px 46px;
	background-size: 45px;
	border-radius: 16px;
	padding: 40px 40px 40px 110px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 8px 20px;
	margin-left: 10px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: 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;
	border-radius: 50%;
	text-align: center;
	background-color: var(--accent-color);
	color: var(--white-color);
	width: 38px;
	height: 38px;
	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;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
	color: var(--secondry-color);
}

/************************************/
/***    20. Project Page css  	  ***/
/************************************/

.page-project {
	padding: 100px 0;
}

/************************************/
/***   21. Project Single css    ***/
/************************************/

.page-project-single {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -100px bottom -250px;
}

.project-featured-image {
	margin-bottom: 30px;
}

.project-featured-image figure {
	display: block;
}

.project-featured-image img {
	border-radius: 16px;
	aspect-ratio: 1/ 0.6;
	object-fit: cover;
}

.project-single-content .project-section-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.project-detail,
.project-values-content,
.project-about-image {
	margin-bottom: 30px;
}

.project-values-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.project-values-content ul li {
	position: relative;
	width: calc(50% - 10px);
	text-transform: capitalize;
	padding-left: 30px;
}

.project-values-content ul li:before {
	content: '';
	position: absolute;
	background: url('../images/icon-check.svg') no-repeat center center;
	background-size: 100% auto;
	height: 16px;
	width: 16px;
	top: 5px;
	left: 0;
}

.project-about-image .project-about-img-2 figure,
.project-about-image .project-about-img-1 figure {
	display: block;
}

.project-about-image .project-about-img-1 img,

.project-about-image .project-about-img-2 img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 16px;
}

.project-result-content p {
	margin: 0;
}

.project-sidebar {
	position: sticky;
	top: 20px;
}

.portfolio-info-box {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 30px;
}

.portfolio-info-box-title {
	margin-bottom: 30px;
}

.portfolio-info-box-title h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.portfolio-info-item {
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.portfolio-info-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.portfolio-info-item .icon-box {
	margin-right: 15px;
}

.portfolio-info-content {
	width: calc(100% - 65px);
}

.portfolio-info-content h3 {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	text-transform: capitalize;
	margin-bottom: 3px;
}

.portfolio-info-content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***	  22. Team Page css       ***/
/************************************/

.page-team {
	background: var(--white-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -120px bottom -300px;
	padding: 100px 0 70px;
}

/************************************/
/***   23. Contact us Page css    ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -100px bottom -250px;
}

.contact-info .contact-info-box {
	margin-bottom: 40px;
}

.contact-info .contact-info-box:last-child {
	margin-bottom: 0;
}

.contact-info-box .contact-info-title {
	margin-bottom: 20px;
}

.contact-info-box .contact-info-title h2 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-box .contact-info-title p {
	margin: 0;
}

.contact-info-item {
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
}

.contact-info-item a {
	text-decoration: underline;
	color: var(--primary-color);
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-item .icon-box {
	position: absolute;
	top: 0px;
	left: 0px;
}

.contact-info-item .contact-info-content p {
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.contact-form {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 40px;
}

.contact-form-content p {
	margin-bottom: 20px;
}

.contact-form .form-control {
	padding: 15px 20px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	box-shadow: none;
	border: none;
	border-radius: 10px;
}

.contact-form .form-control::placeholder {
	color: var(--primary-color);
	text-transform: capitalize;
}

.contact-form button.btn-default {
	width: 100%;
}

.help-block.with-errors ul {
	margin-bottom: 0;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-size: 14px;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

/************************************/
/***  	   24. FAQs Page css      ***/
/************************************/

.page-faqs {
	padding: 100px 0;
	background: var(--white-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -120px bottom -300px;
}

.faq-sidebar {
	position: sticky;
	top: 20px;
}

.faq-category-box {
	padding: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 16px;
}

.faq-category-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-category-box ul li {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.faq-category-box ul li:last-child {
	border: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.faq-category-box ul li a {
	display: block;
	position: relative;
	color: var(--text-color);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.faq-category-box ul li a:after {
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: block;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	color: var(--accent-color);
}

.faq-category-box ul li a:hover {
	color: var(--accent-color);
}

.faq-section {
	margin-bottom: 60px;
}

.faq-section:last-child {
	margin-bottom: 0;
}

/************************************/
/***	  25. 404 Page css        ***/
/************************************/

.error-page {
	padding: 100px 0;
	background: var(--secondary-color);
}

.error-page-image {
	text-align: center;
	margin-bottom: 60px;
}

.error-page .error-page-content {
	text-align: center;
}

.error-page-content-heading {
	margin-bottom: 30px;
}

.error-page-content-heading h2 {
	font-size: 46px;
}

.error-page-content-heading h2 span {
	color: var(--accent-color);
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px) {

	#magic-cursor {
		display: none !important;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 38px;
	}

	.section-title-content {
		text-align: left;
		margin-left: 0;
		margin-top: 15px;
	}

	.hero {
		padding: 50px 0;
	}

	.hero-content {
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content .section-title.hero-content-title h1 {
		font-size: 46px;
	}

	.about-us {
		background-position: right -200px bottom -200px;
		padding: 50px 0;
	}

	.about-image {
		margin-bottom: 30px;
	}

	.about-content {
		padding-left: 0px;
	}

	.our-services {
		background-position: left -100px bottom -250px;
		padding: 50px 0 20px;
	}

	.service-item {
		padding: 0;
	}

	.our-strategy {
		padding: 50px 0;
	}

	.counter-block .company-sales {
		width: 100% !important;
		margin-bottom: 10px;
	}

	.hero-contact-box {
		padding: 28px !important;
	}

	.strategy-image {
		justify-content: center;
		margin-bottom: 30px;
	}

	.our-strategy-box {
		padding-left: 0px;
	}

	.strategy-item {
		padding: 20px;
		margin-bottom: 20px;
	}

	.company-feature {
		background-position: right -200px bottom -200px;
		padding: 50px 0;
	}

	.company-feature-content {
		margin-bottom: 10px;
	}

	.company-feature-item .icon-box {
		width: 60px;
		height: 60px;
	}

	.company-feature-item .icon-box img {
		width: 35px;
	}

	.feature-item-content {
		width: calc(100% - 75px);
	}

	.how-it-work {
		padding: 50px 0 20px;
	}

	.how-work-item {
		padding: 20px;
	}

	.how-work-content h3 {
		margin-bottom: 15px;
	}

	.our-pricing {
		padding: 50px 0 20px;
	}

	.pricing-item {
		padding: 30px 20px;
	}

	.pricing-header h2 {
		font-size: 38px;
		margin-bottom: 10px;
	}

	.pricing-header {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.pricing-body {
		margin-bottom: 30px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.project-body {
		padding: 15px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-item {
		padding: 20px;
	}

	.testimonial-header .author-image figure,
	.testimonial-header .author-image img {
		height: 65px;
		width: 65px;
	}

	.testimonial-btn {
		margin-top: 30px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.blog-item .post-item-content {
		padding: 25px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-logo {
		margin-bottom: 30px;
	}

	.about-footer {
		margin-bottom: 30px;
		padding-right: 0;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 60px;
		padding: 15px 0;
	}

	.page-header {
		padding: 100px 0px;
	}

	.page-header-box h1 {
		font-size: 46px;
	}

	.page-about {
		padding: 50px 0;
	}

	.about-us-image {
		width: 100%;
		max-width: 580px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content-body ul li {
		font-size: 16px;
	}

	.trusted-company {
		margin-top: 40px;
	}

	.trusted-companies-title {
		margin-bottom: 20px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-image {
		justify-content: center;
	}

	.faq-accordion.why-choose-accordion {
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion.why-choose-accordion .accordion-item .accordion-button span {
		font-size: 22px;
	}

	.why-choose-image {
		margin-left: 0;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.about-company-counter .company-counter-box {
		padding: 30px;
	}

	.company-counter-item .company-counter-content h3 {
		font-size: 32px;
	}

	.company-counter-item .company-counter-content p {
		font-size: 18px;
	}

	.our-faq {
		padding: 50px 0;
	}

	.faq-image {
		max-width: 650px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		margin-bottom: 30px;
	}

	.service-list {
		padding: 20px;
	}

	.service-list h3 {
		margin-bottom: 20px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-box .icon-box {
		margin-bottom: 15px;
	}

	.sidebar-cta-box .icon-box img {
		width: 50px;
	}

	.sidebar-cta-box .cta-content h3 {
		margin-bottom: 15px;
	}

	.company-growth-content ul li {
		font-size: 16px;
	}

	.our-solution-faq {
		padding: 50px 0;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 30px 36px;
		background-size: 45px;
		padding: 30px 30px 30px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tag-links {
		padding: 0 0px;
	}

	.post-tags {
		margin-bottom: 10px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 8px 15px;
	}

	.page-project {
		padding: 50px 0;
	}

	.post-pagination {
		margin-top: 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-sidebar {
		margin-top: 30px;
	}

	.portfolio-info-box {
		padding: 20px;
	}

	.portfolio-info-item .icon-box img {
		width: 40px;
	}

	.portfolio-info-content {
		width: calc(100% - 55px);
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-info .contact-info-box {
		margin-bottom: 30px;
	}

	.contact-info {
		margin-bottom: 30px;
	}

	.contact-form {
		padding: 20px;
	}

	.contact-info-box .contact-info-title {
		margin-bottom: 15px;
	}

	.contact-info-item {
		margin-bottom: 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 500px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		margin-bottom: 30px;
	}

	.faq-category-box {
		padding: 20px;
	}

	.faq-section {
		margin-bottom: 30px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 30px;
	}

	.error-page-content-heading {
		margin-bottom: 20px;
	}

	.error-page-content-heading h2 {
		font-size: 38px;
	}
}

@media only screen and (max-width: 767px) {

	.btn-default {
		font-size: 16px;
		padding: 15px 25px;
	}

	.technology-block {
		margin-bottom: 10px;
	}

	a.navbar-brand img {
		width: 52px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 30px;
	}

	.topbar-contact-info {
		text-align: center;
	}

	.topbar-contact-info ul li {
		margin-right: 0;
		padding-right: 10px;
	}

	.topbar-social-links {
		display: none;
	}

	.hero-content .section-title.hero-content-title h1 {
		font-size: 21px;
		line-height: 29px;
	}

	.hero-content-footer {
		display: block;
	}

	.wide-client {
		margin-left: 0px;
		margin-top: 15px;
	}

	.hero-image {
		padding-bottom: 30px;
	}

	.company-sales {
		transform: translateY(0%);
		padding: 10px 15px 10px 10px;
	}

	.company-sales .icon-box img {
		width: 40px;
	}

	.company-sales-content {
		width: calc(100% - 55px);
	}

	.company-visit {
		top: 50%;
		transform: translateY(-50%);
		padding: 10px 15px 10px 10px;
	}

	.company-visit .icon-box img {
		width: 40px;
	}

	.company-visit-content {
		width: calc(100% - 55px);
	}

	.about-image {
		padding-bottom: 30px;
	}

	.company-experience {
		top: auto;
		bottom: 0%;
		right: 0;
		transform: translateY(0%);
		padding: 10px 15px 10px 10px;
	}

	.company-experience .icon-box img {
		width: 40px;
	}

	.company-experience-content {
		width: calc(100% - 55px);
	}

	.about-content-body ul {
		display: block;
	}

	.about-content-body ul li {
		width: 100%;
		font-size: 16px;
		margin-bottom: 15px;
	}

	.about-content-body ul li:last-child {
		margin-bottom: 0;
	}

	.about-content-body ul li:before {
		font-size: 18px;
	}

	.service-body h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.strategy-image::before {
		left: 50%;
		transform: translateX(-50%);
		background-size: contain;
		width: 150px;
		height: 200px;
		z-index: -1;
	}

	.strategy-img-1 {
		margin-right: 20px;
	}

	.strategy-img-2 {
		padding-top: 60px;
	}

	.strategy-item .icon-box {
		width: 60px;
		height: 60px;
		margin-right: 10px;
	}

	.strategy-item .icon-box img {
		width: 30px;
	}

	.strategy-progress-bar {
		width: calc(100% - 70px);
	}

	.skillbar .skill-data {
		margin-bottom: 5px;
	}

	.skillbar .skill-data .skill-title {
		font-size: 18px;
	}

	.feature-item-content h3 {
		font-size: 18px;
	}

	.how-work-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.pricing-header {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-header h2 {
		font-size: 28px;
	}

	.pricing-body ul li {
		font-size: 16px;
	}

	.our-projects-nav ul li {
		margin-right: 10px;
	}

	.our-projects-nav ul li a {
		padding: 8px 15px;
	}

	.project-content h3 {
		font-size: 18px;
	}

	.testimonial-footer .author-content h3 {
		font-size: 18px;
	}

	.post-item-body h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.post-item-body p {
		margin-bottom: 15px;
	}

	.footer-info-box .icon-box i {
		font-size: 18px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.main-footer .col-12:last-child .footer-links {
		margin-bottom: 0;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright {
		margin-top: 30px;
	}

	.footer-copyright-text {
		text-align: center;
		margin-bottom: 15px;
	}

	.footer-copyright .footer-social-links ul {
		text-align: center;
	}

	.page-header {
		padding: 60px 0px;
		margin-top: 78px;
	}

	.page-header-box h1 {
		font-size: 36px;
	}

	.about-img-1 {
		width: 250px;
	}

	.about-img-2 img {
		width: 175px;
	}

	.experience-counter-item {
		padding: 10px 15px 10px 10px;
		width: 240px;
		top: 0;
	}

	.experience-counter-item .icon-box img {
		width: 40px;
	}

	.about-us-content-body ul li {
		width: 100%;
	}

	.trusted-companies-title h3 {
		font-size: 16px;
	}

	.why-choose-image::before {
		left: 50%;
		transform: translateX(-50%);
		background-size: contain;
		width: 150px;
		height: 200px;
	}

	.faq-accordion.why-choose-accordion .accordion-header .icon-box {
		top: 0;
	}

	.faq-accordion.why-choose-accordion .accordion-item .accordion-button span {
		font-size: 18px;
	}

	.faq-accordion.why-choose-accordion .accordion-item .accordion-button {
		font-size: 18px;
	}

	.why-choose-img-1 {
		margin-right: 20px;
	}

	.why-choose-img-2 {
		padding-top: 60px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.about-company-counter .company-counter-box {
		padding: 30px 30px 0;
	}

	.company-counter-item {
		margin-bottom: 30px;
		height: calc(100% - 30px);
	}

	.company-counter-item {
		margin-bottom: 30px;
		height: calc(100% - 30px);
	}

	.company-counter-item .company-counter-content h3 {
		font-size: 24px;
	}

	.company-counter-item .company-counter-content p {
		font-size: 16px;
	}

	.faq-img-1 {
		width: 250px;
	}

	.faq-img-2 img {
		width: 175px;
		border-width: 6px;
	}

	.faq-accordion .accordion-item .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
	}

	.service-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-box .cta-content h3 {
		font-size: 18px;
	}

	.service-entry h3 {
		font-size: 18px;
	}

	.company-growth-content h3 {
		font-size: 18px;
	}

	.company-growth-img {
		margin-bottom: 30px;
	}

	.post-entry blockquote {
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 20px 20px;
		background-size: 35px;
		padding: 55px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 30px;
	}

	.tag-links {
		font-size: 18px;
	}

	.project-single-content .project-section-title h3 {
		font-size: 18px;
	}

	.project-values-content ul {
		gap: 10px;
	}

	.project-values-content ul li {
		width: 100%;
		padding-left: 25px;
	}

	.project-values-content ul li:before {
		height: 14px;
		width: 14px;
		top: 6px;
	}

	.project-about-image .project-about-img-1 {
		margin-bottom: 20px;
	}

	.portfolio-info-box-title h3 {
		font-size: 18px;
	}

	.contact-info-box .contact-info-title h2 {
		font-size: 18px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.error-page-content-heading h2 {
		font-size: 30px;
	}
}


.counter-block {
	width: 100%;
	display: inline-block;
}

.counter-block .company-sales {
	width: 19%;
	margin-right: 9px;
	display: inline-block;
	box-shadow: inset 0px 0px 4px 6px #fff4f3;
	padding: 20px 25px 20px 15px;
}

.counter-block .company-sales-content {
	text-align: center;
}

.counter-block .company-sales-content h3 {
	font-size: 18px;
	font-weight: 700;
	color: #ff4438;
}



.technology-block {
	list-style: none;
	background: #fff;
	border-radius: 10px;
	box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
	text-align: center !important;
}

.hero-contact-box {
	position: relative;
	z-index: 1;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 60px hsla(0, 0%, 61%, .2);
	padding: 60px;
}

.hero-contact-box h4 {
	letter-spacing: -.88px;
	margin-bottom: 8px;
}

.hero-contact-box .contact-form-item {
	margin-top: 30px;
}

.hero-contact-box .contact-form-item .form-clt input {
	width: 100%;
	border-radius: 16px;
	border: 1px solid rgba(36, 37, 73, .1);
	background-color: #fff;
	padding: 18px 30px;
	color: #696969;
}

.whatsapp-app {
	bottom: 4%;
}

.google-app,
.ios-app,
.whatsapp-app {
	position: fixed;
	z-index: 2147483646;
	right: 38px;
}

.footer-rocket-icon {
	position: absolute;
	bottom: 57px;
	width: 90px;
	left: 50px;
	opacity: 0.4;
	animation: visitmoveobject 3s infinite linear alternate;
}

.footer-moniter-icon {
	position: absolute;
	top: 57px;
	width: 90px;
	right: 50px;
	opacity: 0.4;
	animation: visitmoveobject 3s infinite linear alternate;
}

.footer-shape-icon {
	position: absolute;
	bottom: 0;
	width: 595px;
	right: 0;
	opacity: 0.4;
}

.header-top {
	width: 100%;
	display: inline-block;
	background: #333;
	padding: 6px 0;
}

.header-top p {
	margin: 0;
	color: #e7e7e7;
}

.header-top ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 0;
	text-align: right;
}

.header-top ul li {
	display: inline-block;
	margin-right: 11px;
}

.header-top ul li a {
	color: #e8e8e8;
}

.header-top ul li a i {
	padding-right: 4px;
	color: #fbbc3b;
}

.image-block {
	position: relative;
	margin-bottom: 30px;
}

/*.about-section .image-block::before {
    position: absolute;
    content: "";
    top: 45px;
    left: 45px;
    right: 45px;
    bottom: 45px;
    border-width: 6px;
    border-style: solid;
    border-color: rgb(241, 242, 245);
    -o-border-image: initial;
    border-image: initial;
    border-radius: 3px;
}*/
.about-section .image-one {
	position: relative;
	margin-left: 130px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.27) 0px 5px 20px 0px;
	box-shadow: rgba(0, 0, 0, 0.27) 0px 5px 20px 0px;
	display: inline-block;
	border-radius: 6px;
}

.about-section .image-one .image-box {
	overflow: hidden;
	border-radius: 6px;
}

.about-section .image-one img {
	border-radius: 6px;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.about-section .image-two {
	position: relative;
	margin-top: 0;
	-webkit-box-shadow: rgba(0, 0, 0, 0.27) 0px 5px 20px 0px;
	box-shadow: rgba(0, 0, 0, 0.27) 0px 5px 20px 0px;
	display: inline-block;
	border-radius: 6px;
}

.about-section .image-two .image-box {
	position: relative;

}

.about-section .image-two .image-box:before {
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: -1;
	display: block;
	content: '';
	width: 50%;
	height: 39%;
	border-radius: 10px;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: linear-gradient(45deg, #e94b5d 0, #fbbc3b 60%, #52b9cc 100%);
}

.about-section .image-two .image-box:after {
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
	display: block;
	content: '';
	width: 50%;
	height: 39%;
	border-radius: 10px;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: linear-gradient(45deg, #e94b5d 0, #fbbc3b 60%, #52b9cc 100%);
}

.about-section .image-two img {
	border-radius: 6px;
}

.header-images-area {
	position: relative;
}

.header-images-area .main-images-area {
	position: relative;
	left: 100px;
}

.header-images-area .main-images-area .img1 {
	position: relative;
	left: 60px;
	z-index: 1;
}

.header-images-area .main-images-area .img1 img {
	height: 672.01px;
	width: 486.95px;
	-o-object-fit: cover;
	object-fit: cover;
}

.header-images-area .main-images-area .img2 {
	position: absolute;
	top: 0;
	z-index: -1;
	left: 0;
}

.header-images-area .main-images-area .img2 img {
	height: 100%;
	width: 100%;
	border-radius: 50%;
}

.header-images-area .main-images-area .icons-area .sound-icons1 {
	position: absolute;
	top: 0;
	width: 130px;
}

.header-images-area .main-images-area .icons-area .lite-icons1 {
	position: absolute;
	top: 40%;
	right: -70px;
	width: 108px;
}

.header-images-area .main-images-area .auhtor-icons .elements2 {
	position: absolute;
	top: 0;
	right: 110px;
}

.scrolled {
	background: #fff;
}

.header-images-area .main-images-area .auhtor-icons .elements3 {
	position: absolute;
	bottom: 140px;
	left: -44px;
}

.header-images-area .main-images-area .auhtor-images .header-author-img1 {
	position: absolute;
	bottom: 0;
	left: -180px;
}

.aniamtion-key-2 {
	position: relative;
	animation-name: animation-2;
	animation-duration: 2.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.btn-area {
	display: inline-block;
	align-items: center;
}

.btn-area .header-btn1 {
	margin-top: 32px;
}

.header-btn1 {
	display: inline-block;

	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	background: #e94a5c;
	color: #fff;
	padding: 8px 16px;
	transition: all 0.4s;
	border-radius: 30px;
	position: relative;
	z-index: 1;
}

.header-btn1 span {
	height: 36px;
	width: 36px;
	display: inline-block;
	border-radius: 50%;
	transition: all 0.4s;
	line-height: 36px;
	text-align: center;
	background: #fff;
	color: #272727;
	transform: rotate(-45deg);
	position: relative;
	left: 8px;
}

.header-btn1::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 1px;
	left: 50%;
	transition: all 0.4s;
	top: 0;
	z-index: -1;
	background: #d22a3d;
	border-radius: 30px;
	visibility: hidden;
	opacity: 0;
}

.header-btn1:hover {
	color: #fff;
	transition: all 0.4s;
	transform: translateY(-5px);
}

.header-btn1:hover span {
	transition: all 0.4s;
	transform: rotate(0deg);
}

.header-btn1:hover::after {
	visibility: visible;
	opacity: 1;
	width: 100%;
	left: 0;
	transition: all 0.4s;
}

.header-btn2 {
	display: inline-block;

	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	background: #4e2fda;
	color: #fff;
	padding: 8px 16px;
	transition: all 0.4s;
	border-radius: 30px;
	position: relative;
	background: transparent;
	z-index: 1;
	transition: all 0.4s;
}

.btn-area .header-btn2 {
	margin-top: 20px;
	margin-left: 16px;
	color: #e94a5c;
	border: 1px solid #e94a5c;
}

.header-btn2 span {
	height: 36px;
	width: 36px;
	display: inline-block;
	border-radius: 50%;
	transition: all 0.4s;
	line-height: 36px;
	text-align: center;

	transform: rotate(-45deg);
	position: relative;
	left: 8px;
}

.btn-area .header-btn2 span {
	background: #e94a5c;
	color: #fff;
}

.header-btn2:hover {
	color: #fff !important;
	transition: all 0.4s;
	transform: translateY(-5px);
	border: 1px solid #e94a5c;
	background: #e94a5c;
}

.header-btn2:hover span {
	background: #fff !important;
	transition: all 0.4s;
	color: #e94a5c !important;
	transform: rotate(0deg);
}

.footer-top-block {
	width: 100%;
	display: inline-block;
	padding: 40px 0;
}

.footer-top-block h4 {
	font-size: 20px;
	font-weight: 500;
}

.tab-images-all {
	position: relative;
	height: 450px;
	margin-top: 10px;
}

@media(max-width : 750px) {
	.tab-images-all .image4 {
		display: none;
	}

	.tab-images-all .image3 {
		display: none;
	}

	.tab-images-all .image1 {
		display: none;
	}

	.tab-images-all {
		height: 350px;
	}

	.tab-images-all .image2 {
		width: 100%;
		right: 0 !important;
		top: 0 !important;
	}
}

.tab-images-all .image1 {
	top: -50px;
	position: relative;
	margin-left: 100px;
}

.tab-images-all .image1 .stop-color2 {
	stop-color: #49A6FF;
}

.tab-images-all .image1 .stop-color1 {
	stop-color: #3B32F6;
}

.tab-images-all .image2 {
	position: absolute;
	top: 50px;
	right: 100px;
}

.tab-images-all .image3 {
	position: absolute;
	bottom: 0;
	left: 170px;
}

.tab-images-all .image4 {
	position: absolute;
	bottom: 60px;
	right: -40px;
}

.tab-images-all .image5 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.service-block {
	margin-bottom: 30px;
}

.service-block .inner-box {
	position: relative;
	background: #fff;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block .inner-box:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	max-height: 4px;
	z-index: 2;
	background-color: #e94a5c;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	content: "";
}

.service-block .inner-box .image-box {
	position: relative;
	min-height: 304px;
}

.service-block .inner-box .image-box .image {
	position: relative;
	margin-bottom: 0;
	background-color: #18191c;
}

.service-block .inner-box .image-box .image:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 40px;
	width: 100%;
	background-color: #fff;
	content: "";
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}

.service-block .inner-box .image-box .image img {
	width: 100%;
	min-height: 350px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block .inner-box .content-box {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
	padding: 16px 30px;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}

.service-block .inner-box .content-box .icon {
	position: absolute;
	right: 0;
	bottom: 100%;
	height: 64px;
	width: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fec63f;
	color: #18191c;
	font-size: 32px;
	z-index: 2;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block .inner-box .content-box .title {
	color: #18191c;
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 600;
}

.service-block .inner-box .hover-content {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	padding: 35px 30px 20px;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
}

.service-block .inner-box .hover-content::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #0e0f11;
	opacity: 0.9;
	content: "";
	border-bottom: 4px solid #fec63f;
}

.service-block .inner-box .hover-content .icon {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 64px;
	width: 64px;
	color: #18191c;
	font-size: 32px;
	background-color: #fec63f;
	margin-bottom: 25px;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block .inner-box .hover-content .title {
	color: #ffffff;
	margin-bottom: 18px;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block .inner-box .hover-content .text {
	color: #ffffff;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block .inner-box:hover .image-box .image:before,
.service-block .inner-box:hover .content-box {
	opacity: 0;
	visibility: hidden;
}

.service-block .inner-box:hover .hover-content {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.service-block .inner-box .hover-content::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #0e0f11;
	opacity: 0.9;
	content: "";
	border-bottom: 4px solid #e94a5c;
}

.service-block .inner-box:hover .hover-content .icon {
	opacity: 1;
	-webkit-transform: translate(0);
	transform: translate(0);
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}

.service-block .inner-box:hover .hover-content .title {
	opacity: 1;
	-webkit-transform: translate(0);
	transform: translate(0);
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}

.service-block .inner-box:hover .hover-content .title a {
	color: #e94a5c;
}

.service-block .inner-box:hover .hover-content .text {
	opacity: 0.8;
	-webkit-transform: translate(0);
	transform: translate(0);
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
}

.inner-page-contact .contact-form {
	background: #ffdcc8;
	padding: 0;
}

.inner-page-contact .contact-form .section-title h2 {
	color: #fff;
	padding: 16px 24px;
	background: #e94a5c;
	font-size: 24px;
	border-radius: 14px 14px 0 0;
	text-align: center;
}

.form-inner-main {
	padding: 0 24px 10px;
}

.case1-section-area {
	position: relative;
	z-index: 1;
	background: #fff4f3;
	padding: 80px 0;
}

.case1-section-area .case-header-area {
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
}

.star3 {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.keyframe5 {
	position: relative;
	animation-name: animation-7;
	animation-duration: 90s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.case-header-area h2 {
	font-size: 44px;
	line-height: 52px;
	font-weight: 600;
	color: #090b0e;
	margin-bottom: 16px;
}

.case-header-area p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #3d4c5e;
}

.case1-section-area .cs_case_study_1_list {
	display: flex;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1.active {
	flex: 3;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active {
	margin: 0px 8px;
	border-radius: 5px;
	height: 475px;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1 {
	min-height: 400px;
}

.case1-section-area .cs_case_study_1_list>.cs_case_study.cs_style_1 {
	flex: 1;
}

.case1-section-area .cs_case_study.cs_style_1 {
	height: 700px;
	display: flex;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_thumb {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.case1-section-area .cs_case_study_thumb {
	background-image: url(../images/local-seo-services-india/case-img1.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active.active .content-area1 {
	opacity: 0;
	transition: all 0.4s;
}

.case1-section-area .content-area1 {
	position: absolute;
	transform: rotate(-90deg);
	width: 290px;
	height: auto;
	left: -80px;
	bottom: 162px;
	transition: all 0.4s;
	opacity: 1;
}

.case1-section-area .content-area1 a {
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	text-transform: capitalize;
	transition: all 0.4s;
	width: 100%;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active.active .content-area {
	left: 0;
	transition: all 0.4s;
	opacity: 1;
}

.case1-section-area .content-area {
	position: absolute;
	z-index: 1;
	transition: all 0.4s;
	padding: 0 24px 24px 24px;
	bottom: 0;
	left: -100%;
	opacity: 0;
}

.case1-section-area .content-area a {
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	text-transform: capitalize;
	transition: all 0.4s;
	width: 100%;
	margin-bottom: 8px;
}

.content-area::before {
	content: '';
	position: absolute;
	/* background: #00000026; */
	width: 110%;
	left: -16px;
	box-shadow: 1px 82px 100px 134px #0000004f;
	/* top: -99px; */
	/* height: 10px; */
	z-index: -1;
}

.case1-section-area .content-area p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #ffffff;
	transition: all 0.4s;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb2 {
	background-image: url(../images/local-seo-services-india/case-img2.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb3 {
	background-image: url(../images/local-seo-services-india/case-img3.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb4 {
	background-image: url(../images/local-seo-services-india/case-img4.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb5 {
	background-image: url(../images/local-seo-services-india/case-img5.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb6 {
	background-image: url(../images/local-seo-services-india/case-img6.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb7 {
	background-image: url(../images/local-seo-services-india/case-img7.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


@keyframes bounceHero {
	0% {
		top: 0px;
	}

	50% {
		top: 25px;
	}

	100% {
		top: 0px;
	}


}


@keyframes animation-1 {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(30px);
	}
}

@keyframes animation-2 {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(50px);
	}
}

@keyframes animation-7 {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(-1000deg);
	}

}




@media (min-width: 1200px) and (max-width: 1600px) {
	.header-images-area .main-images-area {
		left: -60px;
	}

}

.service-inner2-section-area {
	position: relative;
	z-index: 1;
}

.sp8 {
	padding: 100px 0 0;
}

.service-inner2-section-area .instagram1 {
	position: absolute;
	right: 70px;
}

.service-inner2-section-area .linkedin1 {
	position: absolute;
	right: 50px;
	top: 50%;
}

.service-inner2-section-area .service-images {
	position: relative;
	left: -100px;
	z-index: 1;
}

.service-inner2-section-area .facebook1 {
	position: absolute;
	left: 50px;
	top: 20%;
}

.service-inner2-section-area .service-images .inner-bg1 {
	position: absolute;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
	z-index: -1;
	bottom: 0;
}

.best-seo-company .faq-accordion .accordion-item {
	margin-bottom: 5px;
}

.best-seo-company .accordion-header {
	background: #ffffff;
	margin-bottom: 0;
	padding: 5px 15px;
	border-radius: 0px;
	border: 1px solid #dbdbdb;
}

.services__bg-six {
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	background: #fff4f3;
}


.services__tab-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	gap: 30px;
}

.services__tab-wrap .nav-tabs {
	border-bottom: none;
	margin-bottom: 0;
	flex-direction: column;
	width: 330px;
}

.nav-tabs {
	/* gap: 24px; */
	justify-content: center;
}

.services__tab-wrap .nav-item {
	margin-bottom: 5px;
}

.services__tab-wrap .nav-link {
	display: flex;
	align-items: center;
	margin: 0;
	border-radius: 0;
	gap: 0;
	font-size: 16px;
	font-weight: 600;
	color: black;
	padding: 15px 10px 15px 10px;
	position: relative;
	border: 1px solid #bfbdbd;
	width: 330px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	background-color: white;
	text-align: start;
}

.nav-tabs .nav-link.active {
	color: #fff;
	background-color: #e94a5c;
	border-color: #e94a5c !important;
	position: relative;
	transition: 0s all linear;
	/* background-color: white; */
}

.nav-tabs .nav-link.active::after {
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	background: #e94a5c;
	transform: rotate(45deg);
	right: -17px;
	transition: all 3s ease-out 0s;
}


.services__content-four h2 {
	font-size: 25px;
	margin-bottom: 15px;
}

.services__content-four p {
	margin-bottom: 5px !important;
	text-align: justify;
}

.tab-content {
	padding: 60px;
	background: white;
	border: 1px solid #c9c9c9;
}

.features__area-two {
	padding: 120px 0 90px;
}

.features__item-two {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #c9c9c9;
	background: var(--tg-color-white-default);
	padding: 30px 30px;
	margin-bottom: 30px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.join {
	padding-left: 15px;
	list-style: none;
}

.join li {
	position: relative;
	transition: .3s all linear;
}

.join li::before {
	position: absolute;
	content: '';
	height: 5px;
	transform: rotate(45deg);
	width: 5px;
	top: 10px;
	left: -11px;
	background: #e94a5c;
}

.how-work-item:hover .join li {
	color: black;
}

.consulting-area {
	position: relative;
	z-index: 2;
}

.consulting-inner-wrap {
	background: var(--tg-theme-primary-500);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-o-border-radius: 15px;
	-ms-border-radius: 15px;
	border-radius: 15px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.consulting-content {
	background: #fff4f3;
	padding: 66px 65px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 24px;
}

.consulting-img {
	width: 392px;
	flex: 0 0 auto;
}

.shine-animate {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.shine-animate::before {
	position: absolute;
	top: 0;
	left: -100%;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.shine-animate-item:hover .shine-animate::before {
	-webkit-animation: hoverShine 1.2s;
	animation: hoverShine 1.2s;
}

@-webkit-keyframes hoverShine {
	100% {
		left: 125%;
	}
}

@keyframes hoverShine {
	100% {
		left: 125%;
	}
}

.consulting-content h2 {
	font-size: 25px;
}

.in-box .consulting-content {
	height: 215px;
}

canvas {
	display: block;
	box-sizing: border-box;
	height: 279px !important;
	width: 279px !important;
}

.custom-legend {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	max-width: 300px;
	margin: 20px auto 0;
}

.legend-item {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.legend-box {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border-radius: 4px;
}

.canva-inste {
	display: flex;
	padding: 20px;
	border: 1px solid #c3bebe;
}

.main-box {
	text-align: end;
}

.core-feature-inner {
	text-align: center;
	min-height: 215px;
	background: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
	margin: 15px 0;
	border-radius: 20px;
	padding: 50px 10px 0 10px;
}

.core-feature-inner h3 {
	font-size: 17px;
	color: black;
	font-family: Roboto, sans-serif;
	margin: 0 0 8px;
	font-weight: 400;
	display: inline-block;
	width: 100%;
	line-height: 25px;
}

.core-feature-inner img {
	filter: grayscale(1);
}

.flowImg {
	width: 100px;
	height: 100px;
	/* line-height: 96px; */
	margin-bottom: 15px;
	border-radius: 94px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
	display: flex;
	justify-content: center;
	background: white;
	margin-left: auto;
	align-items: center;
	margin-right: auto;
}

.singleFlow p {
	font-weight: 700;
	font-size: 18px;
	text-align: center;
}

.singleFlow img {
	width: 55%;
	object-fit: contain;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.main-box p {
	background: #e03d50;
	padding: 10px;
	color: white;
	/* width: 90%; */
	display: flex;
	justify-content: start;
	align-items: end;
	font-size: 18px;
	margin-left: 30px;
	position: relative;
}

.main-box p::before {
	position: absolute;
	content: '';
	background: #e03d50;
	height: 20px;
	transform: rotate(45deg);
	width: 20px;
	left: -10px;
	top: 17px;
	z-index: -1;

}

.number-list {
	background: #fbbc3b;
	padding: 10px;
	width: 30px;
	align-items: center;
	height: 30px;
	justify-content: center;
	display: flex;
	margin-right: 10px;
	color: black;
	font-weight: 900;
	border-radius: 50%;
}

.pricing-table {
	width: 100%;
	max-width: 1200px;
	border-collapse: collapse;
	margin: auto;
	font-size: 14px;
	color: #333;
}

.pricing-table .feature-title {
	text-align: left;
	font-weight: bold;
	background-color: #f9f9f9;
}

.pricing-table th,
.pricing-table td {
	padding: 12px;
	border: 1px solid #ddd;
	text-align: center;
}

.pricing-table .basic {
	background-color: #FAF9F7;
	color: #000000;
}

.pricing-table .standard {
	background-color: #FFF3F4;
	color: #000000;
}

.pricing-table .premium {
	background-color: #FFF5E1;
	color: #000000;
}

.pricing-table th,
.pricing-table td {
	padding: 12px;
	border: 1px solid #ddd;
	text-align: center;
}

.section-header {
	background: linear-gradient(90deg, #EE495C, #FBBC3B);
	font-weight: bold;
	text-align: left !important;
	padding-left: 10px;
	color: #FFFFFF;
}

.basic-title {
	color: #52B9CC;
}

.basic-title,
.standard-title,
.premium-title {
	font-size: 32px;
}

.standard-title {
	color: #E94B5D;
}

.premium-title {
	color: #FBBC3B;
}

.package-amt {
	font-size: 24px;
	color: #000000;
}

.advance-btn {
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	text-transform: capitalize;
	background-image: linear-gradient(to right, var(--accent-color) 0%, var(--gradient-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	padding: 9px 20px;
	border-radius: 10px;
	border: none;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.advance-btn:hover {
	background-position: right center;
}


.top_errow {
	height: 36px;
	width: 36px;
	display: inline-block;
	border-radius: 50%;
	transition: all 0.4s;
	line-height: 36px;
	text-align: center;
	background: #fff;
	color: #272727;
	transform: rotate(-45deg);
	position: relative;
	left: 8px;
}

.btn-default:hover .top_errow {
	transform: rotate(0);
}

.services-section-five {
	position: relative;
	padding: 100px 0 70px;
	background-color: #eff2f5;
}

.service-block-five {
	position: relative;
}

.service-block-five .inner-box {
	position: relative;
	margin-bottom: 30px;
	transition: .5s;
}

.service-block-five .inner-box:before {
	position: absolute;
	content: "";
	left: 20px;
	right: 20px;
	bottom: 0;
	height: 20px;
	opacity: .3;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	transition: .5s;
	background-color: #52b9cc;
}

.service-block-five .inner-box .content-box {
	position: relative;
	padding: 25px 20px 20px 105px;
	border-radius: 6px;
	transition: .5s;
	background-color: #fff;
	z-index: 9;
	min-height: 00px;
}

.service-block-five .inner-box .content-box:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: #52b9cc;
	opacity: 0;
	transition: .5s;
	transform: perspective(400px) rotateX(-90deg);
	transform-origin: top;
	border-radius: 6px;
}

.service-block-five .icon {
	position: absolute;
	top: 1px;
	left: 30px;
	font-size: 60px;
	padding-right: 8px;
	/* line-height: 60px; */
	color: #a3b4ce;
	border-right: 1px solid #e1e5e9;
	transition: .5s;
}

.service-block-five h4 {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	transition: .5s;
}

.service-block-five h4 a {
	color: #000;
}

.service-block-five .inner-box:after {
	position: absolute;
	content: "";
	left: 10px;
	right: 10px;
	bottom: 0;
	height: 10px;
	opacity: .5;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	background-color: #52b9cc;
	transition: .5s;
}

.service-block-five .inner-box:hover .content-box:before {
	transform: perspective(400px) rotateX(0deg);
	opacity: 1;
}

.service-block-five .inner-box:hover .icon {
	border-color: #4b65a4;
}

.service-block-five .inner-box:hover:before {
	bottom: -10px;
}

.service-block-five .inner-box:hover:after {
	bottom: -5px;
}

.service-block-five .inner-box:hover h4 {
	color: white;
}

.new-about p {
	text-align: justify;
	color: var(--text-color);
	margin-top: 0 !important;
	margin-bottom: 0;
}

.cta-sec5 {
	padding: 60px;
	position: relative;
	z-index: 2;
}

.cta-area4 {
	max-width: 1720px;
	display: block;
	margin: auto;
	background-color: #dfdfdf;
}

.title-area {
	margin-bottom: calc(var(--section-title-space) - 12px);
	position: relative;
	z-index: 2;
}

.sub-title8 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--theme-color);
	display: block;
	margin-top: -0.3em;
}

[data-overlay="title"]:before {
	background-color: #0E121D;
}

[data-overlay]:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}


.call-section {
	padding: 111px 0;
	position: relative;
	background-image: url(../images/call-background.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;

}

.back-images-1 {
	position: absolute;
	top: 0;
	left: 0;
}

.back-images-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.request-content .content-bottom {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.request-content .content-bottom .content-right {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	gap: 15px;
}

.request-content .content-bottom .content-right .content a {
	color: white;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--tg-heading-font-family);
}

.request-content .content-bottom .content-right .icon {
	font-size: 36px;
	line-height: 0;
	color: white;
}

.soft-ware {
	display: flex;
	align-items: center;
	list-style-type: none;
	padding: 0;
}

.soft-ware li {
	border: 2px solid #efefef;
	margin: 0 10px;
}

.services__bg-seven {
	background-size: cover;
	background-position: center;
	padding: 120px 0 90px;
	position: relative;
	z-index: 1;
}

.services__item-six {
	border: 0px;
	box-shadow: none;
	display: flex;
	align-items: flex-start;
	padding: 0px;
	/* margin-bottom: 55px; */
}

.bg-transparent {
	--bs-bg-opacity: 1;
	background-color: transparent !important;
}

.services__item-six .services__icon-five {
	height: 70px;
	width: 70px;
	border: 1px dashed #838383;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	padding: 30px;
}

.services__icon-five {
	position: relative;
	z-index: 1;
	color: #52b9cc;
	font-size: 30px;
	line-height: 0;
	display: inline-block;
	margin-bottom: 0px;
}

.services__item-five .icon {
	transition-duration: 0.3s;
}

.services__icon-shape .shape:nth-child(1) {
	position: relative;
	z-index: -1;
	left: 32%;
	bottom: 16px;
	-webkit-transform: translate(-50%, -50%);
}

.shape svg {
	border: 1px dashed #485188;
	border-radius: 50%;
	padding: 3px;
}

.services__content-five h2 a {
	font-size: 19px;
	color: #222f62;
}

.title a {
	color: #485188;
	font-size: 17px;
}

.services__content-five {
	margin-left: 25px;
}

.UX_Design ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0;
	list-style: none;
	padding: 0;
}

.what-to-do {
	padding: 30px;
	border: 1px solid #bdbdbd;
	border-radius: 10px;
	margin-bottom: 60px;
	box-shadow: 1px 1px 16px -9px black;
	position: relative;
	background-color: white;
}

.inner-do {
	position: absolute;
	font-size: 25px;
	background: #e94a5c;
	padding: 5px 20px;
	color: white;
	border-radius: 12px;
	top: -20px;
	right: 28%;
}

.what-need {
	list-style-type: none;
	position: relative;
}

.what-need ::before {
	background-image: url(../images/check.png);
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	object-fit: cover;
	background-repeat: no-repeat;
	left: 0;
}

.dont-need {
	list-style-type: none;
	position: relative;
}

.dont-need ::before {
	background-image: url(../images/close.png);
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	object-fit: cover;
	background-repeat: no-repeat;
	left: 0;
}

.UX_Design ul li {
	flex-basis: 23%;
	border-radius: 5px;
	margin: 7px 7px;
	border: 1px solid #ccc;
	background: #fff;
}

.UX_Design ul li a {
	padding: 13px 13px;
	display: flex;
	align-items: center;
	color: #444343;
	font-size: 17px;
}

.UX_Design ul li a img {
	width: 46px;
	margin-right: 10px;
}

.list-tab .nav-tabs .nav-link.active::after {
	position: absolute;
	content: '';
	width: 26.5px;
	height: 26.5px;
	background: #e94a5c;
	transform: rotate(45deg);
	right: 44%;
	top: 49px;
	transition: 0s !important;
}

.list-tab .nav-tabs .nav-link.active svg {
	filter: sepia(178);
}

.target-list {
	margin: 0 5px;
	border: 1px solid #d5d2d2 !important;
}

.tex-plan {
	font-size: 18px;
	color: #5c5b5b;
}

.list-tab .nav-tabs .nav-link.active .tex-plan {
	color: white;
}

.wordpress-section {
	width: 100%;
	float: left !important;
	padding-bottom: 60px;
}

.wordpress-section-2 {
	width: 100%;
	float: left;
	background: url(../images/wordpress-back-bg.png) repeat;
	position: relative;
	padding: 80px 0;
}

.pattern-3 {
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
}

.pattern-3 {
	position: absolute;
	left: 50%;
	top: 50%;
}

.rotateme {
	animation-name: rotateme;
	animation-duration: 40s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: rotateme;
	-webkit-animation-duration: 40s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: rotateme;
	-moz-animation-duration: 40s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: rotateme;
	-ms-animation-duration: 40s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: rotateme;
	-o-animation-duration: 40s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.rotateme {
	animation-name: rotateme;
	animation-duration: 40s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: rotateme;
	-webkit-animation-duration: 40s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

@keyframes rotateme {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotateme {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes rotateme {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(360deg);
	}
}

@-o-keyframes rotateme {
	from {
		-o-transform: rotate(0deg);
	}

	to {
		-o-transform: rotate(360deg);
	}
}

.hover-center1 {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: visible;
}

.expertise-box {
	width: 100%;
	text-align: center;
	padding: 40px;
	margin-bottom: 30px;
	position: relative;
	transition: all 0.5s ease;
	border-bottom: 2px solid #fff;
	box-shadow: 0 20px 40px 0 rgba(153, 153, 153, 0.2);
	border: 2px dashed #e2dfdf;
}

.hover-center1:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	right: 50%;
	bottom: -3px;
	background: #e94a5c;
	height: 5px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.expertise-box .icon {
	width: 147px;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 30px;
	position: relative;
}

/* .wordpress-section-2 .col-xl-3:first-child .icon img {
    width: 120px;
} */
.icon img {
	width: 62px;
}

.zist-cont p {
	font-size: 17px;
}

.hover-center1:hover:before,
.hover-center1:focus:before,
.hover-center1:active:before {
	left: 0;
	right: 0;
}

.expertise-box:hover {
	box-shadow: 0 20px 23px -5px rgba(0, 0, 0, .2);
	background: #fff;
}

.features-section-four {
	position: relative;
}

.features-section-four .wrapper-box {
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, .15);
	margin-top: -140px;
	position: relative;
	z-index: 9;
	background: #fff;
	border-radius: 6px;
}

.features-section-four .outer-box {
	border-radius: 6px;
	overflow: hidden;
}

.feature-block-four .inner-box {
	position: relative;
	padding: 40px 30px;
	text-align: center;
	overflow: hidden;
}

.feature-block-four .inner-box:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	transition: .5s;
	background-color: #fd4a36;
}

.feature-block-four .icon {
	margin-bottom: 34px;
	position: relative;
	z-index: 9;
}

.feature-block-four h4 {
	position: relative;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	transition: .5s;
}

.feature-block-four .text {
	position: relative;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
	transition: .5s;
}

.feature-block-four .inner-box:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 230px;
	opacity: 0;
	transition: .5s;
	transform: scaleY(0) translateY(-115px);
	transform-origin: top;
	background-color: #76a838;
	border-radius: 50%;
	transition-delay: .3s;
}

.feature-block-four .inner-box:hover:before {
	height: 100%;
	opacity: 1;
}

.feature-block-four .inner-box:hover:after {
	opacity: 1;
	transform: scaleY(1) translateY(-115px);
}

.feature-block-four {
	position: relative;
	padding: 0;
}

.packages-report {
	position: relative;
	padding: 24px;
	padding-top: 70px;
}

.inner-package {
	top: 0;
	padding: 10px;
	width: 100%;
	left: 0;
	background: #fbbc3b;
	text-align: center;
	position: absolute;
	z-index: 12;
}

.inner-package h4 {
	font-size: 18px;
}

.packages-report p {
	height: 140px;
}

section.pack-call-to-action {
	background: #52b9cc;
}

section.pack-call-to-action h2 {
	color: #fff;
	font-size: 25px;
	/* font-family: poppinsbold; */
	text-align: center;
	text-transform: uppercase;
}

section.pack-call-to-action p {
	color: #fff;
}

.justify-content-center {
	justify-content: center !important;
	align-items: center;
}

section {
	padding: 50px 0;
}

.client-review-btn a {
	color: #52b9cc;
	padding: 15px 55px;
	background: white;
	border-radius: 20px;
	font-size: 17px;
	font-weight: 800;
	border: 1px solid #52b9cc;
	transition: .3s all linear;
}

.client-review-btn a:hover {
	background: #52b9cc;
	color: white;
	border: 1px solid white;
}

.section-title {
	position: relative;
	margin-bottom: 26px;
}

.section-title .title-header {
	position: relative;
	margin-bottom: 17px;
}

.sep_holder_box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
}

.sep_holder_box .sep_holder {
	height: 1px;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 10%;
}

.sep_holder .sep_line {
	height: 1px;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	display: block;
	position: relative;
	top: 1px;
	margin-top: 35px;
	width: 100%;
}

.ttm-bg {
	position: relative;
}

.col-bg-img-eleven.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	/* background-image: url(../images/meshvin-media.png); */
	background-position: right top !important;
	background-repeat: no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 1600px) and (min-width: 1401px) {
	.ttm-right-span .ttm-col-wrapper-bg-layer {
		margin-right: -300px;
	}
}

.ttm-right-span .ttm-col-wrapper-bg-layer {
	width: auto;
	margin-right: -100px;
	right: 0;
}

.ttm-bg-layer,
.ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer,
.ttm-col-wrapper-bg-layer-inner {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.layer-content {
	position: relative;
	z-index: 1;
}

.w-auto {
	width: auto !important;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.features-list {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 10px;
	margin-left: -10px;
	margin-right: -10px;
}

.features-list li {
	flex: 0 0 33%;
	max-width: 50%;
	margin-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.features-list li span {
	display: block;
	background-color: #ffffff;
	border-radius: 5px;
	padding: 13px 12px 8px 40px;
	z-index: 1;
	position: relative;
	transition: 0.5s;
	font-weight: 600;
	font-size: 15.5px;
}

.features-list li span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	border-radius: 5px;
	background-color: #e94a5c;
	z-index: -1;
	transition: 0.5s;
}

.features-list li span i {
	font-size: 12px;
	color: #ffffff;
	background-color: #e94a5c;
	width: 23px;
	height: 23px;
	line-height: 23px;
	transition: 0.5s;
	text-align: center;
	border-radius: 3px;
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.features-list li span:hover {
	color: #ffffff;
}

.about-content .features-list li span:hover::before {
	width: 100%;
}

.about-content .features-list li span:hover i {
	background-color: #fa7070;
}

.development-process {
	clear: both;
}

.development-process {
	padding: 80px 0px;
	overflow: hidden;
}

.pattern-background .little-circle {
	transition-duration: .1s;
	width: 100%;
	display: block;
	height: 100%;
	top: 0;
	z-index: 1;
	position: absolute;
}

.pattern-background .little-circle:before {
	right: -50px;
	bottom: -100px;
	content: '';
	display: block;
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 100%;
	opacity: .3;
	border: solid 13px #c0c0c0;
}

.pattern-background .little-circle:after {
	top: -50px;
	left: -100px;
	content: '';
	display: block;
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 100%;
	opacity: .3;
	border: solid 13px #c0c0c0;
}

.pattern-background .pattern {
	transition-duration: .1s;
	width: 100%;
	display: block;
	height: 100%;
	top: 0;
	z-index: 1;
	position: absolute;
}

.pattern-background>div:last-child {
	position: relative;
	z-index: 1;
}

.development-process.pattern-background .process {
	background-image: url(../images/line-art.png);
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px;
}

.development-process .process {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.development-process .process .col {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.process img {
	filter: hue-rotate(45deg);
}

.development-process.pattern-background .process .col:nth-child(4) {
	transform: translateY(35px);
}

.development-process.pattern-background .process .col:nth-child(5) {
	transform: translateY(95px);
}

.development-process.pattern-background .process .col:first-child {
	transform: translateY(100px);
}

.development-process.pattern-background .process .col:nth-child(2) {
	transform: translateY(50px);
}

.bestintechnology .technology-stack ul h4 {
	color: #fff;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	background: #e94a5c;
	padding: 13px 15px;
	border-radius: 16px 16px 0 0;
}

.bestintechnology .technology-stack ul {
	list-style: none;
	background: #fff;
	border-radius: 20px;
	padding: 0px;
	height: 100%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.benefitswrapper p,
.bestintechnology .technology-stack ul li,
.chooseuswrapper p {
	font-size: 16px !important;
}

.bestintechnology .technology-stack ul li {
	position: relative;
	left: 0px;
	border-bottom: 1px solid #d9d9d9;
	padding: 8px 8px 8px 37px;
	margin: 0 8px;
	font-family: 'Inter', sans-serif !important;
}

.bestintechnology .technology-stack ul li img {
	width: 25px;
	margin-right: 10px;
	position: absolute;
	left: 5px;
	top: 3px;
	height: 30px;
	object-fit: contain;
}

.lazyloaded {
	opacity: 1;
	transition: opacity 400ms;
}

.clearfix:after,
.clearfix:before {
	content: ' ';
	display: table;
	line-height: 0;
	clear: both;
}

.agency__column--item {
	height: 100%;
	padding: 6px 40px 54px;
	border-bottom: none;
	margin: 0;
	text-align: left;
	border-right: 1px solid rgba(0, 0, 0, .2);
	display: flex;
}

.agency__column--item-info h4 {
	font-weight: 300;
	font-size: 23px;
}

.swiper-desk-img img {
	background: #ffffff;
	padding: 30px;
	border: 1px solid #d7d7d7;
}




.agency__column--item-info {
	width: calc(100% - 89px);
	float: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 89px;
	padding-left: 16px;
}

#invoice thead tr:first-child th:first-child {
	font-size: 23px;
	background: linear-gradient(90deg, #EE495C, #FBBC3B);
	color: white;
}

.clearfix:after,
.clearfix:before {
	content: ' ';
	display: table;
	line-height: 0;
	clear: both;
}

.choose-us__column--row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.choose-us__column--item {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}



.choose-us__column--item:first-child .choose-us__column--item-box,
.choose-us__column--item:nth-child(3) .choose-us__column--item-box {
	background: #d0f7ff;
}

.choose-us__column--item:nth-child(2) .choose-us__column--item-box {
	background: #f8cfff;
}

.choose-us__column--item:nth-child(4) .choose-us__column--item-box {
	background: #ffe7b7;
}

.choose-us__column--item:last-child .choose-us__column--item-box {
	background: #d4e6ff;
}

.choose-us__column--item-box {
	height: 250px;
	text-align: center;
	padding: 50px 20px;
}

.choose-us__column--item-box img {
	display: inline-block;
	margin-bottom: 26px;
}

.choose-us__column--item-box h3 {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: black;
	line-height: 1.3em;
}

.product__essential--column {
	margin: 48px 0 28px;
}

.product__essential--column-item {
	text-align: center;
	margin-bottom: 20px;
}

.product__essential--column-item img {
	display: inline-block;
}

.footer-call-email {
	color: white;
}

.footer-call-email:hover {
	color: #e94a5c;
}

@media(max-width:750px) {
	.canva-inste {
		flex-direction: column;
	}

	.choose-us__column--row {
		flex-direction: column;
	}

	.choose-us__column--item {
		max-width: 100%;
	}

	.consulting-inner-wrap {
		flex-direction: column;
	}

	.consulting-content {
		padding: 30px !important;
	}

	.soft-ware {
		flex-wrap: wrap;
	}

	.target-list {
		margin: 30px 0;
	}

	.soft-ware li {
		margin: 5px 13px;
	}

	.development-process .process {
		flex-direction: column !important;
	}

	.development-process.pattern-background .process .col:first-child {
		transform: translateY(0px);
	}

	.development-process.pattern-background .process .col:nth-child(2) {
		transform: translateY(0px);
	}

	.development-process.pattern-background .process .col:nth-child(4) {
		transform: translateY(0px);
	}

	.fix-height {
		height: 340px !important;
		overflow: scroll;
	}

	.development-process.pattern-background .process .col:nth-child(5) {
		transform: translateY(0px);
	}

	.main-box p {
		background: #e03d50;
		padding: 10px;
		color: white;
		/* width: 90%; */
		display: flex;
		justify-content: start;
		align-items: start;
		font-size: 18px;
		margin-left: 30px;
		position: relative;
		text-align: start;
	}

	.main-menu ul li a {
		padding: 10px 20px 10px 35px !important;
	}

	.main-box {
		margin-top: 10px;
	}

	.services__tab-wrap {
		flex-direction: column;
	}

	.tab-content {
		padding: 20px;
	}

	.case1-section-area .cs_case_study_1_list {
		flex-direction: column;
	}

	.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_thumb {
		top: 20px;
	}

	.mobile-view-mesh {
		ul li i {
			display: none !important;
		}
	}

	.nav-link i {
		display: none !important;
	}

	.request-content .content-bottom {
		flex-direction: column;
	}

	.back-images-1 {
		display: none;
	}

	.UX_Design ul {
		flex-direction: column;
	}

	.packages-report p {
		height: auto;
	}

	.header-images-area .main-images-area {
		position: relative;
		left: 0;
	}

	.header-images-area .main-images-area .img1 img {
		height: 99%;
		width: 100%;
	}

	.header-images-area .main-images-area .img1 {
		left: 0;
	}

	.client-review-btn {
		text-align: center;
	}

	.features-list {
		flex-direction: column;
	}

	.agency__column--item {
		border-right: none;
	}

	.mobile-list {
		margin: 10px 0;
	}


	.features-list li {
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.agency__column--item {
		width: 100%;
		text-align: center;
		padding: 0 0 20px;
		border-bottom: 1px solid rgba(0, 0, 0, .2);
		margin: 0 0 20px;
	}

	.inner-do {
		right: 46px;
		top: -13px;
		font-size: 22px;

	}

	.slicknav_nav {
		clear: both;
		color: #fff;
		margin: 0;
		overflow: scroll;
		height: 100vh;
		font-size: .875em;
	}

}

.po-down .contact-form .form-control {
	border: 1px solid #cfcfcf !important;
	background-color: white;
}

.po-down .contact-form {
	border-radius: 0 !important;
}

.po-down .contact-form-content {
	padding: 30px;
	background: linear-gradient(90deg, #EE495C, #FBBC3B);
}

.po-down .btn-primary {
	background: linear-gradient(90deg, #EE495C, #FBBC3B);
	border: none;
	padding: 10px 20px;
}

.contact_now_button {
	list-style: none;
	padding: 0;
	display: flex;
}

.contact_now_button li {
	padding: 10px;
	border: 1px solid white;
	border-radius: 50%;
	margin: 5px;
	width: 30px;
	color: white;
	align-items: center;
	justify-content: center;
	display: flex;
	height: 30px;
}
.contact_now_button li i{
	    color: white;
}
.contact_now_button li:hover ,.contact_now_button li:hover i {
	background: white;
	color: red;
}