/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Artistic - Creative Digital Agency HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Agency css
07. Our Services css
08. Digital Success css
09. Why Choose Us css
10. Join Agency css
11. How It Work css
12. Our Features css
13. Our Portfolio css
14. Our Testimonial css
15. Agency Benefits Css
16. Our Blog Css
17. Footer css
18. About Us Page css
19. Services Page css
20. Services Single css
21. Blog Archive css
22. Blog Single css
23. Project Page css
24. Project Single css
25. Team Page css
26. Team Single css
27. Pricing Page css
28. Testimonial Page css
39. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. 404 Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

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

:root {
	--primary-color: #FFFFFF;
	--secondary-color: #1B1B1B;
	--text-color: #F5F5F4;
	--accent-color: #1cb2ac;
	--dark-color: #000000;
	--divider-color: #FFFFFF1A;
	--dark-divider-color: #F7FBFA1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Plus Jakarta Sans", sans-serif;
}

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

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6em;
	color: var(--text-color);
	background: url('../images/section-bg-shape.png') var(--dark-color);
	background-repeat: repeat-y;
	background-position: top 900px center;
	background-size: 100% auto;

}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;


}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}


.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	text-transform: capitalize;
	background: transparent;
	color: var(--primary-color);
	border-radius: 100px;
	padding: 14px 25px;
	margin-right: 50px;
	border: none;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	border-radius: 100px;
	opacity: 20%;
	width: 100%;
	height: 100%;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--accent-color);
	background-image: url('../images/arrow-dark.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(50px, 0px);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	background-color: var(--primary-color);
	transform: translate(50px, 0px) rotate(45deg);
}

.btn-highlighted {
	position: relative;
	display: inline-block;
	line-height: 1.3em;
	font-size: 16px;
	font-weight: 700;
	background: var(--accent-color);
	color: var(--dark-color);
	text-transform: capitalize;
	border-radius: 10px;
	padding: 15px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--dark-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);
	}
}

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

.section-row .section-title {
	width: 100%;
	max-width: 605px;
	margin-bottom: 0;
}

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

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

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon-sub-heading.svg) no-repeat;
	background-position: left center;
	background-size: cover;
	width: 16px;
	height: 16px;
}

.section-title h1 {
	font-size: 120px;
	font-weight: 300;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;

}

.section-title h1 span {
	font-weight: 800;
	color: var(--accent-color);
}

.section-title h2 {
	font-size: 44px;
	font-weight: 300;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;

}

.section-title h2 span {
	font-weight: 700;
	color: var(--accent-color);
}

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

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

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

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

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

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

header.main-header {

	top: 0;
	width: 100%;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
	background-color: #fafafa;
}

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(--dark-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

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

.nav-link.active{
	color: var(--accent-color)!important;
}

.navbar-brand {
	padding: 0;
	margin: 0;
	width: 190px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: right;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item a {
	font-size: 16px;
	font-weight: 600;
	padding: 15px !important;
	color: #202020;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

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

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

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item a {
	color: var(--dark-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

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


body:has(:not(.offcanvas)) {
	padding-right: initial !important;

}

body:has(.offcanvas) {
	padding-right: 0 !important;
}

.header-btn .offcanvas {
	position: fixed;
	top: 0;
	bottom: 0;
	left: auto;
	right: -15px;
	background: var(--secondary-color) !important;
	border-radius: 0;
	opacity: 100%;
	width: 100% !important;
	height: 100% !important;
	max-width: 375px;
	border: none;
	padding: 150px 37px 150px 30px;
	transform: translateX(100%) !important;
	z-index: 101;
	transition: all 0.3s ease-in-out !important;
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
	transform: translateX(0) !important;
}

.navbar-expand-lg .offcanvas .offcanvas-body {
	display: block;
}




/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;

	background-size: 100% 160%;
}

.hero img {
	width: 100%;
}

/* black overlay layer */
/*.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	/* 30% black overlay */
/*z-index: 1;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #222;
	padding: 0 1rem;
	background: rgba(0, 0, 0, 0.7);
	
}*/

/* hero content on top */




.swiper-container {
	width: 100%;
	height: 100%;
	margin: 0;
	text-align: center;
}

.swiper-wrapper {
	display: flex;
	height: 100%;
}

.swiper-slide {
	height: 100%;
	display: inline-flex;
}

.swiper-card {
	width: 100%;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23221e1f'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23221e1f'%2F%3E%3C%2Fsvg%3E");
}






/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {

	padding: 26px 0;


}

.max-width.mt {

	margin: auto;
	margin-bottom: 60px;

}

.scrolling-ticker-box::before {
	content: '';
	width: 150px;
	height: 80px;
	display: block;
	position: absolute;
	left: 0;
	z-index: 1;
	background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.scrolling-ticker-box::after{
	content: '';
	width: 150px;
	height: 80px;
	display: block;
	position: absolute;
	right: 0;
	z-index: 1;
	background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}



.scrolling-ticker-box {
	--gap: 0px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	margin: 0 20px 50px;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 100s linear infinite;

}

.scrolling-content span {
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--dark-color);
	vertical-align: middle;
}

.scrolling-content span img {
	width: auto;
	height: 80px;
	margin-right: 40px;
	border-radius: 10px;
	background-color: #fff;
	padding: 10px 20px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***     06. About Agency css	  ***/
/************************************/

.about-agency {
	position: relative;
	padding: 60px 0 80px;
}

.max-width {
	width: calc(100% - 40px);
	margin: auto;
}

.about-agency::before {
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	top: 50%;

	background-position: left center;
	background-size: contain;
	opacity: 50%;
	width: 386px;
	height: 400px;
	animation: circlerotate 20s infinite linear;
	z-index: -1;
}

@keyframes circlerotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-agency-content {
	position: sticky;
	top: 100px;
	padding-right: 35px;
}

.about-agency-list {
	border-left: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	gap: 50px 30px;
	padding-left: 50px;
}

.about-agency-item {
	width: 100%;
}

.about-agency-item .icon-box {
	margin-bottom: 20px;
}

.about-agency-item .icon-box img {
	max-width: 40px;
}

.agency-item-content h3 {
	position: relative;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.agency-item-content h3:after {
	content: '';
	position: absolute;
	top: 0;
	left: -60px;
	background: url('../images/dot-green-icon.svg') no-repeat;
	background-position: left center;
	background-size: cover;
	width: 20px;
	height: 20px;
}

.agency-item-content p:last-child {
	margin: 0;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	padding: 50px 0;
}

.service-item {
	position: relative;
	background: url('../images/service-bg.svg') no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	height: calc(100% - 30px);
	margin-bottom: 10px;
	padding: 20px 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	display: block;
	color: #fff;
}

.service-item:hover {
	transform: translateY(-5px);
}


/* Create the corner borders, hidden initially */
.service-item::before,
.service-item::after {
	content: "";
	position: absolute;
	width: 20%;
	height: 20%;
	transition: all 0.4s ease;
	opacity: 0;
	z-index: 2;
}

/* Top-right corner */
.service-item::before {
	top: 20px;
	right: 20px;
	border-top: 2px solid var(--accent-color);
	border-right: 2px solid var(--accent-color);
	transform: translate(10px, -10px);
	border-top-right-radius: 30px;

}

/* Bottom-left corner */
.service-item::after {
	bottom: 20px;
	left: 20px;
	border-bottom: 2px solid var(--accent-color);
	border-left: 2px solid var(--accent-color);
	transform: translate(-10px, 10px);
	border-bottom-left-radius: 30px;

}

/* When hovered — corners slide in and appear */
.service-item:hover::before,
.service-item:hover::after {
	transform: translate(0, 0);
	opacity: 1;
}

.service-item:hover::before {
	top: 0;
	right: 0;
}

.service-item:hover::after {
	bottom: 0;
	left: 0;
}


/* .service-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	opacity: 40%;
} */

.service-item-header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-item-header .icon-box img {
	max-width: 60px;
}

.service-arrow a img {
	max-width: 34px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-arrow a img {
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

.service-item-body {
	position: relative;
	margin-bottom: 30px;
}

.service-item-body h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
	margin-top: 20px;
}

.service-item-body p {
	margin-bottom: 10px;
	margin-top: 10px;
}

.service-item-body img {
	width: 100%;
	max-width: 500px;
	height: 260px;
	border-radius: 10px;
	margin: 20px 0;
	display: block;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-footer {
	margin-top: 20px;
}

.service-footer p {
	text-align: center;
	margin-bottom: 0;
}

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

.service-footer p a:hover {
	color: var(--primary-color);
}





/************************************/
/***      10. Join Agency css     ***/
/************************************/

.join-agency {
	padding: 0px 0 0px;
}

.agency-social-item {
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0 30px 30px;
	padding: 30px 40px 30px 70px;
	transition: all 0.3s ease-in-out;
}

.agency-social-item .icon-box {
	position: absolute;
	top: -30px;
	left: -30px;
}

.agency-social-item .icon-box a {
	position: relative;
	display: block;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.agency-social-item:hover .icon-box a {
	background-color: transparent;
}

.agency-social-item .icon-box a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--secondary-color);
	border-radius: 50%;
	transform: translate(100%, 100%);
	transition: all 0.4s ease-in-out;
}

.agency-social-item:hover .icon-box a::before {
	transform: translate(0);
}

.agency-social-item .icon-box i {
	position: relative;
	font-size: 40px;
	color: var(--dark-color);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.agency-social-item:hover .icon-box a i {
	color: var(--primary-color);
}

.agency-social-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.agency-social-content p {
	margin: 0;
}


.readmore-btn {
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

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

.readmore-btn img {
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.agency-social-item:hover .readmore-btn img {
	transform: rotate(45deg);
}

/************************************/
/***     11. How It Work css      ***/
/************************************/

.how-it-work {
	position: relative;
	padding: 80px 0 50px;
}

.how-it-work::before {
	content: '';
	display: block;
	position: absolute;
	left: -90px;
	top: 40%;
	background: url(../images/how-work-bg-shape.png) no-repeat;
	background-position: left center;
	background-size: contain;
	opacity: 50%;
	width: 297px;
	height: 340px;
	animation: roundrotate 8s infinite linear;
	animation-direction: alternate;
	z-index: -1;
}

@keyframes roundrotate {
	from {
		transform: translateY(0) rotate(0);
	}

	to {
		transform: translateY(100px) rotate(360deg);
	}
}

.work-process-item {
	position: relative;
	background: url(../images/service-bg.svg) no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.work-process-item:hover {
	transform: translateY(-5px);
}

.work-process-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	opacity: 40%;
	z-index: -1;
}

.work-process-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.work-process-title h3 {
	font-size: 22px;
	text-transform: capitalize;
}

.work-process-btn {
	margin-left: 10px;
}

.work-process-item:hover .work-process-btn .readmore-btn img {
	transform: rotate(45deg);
}

.work-process-content {
	margin-bottom: 80px;
}

.work-process-content p {
	margin: 0;
}

.work-process-body {
	display: flex;
	align-items: center;
	padding-top: 20px;
}

.work-process-no {
	width: 50%;
	padding-right: 10px;
}

.work-process-no h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.work-process-no h2 {
	font-size: 40px;
	color: var(--accent-color);
}

.work-process-icon-box {
	width: 50%;
	position: absolute;
	display: block;
	bottom: 0;
	right: 0;
	text-align: center;
	background-color: var(--accent-color);
	border-radius: 30px 0 30px 0;
	padding: 40px;
	overflow: hidden;
}

.work-process-icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 30px 0 30px 0;
	transform: translate(100%, 100%);
	transition: all 0.4s ease-in-out;
}

.work-process-item:hover .work-process-icon-box::before {
	transform: translate(0);
}

.work-process-icon-box img {
	position: relative;
	max-width: 60px;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features {
	position: relative;
	padding: 80px 0;
}

.our-features::before {
	content: '';
	display: block;
	position: absolute;
	right: -90px;
	top: 50%;
	background: url(../images/features-bg-shape.png) no-repeat;
	background-position: left center;
	background-size: contain;
	opacity: 50%;
	width: 300px;
	height: 285px;
	animation: squrerotate 5s infinite linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	z-index: -1;
}

@keyframes squrerotate {
	from {
		transform: translate(0, 0) rotate(0deg);
	}

	to {
		transform: translate(-150px, 200px) rotate(180deg);
	}
}

.digital-features-box {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.digital-features-item.features-item-1 {
	width: calc(60% - 30px);
}

.digital-features-item.features-item-2 {
	width: calc(40% - 30px);
}

.digital-features-item {
	position: relative;
	padding: 60px;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	overflow: hidden;
}

.digital-features-item::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--secondary-color);
	opacity: 40%;
	z-index: 0;
}

.digital-features-image {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 40px;
	z-index: 1;
}

.digital-features-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.digital-features-item.features-item-1 .digital-features-image img {
	aspect-ratio: 1 / 0.46;
}

.digital-features-item.features-item-2 .digital-features-image img {
	aspect-ratio: 1 / 0.72;
}

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

.digital-features-content {
	position: relative;
	z-index: 1;
}

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

.digital-features-content p {
	margin: 0;
}

.digital-features-item.agency-supports {
	padding: 60px 0;
}

.agency-supports-header {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	padding: 0 60px;
	z-index: 1;
}

.agency-supports-content {
	width: 50%;
}

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

.agency-supports-content p {
	margin: 0;
}

.agency-free-consultation {
	width: 50%;
	text-align: right;
}

.agency-free-consultation img {
	max-width: 100px;
	animation: infiniterotate 30s infinite linear;
}

.agency-supports-slider {
	position: relative;
}

.agency-supports-slider::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(280deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
	width: 215px;
	height: 100%;
	z-index: 2;
}

.agency-supports-slider::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
	width: 215px;
	height: 100%;
	z-index: 2;
}

.agency-supports-logo {
	background-color: var(--secondary-color);
	border-radius: 10px;
	text-align: center;
	padding: 25px 30px;
}

.agency-supports-logo img {
	max-height: 30px;
}


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

.footer-work-together {
	position: relative;
	padding: 80px 0;
}

.footer-work-together::before {
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	top: 20%;
	background: url(../images/work-together-bg-shape.png) no-repeat;
	background-position: left center;
	background-size: contain;
	opacity: 40%;
	width: 305px;
	height: 315px;
	animation: circlmoveerotate 12s infinite linear;
	animation-direction: alternate;
	z-index: -1;
}

@keyframes circlmoveerotate {
	from {
		transform: translateY(0) rotate(0deg);
	}

	to {
		transform: translateY(160px) rotate(360deg);
	}
}

.work-together-box {
	position: relative;
}

.work-together-content {
	position: relative;
	background: url('../images/work-together-bg.png') no-repeat;
	background-position: center center;
	background-size: auto;
	text-align: center;
}

.work-together-content::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/work-together-bg-gradient.png) no-repeat;
	background-position: center center;
	background-size: contain;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.footer-work-together {
	margin-bottom: 0;
}

.footer-work-together h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer-work-together h2 {
	font-size: 180px;
	font-weight: 800;
	text-transform: uppercase;
}

.work-together-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

.footer-work-together .work-together-btn a:hover {
	background-color: var(--secondary-color);
}

.footer-work-together .work-together-btn a img {
	width: 100%;
	max-width: 24px;
	height: 24px;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover img {
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

.footer-work-together .work-together-btn a span {
	width: 100%;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--dark-color);
	transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover span {
	color: var(--primary-color);
}

.footer-main {
	border-top: 0px solid var(--divider-color);
	padding: 60px 0 0;
}

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

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

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

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

.footer-contact-item:hover .icon-box {
	border-color: var(--primary-color);
}

.footer-contact-item .icon-box img {
	max-width: 18px;
	transition: all 0.3s ease-in-out;
}

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

.footer-contact-content {
	width: calc(100% - 60px);
}

.footer-contact-content p {
	font-size: 22px;
	font-weight: 600;
	margin: 0;
}

.footer-links h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 40px;
}

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

.footer-links ul li {
	text-transform: capitalize;
	margin-bottom: 15px;
}

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

.footer-links ul li a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

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



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

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

.footer-social-links ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

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

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

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

.footer-social-links ul li a i {
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

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

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px 0;
}

.footer-copyright-text {
	text-align: center;
}

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

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

.page-header {
	position: relative;
	background-size: cover;
	padding: 50px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	height: 400px;
	width: 100%;
	z-index: 1;
}

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

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 300;
	line-height: 1.1em;
	color: var(--primary-color);
	margin-bottom: 10px;

}

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

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

.page-header-box ol li.breadcrumb-item {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
}

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

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

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	content: "\2a";
	font-family: "FontAwesome";
	font-size: 10px;
	color: var(--primary-color);
}

.our-scrolling-ticker.subpages-scrolling-ticker {
	padding: 15px 0;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box {
	--gap: 20px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
	font-size: 22px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
	margin-right: 20px;
}

.our-approach {
	padding: 80px 0 50px;
}

.mission-vision-item {
	position: relative;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.mission-vision-item::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--secondary-color);
	opacity: 40%;
	z-index: -1;
}

.mission-vision-image {
	position: relative;
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.mission-vision-img img {
	aspect-ratio: 1 / 0.78;
	object-fit: cover;
	border-radius: 20px;
	filter: brightness(80%);
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-img img {
	transform: scale(1.1);
}

.mission-vision-image .icon-box {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.mission-vision-image .icon-box img {
	max-width: 40px;
}

.mission-vision-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.mission-vision-content p {
	margin: 0;
}


@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}


@keyframes FaqCtaBoxMove {
	50% {
		right: 0;
	}
}


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

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

.contact-info-box {
	position: relative;
}

.contact-info-box::after {
	content: '';
	position: absolute;
	top: 0;
	right: 50%;
	transform: translateX(100%);
	background: url(../images/arrow-hero-content.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 130px;
	z-index: 1;
	animation: contactarrowmove 2s infinite linear alternate;
}

@keyframes contactarrowmove {
	50% {
		right: 54%;
	}
}

.contact-info-item {
	margin-bottom: 40px;
}

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

.contact-info-item h3 {
	font-size: 22px;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.contact-info-item p {
	margin-bottom: 0;
}

.contact-info-item p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item p a:hover {
	color: var(--accent-color);
}

.contact-social-list {


	gap: 10px 20px;
	margin-top: 40px;
}

.contact-social-list h3 {
	font-size: 22px;
	text-transform: capitalize;
}

.contact-social-list ul {
	list-style: none;
	display: flex;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li {
	display: inline-block;
	margin-right: 10px;
	margin-top: 10px;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li:last-child {
	margin-right: 0;
}

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

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

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

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

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

.contact-us-form {
	position: relative;
	padding: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	margin-left: 30px;
}

.contact-us-form::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	opacity: 40%;
	border-radius: 30px;
	z-index: -1;
}

.contact-us-form form .form-control {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	padding: 16px 20px;
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	outline: none;
	box-shadow: none;
}

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



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

.error-page {
	padding: 160px 0 80px;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page .error-page-content {
	text-align: center;
}

.error-page-content-heading {
	margin-bottom: 30px;
}

.error-page-content-body p {
	margin-bottom: 30px;
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	background: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 30px !important;
}

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

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

	.navbar {
		padding: 20px 0;
	}

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

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


	.slicknav_btn {
		background: var(--accent-color);
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		margin: 0;
		border-radius: 8px;
	}

	.slicknav_icon .slicknav_icon-bar {
		display: block;
		width: 100%;
		height: 3px;
		width: 22px;
		background-color: var(--dark-color);
		border-radius: 6px;
		margin: 4px auto !important;
		transition: all 0.1s ease-in-out;
	}

	.slicknav_icon .slicknav_icon-bar:first-child {
		margin-top: 0 !important;
	}

	.slicknav_icon .slicknav_icon-bar:last-child {
		margin-bottom: 0 !important;
	}

	.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 5px);
	}

	.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
		opacity: 0;
	}

	.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -5px);
	}

	.slicknav_menu {
		position: absolute;
		width: 100%;
		padding: 0;
		background: var(--accent-color);
	}

	.slicknav_menu ul {
		margin: 5px 0;
	}

	.slicknav_menu ul ul {
		margin: 0;
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav li a {
		position: relative;
		font-size: 16px;
		font-weight: 600;
		text-transform: capitalize;
		padding: 8px 20px;
		color: var(--dark-color);
		line-height: normal;
		margin: 0;
		border-radius: 0 !important;
		transition: all 0.3s ease-in-out;
	}

	.slicknav_nav a:hover,
	.slicknav_nav a:focus,
	.slicknav_nav .slicknav_row:hover {
		background-color: transparent;
		color: var(--primary-color);
	}

	.slicknav_menu ul ul li a {
		padding: 8px 20px 8px 30px;
	}

	.slicknav_arrow {
		font-size: 0 !important;
	}

	.slicknav_arrow:after {
		content: '\f107';
		font-family: 'FontAwesome';
		font-weight: 900;
		font-size: 12px;
		margin-left: 8px;
		color: var(--dark-color);
		position: absolute;
		right: 15px;
		top: 15px;
		transition: all 0.3s ease-out;
	}

	.slicknav_open>a .slicknav_arrow:after {
		transform: rotate(-180deg);
		color: var(--primary-color);
	}

	.navbar-brand {
		padding: 0;
		margin: 0;
		width: 150px;
	}

	.main-menu .nav-menu-wrapper {
		flex: 1;
		text-align: right;
		margin-left: 40px;
	}

	.main-menu .nav-menu-wrapper>ul {
		align-items: center;
		display: inline-flex;
	}

	.main-menu ul li {
		margin: 0;
		position: relative;
	}

	.nav-link.active{
	color: var(--bs-white) !important;
}

	.main-menu ul li.nav-item a {
		font-size: 16px;
		font-weight: 600;
		padding: 15px !important;
		color: #202020;
		text-transform: capitalize;
		transition: all 0.3s ease-in-out;
	}

	.main-menu ul li.submenu>a:after {
		content: '\f107';
		font-family: 'FontAwesome';
		font-weight: 900;
		font-size: 14px;
		margin-left: 8px;
	}

	.main-menu ul li a:hover,
	.main-menu ul li a:focus {
		color: var(--accent-color);
	}

	.main-menu ul ul {
		visibility: hidden;
		opacity: 0;
		transform: scaleY(0.8);
		transform-origin: top;
		padding: 0;
		margin: 0;
		list-style: none;
		width: 230px;
		border-radius: 20px;
		position: absolute;
		left: 0;
		top: 100%;
		background: var(--accent-color);
		text-align: left;
		transition: all 0.3s ease-in-out;
	}

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

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

	.main-menu ul li:hover>ul {
		visibility: visible;
		opacity: 1;
		transform: scaleY(1);
		padding: 5px 0;
	}

	.main-menu ul li.submenu ul li.submenu>a:after {
		content: '\f105';
		float: right;
	}

	.main-menu ul ul li {
		margin: 0;
		padding: 0;
	}

	.main-menu ul ul li.nav-item a {
		color: var(--dark-color);
		padding: 6px 20px !important;
		transition: all 0.3s ease-in-out;
	}

	.main-menu ul li:hover>ul {
		visibility: visible;
		opacity: 1;
		transform: scaleY(1);
		padding: 5px 0;
	}

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




	.header-social-links {
		display: none;
	}

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

	.section-row .section-title {
		max-width: 100%;
	}

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

	.section-title h3 {
		margin-bottom: 15px;
	}

	.section-title h3::before {
		width: 14px;
		height: 14px;
	}

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

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

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

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

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

	.hero {

		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide {

		min-height: auto;
	}

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

	.hero-content-body {
		margin-left: 0px;
	}

	.hero-content-video {
		width: 37%;
	}

	.hero-video-content {
		width: 63%;
	}

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


	.our-scrolling-ticker {
		padding: 22px 0;
	}

	.scrolling-content span {
		font-size: 34px;
	}

	.about-agency {
		padding: 80px 0 40px;
	}

	.about-agency::before {
		width: 300px;
		height: 330px;
	}

	.about-agency-content {
		position: initial;
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.about-agency-list {
		gap: 30px;
		padding-left: 30px;
		margin-left: 10px;
	}

	.agency-item-content h3:after {
		left: -40px;
	}

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

	.our-services {
		padding: 40px 0;
	}

	.service-item {
		padding: 30px;
	}

	.service-item-header {
		margin-bottom: 50px;
	}

	.service-item-header .icon-box img {
		max-width: 50px;
	}

	.service-item-body h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.service-footer {
		margin-top: 10px;
	}

	.digital-success {
		padding: 40px 0;
	}

	.digital-success-box {
		gap: 40px;
		padding: 50px;
	}

	.digital-success-list,
	.digital-success-content {
		width: 100%;
	}

	.digital-success-content::before {
		display: none;
	}

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

	.success-counter-item h2 {
		font-size: 40px;
	}

	.success-list-item {
		margin-bottom: 40px;
	}

	.success-list-item p span {
		font-size: 20px;
	}

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

	.why-choose-us::before {
		top: 20%;
		width: 250px;
		height: 280px;
	}

	.why-choose-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.why-choose-item {
		padding: 15px 20px;
	}

	.why-choose-item h3 {
		font-size: 20px;
	}

	.why-choose-image img {
		aspect-ratio: 1 / 0.73;
	}

	.join-agency {
		padding: 40px 0 10px;
	}

	.agency-social-item {
		padding: 20px 30px 20px 50px;
		margin: 20px 0 30px 20px;
	}

	.agency-social-item .icon-box {
		top: -20px;
		left: -20px;
	}

	.agency-social-item .icon-box a {
		width: 60px;
		height: 60px;
	}

	.agency-social-item .icon-box i {
		font-size: 30px;
	}

	/* Social block: heading on first row, icons on second row */
	.contact-social-list {

		flex-direction: column;
		align-items: center;
		/* centers heading + icons horizontally */
		gap: 12px;
		/* small vertical gap between heading and icon row */
		margin: 1.2rem 0;
	}

	/* Heading style (first row) */
	.contact-social-list .social-title {
		margin: 0;
		font-family: "Playfair Display", serif;
		color: #d11a52;
		font-size: 1.2rem;
		line-height: 1;
		text-align: center;
	}

	/* Icon row (second row) - exactly 20px gap between icons */
	.social-row {
		display: flex;
		justify-content: center;
		gap: 20px;
		/* <-- exact 20px gap requested */
		flex-wrap: nowrap;
		/* keep them in a single row; change to wrap if you want multiple rows on narrow screens */
		margin-top: 6px;
	}

	/* Individual icon links */
	.social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		text-decoration: none;
		font-size: 18px;
		/* icon size */
		color: #d11a52;
		/* icon color */
		background: #ffffff;
		/* icon button background */
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
		transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
	}

	/* Hover/focus visible state */
	.social-link:hover,
	.social-link:focus {
		transform: translateY(-4px);
		background: #d11a52;
		color: #ffffff;
		outline: none;
	}

	/* Small-screen behaviour: allow wrapping so icons stay visible */
	@media (max-width: 420px) {
		.social-row {
			flex-wrap: wrap;
			/* will place icons into the next row(s) on very narrow screens */
			gap: 16px;
		}
	}



	.agency-social-content h3 {
		font-size: 20px;
	}

	.how-it-work {
		padding: 40px 0 10px;
	}

	.how-it-work::before {
		top: 0;
		width: 240px;
		height: 280px;
	}

	.work-process-item {
		padding: 30px;
	}

	.work-process-header {
		margin-bottom: 30px;
	}

	.work-process-title h3 {
		font-size: 20px;
	}

	.work-process-content {
		margin-bottom: 40px;
	}

	.work-process-body {
		padding-top: 10px;
	}

	.work-process-no h3 {
		font-size: 20px;
	}

	.work-process-no h2 {
		font-size: 34px;
	}

	.work-process-icon-box {
		padding: 30px;
	}

	.work-process-icon-box img {
		max-width: 50px;
	}

	.our-features {
		padding: 40px 0;
	}

	.our-features::before {
		top: 15%;
		width: 250px;
		height: 225px;
	}

	.digital-features-box {
		gap: 30px;
	}

	.digital-features-item.features-item-1 {
		width: calc(55% - 15px);
	}

	.digital-features-item.features-item-2 {
		width: calc(45% - 15px);
	}

	.digital-features-item {
		padding: 30px;
	}

	.digital-features-content h3 {
		font-size: 20px;
	}

	.digital-features-image {
		margin-bottom: 30px;
	}

	.digital-features-item.features-item-1 .digital-features-image img {
		aspect-ratio: 1 / 0.62;
	}

	.digital-features-item.agency-supports {
		padding: 30px 0;
	}

	.agency-supports-header {
		margin-bottom: 30px;
		padding: 0 30px;
	}

	.agency-supports-content {
		width: 70%;
	}

	.agency-supports-content h3 {
		font-size: 20px;
	}

	.agency-free-consultation {
		width: 30%;
	}

	.agency-free-consultation img {
		max-width: 80px;
	}

	.agency-supports-logo {
		padding: 20px 25px;
	}

	.agency-supports-logo img {
		max-height: 25px;
	}

	.our-portfolio {
		padding: 40px 0 10px;
	}

	.our-Project-nav {
		margin-bottom: 40px;
	}

	.our-Project-nav ul {
		gap: 10px 20px;
	}

	.our-Project-nav ul li a {
		font-size: 14px;
		padding: 10px 15px;
	}

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

	.project-btn a {
		width: 80px;
		height: 80px;
	}

	.project-btn a img {
		max-width: 34px;
	}

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

	.our-testimonial {
		padding: 40px 0;
	}

	.our-testimonial::before {
		width: 250px;
		height: 245px;
	}

	.testimonial-review-box {
		padding: 30px;
		margin-bottom: 30px;
	}

	.testimonial-review-content,
	.testimonial-review-header {
		margin-bottom: 20px;
	}

	.testimonial-review-header h2 {
		font-size: 60px;
	}

	.testimonial-review-content h3 {
		font-size: 20px;
	}

	.testimonial-slider {
		margin-left: 0px;
	}

	.testimonial-company-logo {
		margin-bottom: 20px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 20px;
	}

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

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 50px;
		height: 50px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		background-size: 24px auto;
	}

	.testimonial-benefits-box {
		gap: 20px;
		margin-top: 50px;
		padding: 30px 15px;
	}

	.testimonial-benefits-item {
		width: calc(25% - 15px);
	}

	.testimonial-benefits-item::before {
		right: -10px;
	}

	.testimonial-benefits-item .icon-box {
		margin-bottom: 20px;
	}

	.testimonial-benefits-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.testimonial-benefits-content ul li {
		font-size: 14px;
		padding-left: 18px;
		margin-bottom: 10px;
	}

	.testimonial-benefits-content ul li::before {
		font-size: 14px;
	}

	.agency-benefits {
		padding: 40px 0 10px;
	}

	.agency-benefits::before {
		width: 210px;
		height: 220px;
	}

	.benefits-steps-item {
		padding: 20px;
	}

	.benefits-steps-item .icon-box,
	.benefits-steps-no {
		margin-bottom: 30px;
	}

	.benefits-steps-item .icon-box img {
		max-width: 50px;
	}

	.benefits-steps-content h3 {
		font-size: 20px;
	}

	.our-blog {
		padding: 40px 0 10px;
	}

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

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

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

	.footer-work-together {
		padding: 40px 0;
	}

	.footer-work-together::before {
		top: 0;
		width: 245px;
		height: 355px;
	}

	@keyframes circlmoveerotate {
		from {
			transform: translateY(0) rotate(0deg);
		}

		to {
			transform: translateY(100px) rotate(360deg);
		}
	}

	.work-together-content {
		background-size: cover;
	}

	.footer-work-together h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.footer-work-together h2 {
		font-size: 120px;
	}

	.footer-work-together .work-together-btn a {
		width: 120px;
		height: 120px;
	}

	.footer-main {
		padding: 40px 0 0;
	}

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

	.footer-contact-item {
		margin-bottom: 20px;
	}

	.footer-contact-content p {
		font-size: 20px;
	}

	.footer-newsletter-form h3,
	.footer-links h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form {
		margin-top: 30px;
	}

	.footer-newsletter-form .form-group .form-control {
		width: 80%;
	}

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

	.footer-copyright {
		padding: 20px 0;
		margin-top: 40px;
	}


	.individual2 .agency-social-item {
		margin: 30px;
		padding: 30px 44px;


	}



	.page-header-box h1 {
		font-size: 70px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
		font-size: 20px;
	}

	.our-approach {
		padding: 40px 0 10px;
	}

	.mission-vision-item {
		padding: 30px;
	}

	.mission-vision-image {
		margin-bottom: 15px;
	}

	.mission-vision-item .mission-vision-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.who-we-are {
		padding: 40px 0;
	}

	.who-we-are::before {
		top: -13%;
		width: 210px;
		height: 220px;
	}

	.who-we-are .who-we-are-content {
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.experts-counters-list {
		gap: 40px;
	}

	.experts-counter-box {
		width: calc(50% - 20px);
		gap: 40px;
	}

	.experts-counter-box:nth-child(even) {
		margin-top: 40px;
	}

	.experts-counter-content h2 {
		font-size: 40px;
	}

	.executive-partners {
		padding: 40px 0;
	}

	.executive-partners-box {
		padding: 50px;
	}

	.executive-partners-box .section-title {
		margin-bottom: 30px;
	}

	.our-team {
		padding: 40px 0 10px;
	}

	.our-team::before {
		top: -5%;
		width: 250px;
		height: 280px;
	}

	.team-image figure,
	.team-image img {
		aspect-ratio: 1 / 1.3;
	}

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

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

	.faq-images {
		max-width: 80%;
		margin: 0 auto 30px;
		padding: 100px 80px 0 0;
	}

	.faq-img-1 img {
		max-width: 285px;
	}

	.faq-img-2 img {
		aspect-ratio: 1 / 0.9;
	}

	.our-faq-section .accordion-header .accordion-button {
		font-size: 20px;
	}

	.page-services {
		padding: 80px 0 10px;
	}

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

	.page-service-single::before {
		width: 300px;
		height: 330px;
	}

	.page-service-single::after {
		width: 250px;
		height: 280px;
	}

	.service-single-content {
		margin: 0 0 40px 0;
	}

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.59;
	}

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

	.service-entry h2 {
		font-size: 40px;
	}

	.service-entry-list-image {
		margin: 30px 0;
		gap: 20px;
	}

	.service-entry-list {
		width: calc(55% - 10px);
	}

	.service-entry-list ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.service-entry-list ul li::before {
		font-size: 16px;
	}

	.service-entry-image {
		width: calc(45% - 10px);
	}

	.process-step-content {
		padding: 30px;
	}

	.process-step-header {
		margin-bottom: 50px;
	}

	.process-step-header .icon-box img {
		max-width: 48px;
	}

	.process-step-no h3 {
		font-size: 20px;
	}

	.process-step-body h3 {
		font-size: 20px;
	}

	.process-step-image img {
		aspect-ratio: 1 / 0.8;
	}

	.service-sidebar {
		position: initial;
	}

	.service-catagery-list {
		margin-bottom: 40px;
	}

	.service-catagery-list h3 {
		font-size: 20px;
		padding: 30px 30px 20px;
	}

	.service-catagery-list ul {
		padding: 20px 30px 30px;
	}

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

	.sidebar-cta-box {
		padding: 30px;
	}

	.sidebar-cta-box .icon-box {
		margin-bottom: 30px;
	}

	.sidebar-cta-box .icon-box img {
		max-width: 50px;
	}

	.cta-contact-content h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.page-blog {
		padding: 80px 0 40px;
	}

	.page-blog::before {
		width: 300px;
		height: 330px;
	}

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

	.page-pagination {
		margin-top: 10px;
	}

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

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

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

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

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.tag-links {
		font-size: 22px;
	}

	.post-tags .tag-links a {
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-project {
		padding: 80px 0 10px;
	}

	.page-project::before {
		width: 300px;
		height: 330px;
	}

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

	.page-project-single::before {
		top: 20%;
		width: 210px;
		height: 220px;
	}

	.page-project-single::after {
		width: 250px;
		height: 280px;
	}

	.project-single-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

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

	.project-single-content img {
		aspect-ratio: 1 / 0.57;
	}

	.project-challenges,
	.project-info,
	.project-entry {
		margin-bottom: 30px;
	}

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

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

	.project-entry ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.project-entry ul li::before {
		font-size: 16px;
	}

	.project-solution-rating {
		margin-top: 0;
	}

	.project-counter-content h3 {
		font-size: 34px;
	}

	.project-sidebar {
		position: initial;
	}

	.project-catagery-list {
		margin-bottom: 40px;
	}

	.category-item-list {
		padding: 30px 30px 20px;
	}

	.category-list-item h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.category-social-link {
		padding: 30px;
	}

	.category-social-link .social-links {
		font-size: 20px;
	}

	.page-team {
		padding: 80px 0 10px;
	}

	.page-team::before {
		width: 245px;
		height: 355px;
	}

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

	.page-team-single::before {
		top: 40%;
		width: 250px;
		height: 280px;
	}

	.team-single-content {
		margin-right: 0;
	}

	.team-info-box {
		margin-bottom: 40px;
	}

	.team-info-header {
		align-items: center;
		margin-bottom: 30px;
	}

	.team-single-content h2 {
		font-size: 40px;
	}

	.team-contact-box {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.team-contact-box .icon-box {
		width: 65px;
		height: 65px;
	}

	.team-contact-box .icon-box img {
		max-width: 30px;
	}

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

	.team-contact-content h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.team-personal-info {
		margin-bottom: 40px;
	}

	.team-career-list {
		margin-top: 20px;
	}

	.team-career-list ul {
		row-gap: 15px;
	}

	.team-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

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

	.team-single-image img {
		aspect-ratio: 1 / 0.8;
		object-position: top center;
	}

	.team-single-contact-form h3 {
		font-size: 28px;
		padding: 30px;
	}

	.team-single-contact-form form {
		padding: 30px;
	}

	.page-pricing {
		padding: 80px 0 40px;
	}

	.pricing-box-list {
		gap: 30px;
	}

	.pricing-box {
		width: calc(50% - 15px);
		padding: 30px;
	}

	.pricing-box-content {
		gap: 15px;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.pricing-title {
		width: calc(52% - 7.5px);
	}

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

	.pricing-price {
		width: calc(48% - 7.5px);
	}

	.pricing-price h2 {
		font-size: 40px;
	}

	.pricing-price h2 sup {
		font-size: 20px;
	}

	.pricing-price h2 sub {
		font-size: 14px;
	}

	.pricing-list ul {
		gap: 15px;
	}

	.pricing-list ul li {
		width: 100%;
	}

	.pricing-list {
		margin-bottom: 30px;
	}

	.page-testimonial {
		padding: 80px 0 40px;
	}

	.testimonial-box-list {
		gap: 40px;
	}

	.testimonial-box-item {
		padding: 40px 30px;
		gap: 30px;
	}

	.client-author-image {
		width: calc(32% - 15px);
	}

	.client-testimonial-content {
		width: calc(68% - 15px);
	}

	.client-testimonial-rating {
		margin-bottom: 10px;
	}

	.client-testimonial-info p {
		font-size: 18px;
	}

	.client-author-title h3 {
		font-size: 20px;
	}

	.page-gallery {
		padding: 80px 0 10px;
	}

	.page-video-gallery {
		padding: 80px 0 10px;
	}

	.page-faqs {
		padding: 80px 0 40px;
	}

	.page-faqs-catagery {
		margin-right: 0px;
	}

	.page-faq-accordion {
		margin-bottom: 40px;
	}

	.faq-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		margin-bottom: 40px;
	}

	.faq-catagery-list ul {
		padding: 30px;
	}

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

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

	.contact-information {
		margin-bottom: 30px;
	}

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

	.contact-info-box .info-box-1,
	.contact-info-box .info-box-2 {
		padding: 20px 30px;
	}

	.contact-info-item .icon-box {
		margin-bottom: 20px;
	}

	.contact-info-item .icon-box img {
		max-width: 40px;
	}

	.contact-info-box .info-box-2 .contact-item-content {
		width: calc(100% - 70px);
	}

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

	.contact-us-form {
		margin: 0;
		padding: 30px;
		margin-top: 50px;
	}

	.google-map {
		padding: 40px 0;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.error-page {
		padding: 80px 0 40px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}

	.error-page-content-heading {
		margin-bottom: 15px;
	}

	.error-page-content-body p {
		margin-bottom: 20px;
	}
}

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

	body {
		background-size: 200% auto;
	}

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

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

	.hero-content {
		text-align: center;
		padding-top: 0px;

	}

	.hero h1 {
		font-size: 34px;
	}

	.hero p {
		font-size: 16px;

	}

	.hero-content-body {
		display: block;
	}

	.hero-content-video {
		width: 100%;
		justify-content: center;

	}

	.hero-content-video .video-play-button a {
		height: 80px;
		width: 80px;
	}

	.hero-content-video .video-play-button a i {
		font-size: 25px;
	}

	.learn-more-circle img {
		max-width: 80px;
	}

	.hero-video-content {
		width: 100%;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-content span {
		font-size: 28px;
	}

	.scrolling-content span img {
		margin-right: 20px;
	}

	.about-agency::before {
		width: 250px;
		height: 280px;
	}

	.about-agency-list {
		padding-left: 0px;
		margin-left: 0;
		border: 0px;


	}

	.agency-item-content h3:after {
		left: -30px;
	}

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

	.service-item {
		padding: 20px;
	}

	.service-item-body h3 {
		font-size: 18px;
	}

	.service-footer p {
		font-size: 12px;
	}

	.digital-success-box {
		gap: 30px;
		padding: 40px 30px;
	}

	.digital-success-box::before {
		left: 10px;
		top: 10px;
		border-radius: 20px;
		width: calc(100% - 20px);
		height: calc(100% - 10px);
	}

	.success-counter-box {
		gap: 20px;
	}

	.success-counter-item {
		width: 100%;
	}

	.success-counter-item h2 {
		font-size: 30px;
	}

	.success-list-item {
		background-size: 18px auto;
		margin-bottom: 30px;
	}

	.success-list-item p span {
		font-size: 18px;
	}

	.why-choose-us::before {
		top: 30%;
		width: 200px;
		height: 230px;
	}

	.why-choose-item h3 {
		font-size: 18px;
	}

	.agency-social-item {
		margin: 15px 0 30px 15px;
	}

	.agency-social-item .icon-box {
		top: -15px;
		left: -15px;
	}

	.agency-social-item .icon-box a {
		width: 50px;
		height: 50px;
	}

	.agency-social-item .icon-box i {
		font-size: 20px;
	}

	.agency-social-content h3 {
		font-size: 18px;
	}

	.how-it-work::before {
		width: 180px;
		height: 220px;
	}

	.work-process-header {
		margin-bottom: 20px;
	}

	.work-process-title h3 {
		font-size: 18px;
	}

	.work-process-content {
		margin-bottom: 30px;
	}

	.work-process-body {
		padding-top: 20px;
	}

	.work-process-no h3 {
		font-size: 18px;
	}

	.work-process-no h2 {
		font-size: 28px;
	}

	.our-features::before {
		right: -70px;
		top: 13%;
		width: 150px;
		height: 135px;
	}

	.digital-features-item.features-item-2,
	.digital-features-item.features-item-1 {
		width: 100%;
	}

	.digital-features-item.features-item-1 .digital-features-image img {
		aspect-ratio: 1 / 0.72;
	}

	.digital-features-item {
		padding: 20px;
	}

	.digital-features-image {
		margin-bottom: 20px;
	}

	.digital-features-content h3 {
		font-size: 18px;
	}

	.agency-supports-header {
		display: block;
	}

	.agency-supports-content,
	.agency-free-consultation {
		width: 100%;
	}

	.agency-supports-content h3 {
		font-size: 18px;
	}

	.agency-free-consultation {
		text-align: left;
		margin-top: 20px;
	}

	.agency-supports-slider::before {
		background: linear-gradient(280deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
		width: 150px;
	}

	.agency-supports-slider::after {
		background: linear-gradient(90deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
		width: 150px;
	}

	.project-btn a {
		width: 60px;
		height: 60px;
	}

	.project-btn a img {
		max-width: 26px;
	}

	.project-content h3 {
		font-size: 18px;
	}

	.testimonial-review-box {
		padding: 20px;
	}

	.testimonial-review-header h2 {
		font-size: 40px;
	}

	.testimonial-review-content h3 {
		font-size: 18px;
	}

	.testimonial-company-logo,
	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-btn {
		position: relative;
		justify-content: center;
		margin-top: 30px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 45px;
		height: 45px;
	}

	.testimonial-benefits-box {
		gap: 30px;
		padding: 30px 20px;
	}

	.testimonial-benefits-item {
		width: 100%;
	}

	.testimonial-benefits-item::before {
		top: auto;
		bottom: -15px;
		right: 0;
		border-right: none;
		border-bottom: 1px solid var(--divider-color);
		width: 100%;
		height: 1px;
		z-index: 1;
	}

	.testimonial-benefits-item:last-child:before {
		display: none;
	}

	.testimonial-benefits-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.benefits-steps-item .icon-box,
	.benefits-steps-no {
		margin-bottom: 20px;
	}

	.benefits-steps-no h3 {
		font-size: 18px;
	}

	.benefits-steps-content h3 {
		font-size: 18px;
	}

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

	.footer-work-together::before {
		left: -90px;
		width: 180px;
		height: 190px;
	}

	.footer-work-together h3 {
		font-size: 18px;
	}

	.footer-work-together h2 {
		font-size: 55px;
	}

	.work-together-btn {
		top: 56%;
	}

	.footer-work-together .work-together-btn a {
		width: 85px;
		height: 85px;
	}

	.footer-work-together .work-together-btn a span {
		font-size: 12px;
	}

	.about-footer {
		margin-bottom: 30px;
	}

	.footer-contact-content p {
		font-size: 18px;
	}

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

	.footer-newsletter-form h3,
	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-newsletter-form .form-group .form-control {
		width: 57%;
	}

	.footer-copyright {
		padding: 20px 0;
		margin-top: 30px;
	}




	.page-header-box h1 {
		font-size: 34px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
		font-size: 18px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
		max-width: 16px;
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-item .mission-vision-content h3 {
		font-size: 18px;
	}

	.experts-rating-video-image {
		width: 100%;
		margin-bottom: 20px;
	}

	.who-we-are-client {
		width: 100%;
		padding-left: 0px;
	}

	.experts-counter-box {
		width: 100%;
		gap: 30px;
	}

	.experts-counter-box:nth-child(even) {
		margin-top: 0px;
	}

	.experts-counter-item {
		padding: 20px;
	}

	.experts-counter-box.expert-box-2 .experts-counter-item:nth-child(odd) {
		background: url(../images/who-we-are-counter-bg.png);
	}

	.experts-counter-box.expert-box-2 .experts-counter-item:nth-child(even) {
		background: transparent;
	}

	.experts-counter-content h2 {
		font-size: 30px;
	}

	.executive-partners-box {
		padding: 30px;
	}

	.our-partners-list {
		gap: 20px;
	}

	.our-partners-list .company-logo {
		width: calc(50% - 10px);
		padding: 15px;
	}

	.faq-images {
		max-width: 100%;
		padding: 80px 50px 0 0;
	}

	.faq-img-1 img {
		max-width: 185px;
	}

	.faq-cta-box a {
		font-size: 14px;
		padding: 8px 15px;
	}

	.our-faq-section .accordion-item {
		margin-bottom: 20px;
	}

	.our-faq-section .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 40px 12px 12px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after {
		right: 12px;
		font-size: 12px;
		width: 20px;
		height: 20px;
	}

	.our-faq-section .accordion-item .accordion-body {
		padding: 0 12px 12px 12px;
	}

	.page-service-single::before {
		width: 250px;
		height: 280px;
	}

	.page-service-single::after {
		width: 250px;
		height: 280px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.78;
	}

	.service-entry h2 {
		font-size: 30px;
	}

	.service-entry-list-image {
		gap: 30px;
	}

	.service-entry-list,
	.service-entry-image {
		width: 100%;
	}

	.service-entry-list ul li {
		font-size: 14px;
		padding-left: 20px;
	}

	.service-entry-list ul li::before {
		font-size: 14px;
	}

	.service-entry-image img {
		aspect-ratio: 1 / 0.68;
		object-position: top center;
	}

	.service-process-steps {
		gap: 20px;
		margin: 0;
	}

	.process-step-item {
		gap: 20px;
	}

	.process-step-content,
	.process-step-image {
		width: 100%;
	}

	.process-step-content {
		padding: 20px;
	}

	.process-step-header {
		margin-bottom: 50px;
	}

	.process-step-header .icon-box img {
		max-width: 36px;
	}

	.process-step-no h3 {
		font-size: 18px;
	}

	.process-step-body h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.process-step-image img {
		aspect-ratio: 1 / 0.72;
	}

	.service-catagery-list {
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		font-size: 18px;
		padding: 20px;
	}

	.service-catagery-list ul {
		padding: 20px;
	}

	.service-catagery-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li a::before {
		width: 22px;
		height: 22px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-box .icon-box {
		margin-bottom: 25px;
	}

	.sidebar-cta-box .icon-box img {
		max-width: 40px;
	}

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

	.cta-contact-btn a {
		padding: 10px 25px;
	}

	.cta-contact-btn a img {
		max-width: 22px;
		margin-right: 10px;
	}

	.page-blog::before {
		width: 250px;
		height: 280px;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

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

	.tag-links {
		font-size: 20px;
	}

	.page-project::before {
		width: 250px;
		height: 280px;
	}

	.page-project-single::before {
		width: 210px;
		height: 220px;
	}

	.page-project-single::after {
		top: 53%;
		width: 200px;
		height: 230px;
	}

	.project-single-content {
		margin-bottom: 20px;
	}

	.project-single-content img {
		aspect-ratio: 1 / 0.67;
	}

	.project-entry h2 {
		font-size: 30px;
	}

	.project-entry ul li {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.project-solution-rating {
		gap: 15px;
	}

	.project-rating-counter .icon-box i {
		font-size: 36px;
	}

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

	.project-counter-content h3 {
		font-size: 28px;
	}

	.project-rating-content,
	.project-rating-counter {
		width: 100%;
	}

	.category-item-list {
		padding: 20px;
	}

	.category-list-item {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.category-list-item h3 {
		font-size: 18px;
	}

	.category-social-link {
		padding: 20px;
	}

	.category-social-link span {
		font-size: 20px;
	}

	.page-team::before {
		width: 180px;
		height: 190px;
	}

	.page-team-single::before {
		width: 200px;
		height: 230px;
	}

	.team-info-box {
		margin-bottom: 30px;
	}

	.team-info-header {
		margin-bottom: 30px;
		gap: 10px;
	}

	.team-info-title,
	.team-info-social-list {
		width: 100%;
	}

	.team-info-social-list ul {
		text-align: left;
	}

	.team-single-content p {
		margin-bottom: 15px;
	}

	.team-single-content h2 {
		font-size: 30px;
	}

	.team-contact-box {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.team-contact-box .icon-box {
		margin-right: 20px;
	}

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

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

	.team-personal-info {
		margin-bottom: 30px;
	}

	.team-career-list ul {
		gap: 10px;
	}

	.team-career-list ul li {
		width: 100%;
		padding-left: 25px;
	}

	.team-career-list ul li::before {
		font-size: 16px;
	}

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

	.team-single-image img {
		aspect-ratio: 1 / 1.08;
	}

	.team-single-contact-form h3 {
		font-size: 30px;
		padding: 20px;
	}

	.team-single-contact-form form {
		padding: 20px;
	}

	.pricing-box {
		width: 100%;
		padding: 20px;
	}

	.pricing-box-content {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

	.pricing-price h2 {
		font-size: 30px;
	}

	.pricing-price h2 sup {
		font-size: 16px;
	}

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

	.pricing-list ul li::before {
		font-size: 16px;
	}

	.testimonial-box-item {
		padding: 20px 15px;
		gap: 20px;
		text-align: center;
	}

	.client-author-image {
		width: 100%;
		max-width: 120px;
		margin: 0 auto;
	}

	.client-testimonial-content {
		width: 100%;
	}

	.client-testimonial-info p {
		font-size: 16px;
	}

	.client-author-content {
		gap: 15px;
	}

	.client-author-title,
	.client-author-logo {
		width: 100%;
		text-align: center;
	}

	.client-author-title h3 {
		font-size: 18px;
	}

	.page-faq-accordion {
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		margin-bottom: 30px;
	}

	.faq-catagery-list ul {
		padding: 20px;
	}

	.contact-info-box .info-box-1,
	.contact-info-box .info-box-2 {
		padding: 20px;
		gap: 40px;
	}

	.contact-info-box .info-box-1 .contact-info-item::before {
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 20px);
		height: 1px;
		width: 100%;
	}

	.contact-info-box .info-box-1 .contact-info-item:nth-child(2n + 2):before {
		display: block;
	}

	.contact-info-box .info-box-1 .contact-info-item:last-child:before {
		display: none;
	}

	.contact-info-box .info-box-1 .contact-info-item {
		display: flex;
		width: 100%;
	}

	.contact-info-item .icon-box img {
		max-width: 32px;
	}

	.contact-info-box .info-box-1 .icon-box,
	.contact-info-box .info-box-2 .icon-box {
		margin: 0 25px 0 0;
	}

	.contact-info-box .info-box-1 .contact-item-content,
	.contact-info-box .info-box-2 .contact-item-content {
		width: calc(100% - 57px);
		text-align: left;
	}

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

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.our-scrolling-ticker {
		margin-bottom: 0;
	}

	.join-agency .agency-social-item {
		margin: 30px 0 10px;
		padding: 20px 44px;
	}



	.page-header::before {
		height: 200px;
	}

	.about-us {
		padding: 40px 0 0 !important;
	}

	.about-us-img {
		padding: 0 !important;
	}

	.mission-vision-item {
		width: 100% !important;

	}

	.contact-info-box::after {
		display: none;
	}

	div#alert-container {
		position: fixed;
		left: 20px;
		right: 20px;
		top: 100px;
		z-index: 333;
		text-align: center;
		font-weight: 500;
	}
}


/* Mux */

.our-approach-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.mission-vision-item {
	position: relative;
	width: calc(50% - 15px);
	background: url('../images/mission-vision-item-bg.svg') no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
	z-index: 1;
}

.mission-vision-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--secondary-color);
	opacity: 40%;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.mission-vision-item h3 {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	padding-left: 25px;
	margin-bottom: 40px;
}

.mission-vision-item h3:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: 16px auto;
}

.mission-vision-item h2 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.mission-vision-item p {
	margin: 0;
}

.our-approach {
	padding: 0px 0;
}

.approach-goal-item {
	position: relative;
	margin-bottom: 30px;
}

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

.approach-goal-img figure:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.8%, rgba(0, 0, 0, 0.8) 101.49%);
	z-index: 1;
}

.approach-goal-img img {
	width: 100%;
	aspect-ratio: 1 / 0.32;
	object-fit: cover;
}


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

.about-us-img {
	padding-right: 50px;
	padding-left: 30px;
}

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

.about-us-img img {
	width: 100%;
}

.service-item-body div {
	display: flex;
	gap: 20px;
	margin-bottom: 10px;
}

.service-item-body div i {
	padding-top: 5px;
}

.service-item-body p {
	margin: 0;
}

.d-flex {
	display: flex !important;
}