/*
Theme Name: creativecircle
Theme URI: http://www.creativecircle.com
Author: iS2 Digital
Author URI: https://is2digital.com/
Description: Theme for creativecircle website
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: creativecircle
*/

/* ----- Font CSS ------ */

@font-face {
	font-family: 'Proxima Nova';
	src: url('../otf/proximanova-regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../otf/proximanova-medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../otf/proximanova-semibold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../otf/proximanova-bold.otf') format('opentype');
	font-weight: bold;
	font-style: normal;
}

/* ----- Common CSS Starts ------ */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-weight: normal;
	font-family: 'Proxima Nova', sans-serif;
	-webkit-tap-highlight-color: transparent;
	padding-top: 4.5rem;
}

@media screen and (max-width:1199px) {
	body {
		padding-top: 4rem;
	}
}

@media screen and (max-width:991px) {
	body {
		padding-top: 3.875rem;
	}
}

.no-scroll body {
	overflow: hidden;
}

.has-backdrop body {
	position: relative;
}

.has-backdrop body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: .3s;
	z-index: 1099;
}

:after,
:before {
	box-sizing: border-box
}

figure {
	margin: 0
}

img {
	max-width: 100%;
	height: auto;
	border-style: none;
	display: block;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none
}

a:hover {
	color: inherit;
	text-decoration: none
}

button {
	cursor: pointer
}

button:disabled {
	cursor: auto
}

ul,
ol {
	margin: 0;
}

ul li,
ol li {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

p {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 4.063rem;
	letter-spacing: 1px;
}

h2 {
	font-size: 3.125rem;
	font-weight: 400;
	letter-spacing: 1px;
}

h3 {
	font-size: 1.375rem;
	font-weight: 600;
}

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

	ul li,
	ol li {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	p {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	h1 {
		font-size: 3.438rem;
	}

	h2 {
		font-size: 2.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}
}

@media screen and (max-width:575px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}
}

/* Border-Radius */
.rounded-10 {
	border-radius: 10px;
}

.rounded-20 {
	border-radius: 20px;
}

.rounded-30 {
	border-radius: 30px;
}

.rounded-40 {
	border-radius: 40px;
}

.rounded-50 {
	border-radius: 50px;
}

/* Text White */
.text-white,
.page .text-white {
	color: #fff;
}

/* Hide from browsing, visible to screen readers */
.element-invisible {
	margin: 0;
	padding: 0;
	width: 1px;
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
}

/* Buttons */
.btn {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.75rem 1.25rem;
	border-radius: 100px;
	display: inline-block;
	max-width: max-content;
	white-space: nowrap;
}

.btn.btn-primary {
	color: #fff;
	background-color: #2B4256;
}

.btn.btn-primary:hover {
	background-color: #0F1820;
}

.btn.btn-secondary {
	color: #1C2B39;
	border: 1px solid #2B4256;
	background-color: #fff;
}

.btn.btn-secondary:hover {
	background-color: #E8EDEE;
}

.btn.btn-secondary:focus {
	color: #fff;
	background-color: #2B4256;
}

.btn.btn-tertiary {
	border: 1px solid #fff;
	background-color: #0F1820;
}

.btn.btn-tertiary:hover {
	color: #1C2B39;
	border: 1px solid #1C2B39;
	background-color: #fff;
}

@media screen and (max-width:991px) {
	.btn {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}
}

/* Container */
.container {
	width: 100%;
	max-width: 100%;
	padding: 0 1rem;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (min-width:576px) {
	.container {
		max-width: 600px;
	}
}

@media screen and (min-width:768px) {
	.container {
		max-width: 752px;
	}
}

@media screen and (min-width:992px) {
	.container {
		max-width: 960px;
	}
}

@media screen and (min-width:1200px) {
	.container {
		max-width: 1172px;
	}
}


/* Custom CSS overrides for fixing WordPress style conflicts */
.page .vc_col-has-fill > .vc_column-inner,
.page .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
.page .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.page .vc_row-has-fill > .vc_column_container > .vc_column-inner {
	padding-top: 0;
}

.page .wpb_button,
.page .wpb_content_element,
.page ul.wpb_thumbnails-fluid > li {
	margin-bottom: 0;
}

#skip-link {
	display: none;
}

/* Common Section Spacings */
.section-padding,
.page .vc_section.vc_section-has-fill,
.section-padding-light-text {
	padding: 7.5rem 0;
}

.section-padding-light-text {
	color: #fff;
}

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

	.section-padding,
	.page .vc_section.vc_section-has-fill,
	.section-padding-light-text {
		padding: 6.25rem 0;
	}
}

@media screen and (max-width:600px) {
	#wpadminbar {
		position: fixed;
	}
}

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

	.section-padding,
	.page .vc_section.vc_section-has-fill,
	.section-padding-light-text {
		padding: 5rem 0;
	}
}

.subtitle-w-md,
.subtitle-w-lg,
.page .subtitle-w-md,
.page .subtitle-w-lg {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.subtitle-w-lg,
.page .subtitle-w-lg {
	max-width: 59.375rem;
}

.subtitle-w-md,
.page .subtitle-w-md {
	max-width: 46.875rem;
}

.wpb_text_column p.subtitle-w-md:last-child,
.wpb_text_column p.subtitle-w-lg:last-child {
	margin-bottom: 0
}

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

	.subtitle-w-tablet-md,
	.page .subtitle-w-tablet-md {
		max-width: 29.375rem;
	}
}

/* Swiper */
.swiper-wrapper {
	height: auto;
}

@media screen and (min-width:768px) {
	.swiper-x-md-auto .swiper-wrapper {
		justify-content: center;
	}
}

/* Slider Buttons */
.slider-buttons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.slider-buttons .button {
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	border-radius: 100px;
	background-color: #fff;
	border: 1px solid #1C2B39;
	background-size: 0.875rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../svg/chevron-primary-icon.svg);
	box-shadow: 0px 0px 4px 0px #0000001A;
}

.slider-buttons .button:hover {
	border-color: #2B4256;
	background-color: #E8EDEE;
}

.slider-buttons .button-prev {
	transform: rotate(180deg)
}

.slider-buttons .swiper-button-disabled {
	cursor: auto;
}

.slider-buttons .swiper-button-disabled:hover {
	cursor: auto;
	background-color: #fff;
}

@media screen and (max-width:991px) {
	.slider-buttons {
		display: none;
	}
}

/* cta Arrow Icon */
.cta-arrow-icon {
	opacity: 0;
	visibility: hidden;
	width: 2.125rem;
	height: 2.125rem;
	border-radius: 100px;
	border: 1px solid #1C2B39;
	position: absolute;
	bottom: 1.375rem;
	right: 1.375rem;
	background: #fff url(../svg/arrow-upright-primary-icon.svg) center / 0.875rem no-repeat;
}

.cta-arrow-icon:hover {
	background-color: #E8EDEE;
}


/* Logged-in User Specific CSS */
.logged-in .navbar,
.logged-in .navbar.expanded {
	top: var(--wp-admin--admin-bar--height, 0);
}

/* ------- Common CSS Ends ------- */

/* =======================
	Navbar CSS
==========================*/

.navbar {
	padding: 1rem 0;
	background-color: #fff;
	box-shadow: 0px 4px 15px 0px #0000000D;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
}

@media screen and (min-width:1200px) {
	.navbar .container {
		max-width: 1272px;
	}
}

.navbar .nav-content-wrapper {
	display: flex;
	align-items: center;
}

.navbar .nav-logo {
	max-width: 10.75rem;
	margin-right: 1rem;
	transform: translateY(1px);
}

.navbar .nav-menu {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	background-color: #fff;
}

.navbar .nav-menu > div {
	line-height: 1.5;
}

.navbar .nav-menu .nav-link {
	font-size: 1rem;
	font-weight: 400;
	display: inline-block;
}

.navbar .nav-menu .nav-dropdown button {
	padding: 0;
	background-color: transparent;
	border: 0;
}

.navbar .nav-menu .nav-dropdown .dropdown-toggle {
	position: relative;
}

.navbar .nav-menu .nav-dropdown .dropdown-toggle::after {
	content: "";
	background-image: url(../svg/chevron-black-icon.svg);
	background-size: 0.875rem;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	width: 0.875rem;
	height: 0.875rem;
	margin-left: 0.375rem;
	transform: translateY(2px);
}

.navbar .nav-buttons {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.navbar .nav-buttons a:nth-child(1) {
	font-size: 1rem;
	font-weight: 500;
}

.navbar .nav-buttons a:nth-child(2) {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.75rem 1.25rem;
	border-radius: 100px;
	display: inline-block;
	max-width: max-content;
	white-space: nowrap;
	background-color: #2B4256;
}

.navbar .nav-buttons a:nth-child(2):hover {
	background-color: #0F1820;
}

.navbar .nav-dropdown .nav-dropdown-menu {
	top: 100%;
	left: 0;
	right: 0;
	width: 100vw;
	max-width: 100%;
	position: absolute;
	background-color: #fff;
	box-shadow: 0px 10px 18px 0px #0000000D;
	min-height: 20.75rem;
	display: none;
}

.navbar .nav-dropdown.active .nav-dropdown-menu {
	display: block;
}

.nav-dropdown .nav-dropdown-menu .nav-dropdown-inner {
	display: grid;
	grid-template-columns: 9fr 3fr;
	padding: 1.5rem 4rem;
	gap: 1.5rem;
}

.nav-dropdown-menu .nav-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.nav-dropdown-menu .nav-row .nav-col {
	display: flex;
	flex-direction: column;
	grid-column: span 4;
	gap: 1.5rem;
}

.nav-dropdown-menu .nav-menu-links-wrapper {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, auto);
	grid-template-columns: repeat(3, 1fr);
	row-gap: 1.75rem;
	column-gap: 1.25rem;
}

.nav-dropdown-menu .nav-menu-links-wrapper .placeholder-item {
	visibility: hidden;
}

.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link h5 {
	font-size: 1.125rem;
	font-weight: 600;
}

.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link:hover h5 {
	color: #00807C;
}

.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link p {
	color: #5b5b5b;
	font-size: 1rem;
	line-height: 1;
	max-width: 12.5rem;
	padding-top: 0.375rem;
}

.nav-dropdown-menu .featured-read-box {
	padding: 1.75rem 1.5rem;
	background-color: #FAFAF9;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 30.5vw;
}

.nav-dropdown-menu .featured-read-box .img-cover {
	max-width: 265px;
}

.nav-dropdown-menu .featured-read-box h5 {
	font-size: 1.125rem;
	font-weight: 600;
	padding-top: 2.5rem;
}

.nav-dropdown-menu .featured-read-box h5:first-child {
	padding-top: 0;
}

.nav-dropdown-menu a.featured-read-box:hover h5 {
	color: #00807C;
}

.nav-dropdown-menu .featured-read-box span,
.nav-dropdown-menu .featured-read-box p {
	color: #5b5b5b;
	font-size: 1rem;
	line-height: 1;
	padding-top: 0.5rem;
}

.nav-dropdown-menu .featured-read-box h3 {
	padding-top: 0.5rem;
}

.nav-dropdown-menu .featured-read-box .btn-link {
	color: #2B4256;
	font-weight: 600;
	margin-left: 1rem;
}

.navbar .nav-menu .nav-dropdown.active .nav-link {
	color: #00807C;
}

.navbar .nav-menu .nav-dropdown.active .dropdown-toggle::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background-color: #00807C;
}

.navbar .nav-menu .nav-dropdown.active .dropdown-toggle::after {
	background-image: url(../svg/chevron-green-icon.svg);
	transform: translateY(2px) rotate(0deg);
}

.navbar .navbar-toggle-btn {
	border: 0;
	padding: 0;
	display: flex;
	gap: 0.375rem;
	flex-direction: column;
	background-color: transparent;
	display: none;
}

.navbar .navbar-toggle-btn .bar {
	display: block;
	width: 1.875rem;
	height: 0.234rem;
	border-radius: 30px;
	background-color: #1C2B39;
}

@media screen and (min-width:1200px) and (max-width:1320px) {
	.navbar .nav-menu {
		gap: 1rem;
	}

	.navbar .nav-menu .nav-link {
		font-size: 0.9375rem;
	}

	.navbar .nav-menu .nav-dropdown .dropdown-toggle::after {
		background-size: 0.75rem;
		width: 0.75rem;
		height: 0.75rem;
	}

	.nav-dropdown .nav-dropdown-menu .nav-dropdown-inner {
		padding: 1.5rem 3rem;
	}

	.navbar .nav-buttons a:nth-child(1) {
		font-size: 0.9375rem;
	}

	.nav-dropdown-menu .featured-read-box {
		max-width: 28vw;
	}
}

@media screen and (max-width:1199px) {
	.navbar {
		padding: 0.875rem 0;
	}

	.navbar.expanded {
		box-shadow: none;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		overflow: scroll;
	}

	.logged-in .navbar.expanded {
		top: var(--wp-admin--admin-bar--height, 0);
	}

	.navbar .nav-content-wrapper {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.navbar .nav-logo {
		transform: translateY(0);
	}

	.navbar .nav-menu {
		height: auto;
		left: 0;
		right: 0;
		top: 4rem;
		position: absolute;
		flex-direction: column;
		align-items: flex-start;
		border-top: 1px solid #ccc;
		display: none;
		padding-bottom: 6rem;
		gap: 0;
	}

	.navbar .nav-menu.active {
		display: flex;
	}

	.navbar .nav-buttons {
		gap: 2rem;
	}

	.navbar .nav-buttons a:nth-child(1) {
		font-size: 1.375rem;
		font-weight: 600;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		text-align: center;
		padding: 1.688rem 0;
		background: #fff;
		border-top: 1px solid #ccc;
		display: none;
	}

	.navbar .nav-buttons a.active:nth-child(1) {
		display: block;
	}

	.navbar .nav-buttons a:nth-child(2) {
		padding: 0.625rem 1rem;
	}

	.navbar .navbar-toggle-btn {
		display: flex;
	}

	.navbar .navbar-toggle-btn.active {
		margin-left: 0.375rem;
	}

	.navbar-toggle-btn.active .bar:nth-child(1) {
		transform: rotate(45deg) translate(4px, 4px);
		width: 1.5rem;
		height: 0.188rem;
	}

	.navbar-toggle-btn.active .bar:nth-child(2) {
		transform: rotate(-45deg) translate(3px, -3px);
		width: 1.5rem;
		height: 0.188rem;
	}

	.navbar .nav-menu > div {
		width: 100%;
		border-bottom: 1px solid #ccc;
		padding: 2rem 0;
		line-height: normal;
	}

	.navbar .nav-menu .nav-dropdown {
		width: 100%;
	}

	.navbar .nav-dropdown .nav-dropdown-menu {
		width: 100%;
		position: static;
		background-color: #fff;
		box-shadow: none;
		min-height: auto;
	}

	.nav-dropdown .nav-dropdown-menu .nav-dropdown-inner {
		grid-template-columns: auto;
		padding: 1.75rem 1rem 0;
		gap: 0;
	}

	.navbar .nav-menu .nav-link {
		transform: translateY(0);
	}

	.navbar .nav-menu .nav-link,
	.navbar .nav-menu .nav-dropdown button {
		width: 100%;
		display: block;
		text-align: left;
		font-size: 1.375rem;
		font-weight: 600;
		padding: 0 1rem;
	}

	.navbar .nav-menu .nav-dropdown.active .dropdown-toggle::before {
		display: none;
	}

	.navbar .nav-menu .nav-dropdown .dropdown-toggle::after {
		background-size: 0.9375rem;
		width: 0.9375rem;
		height: 0.9375rem;
		position: absolute;
		right: 1rem;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper {
		grid-template-rows: repeat(5, auto);
		grid-template-columns: repeat(2, 256px);
		row-gap: 0;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link {
		margin-bottom: 1.125rem;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link:not(.placeholder-item):last-child {
		margin-bottom: 0;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper .placeholder-item {
		display: none;
	}

	.nav-dropdown-menu .featured-read-box {
		display: none;
		position: relative;
		max-width: 100%;
		margin-top: 2rem;
		padding: 1rem 1.25rem;
	}

	.nav-dropdown-menu .featured-read-box.show-all-devices {
		display: block;
	}

	.nav-dropdown-menu .featured-read-box h5 {
		padding-top: 1.5rem;
	}

	.nav-dropdown-menu .featured-read-box .btn.btn-primary {
		font-size: 1rem;
		padding: 0.75rem 1.25rem;
	}

}

@media screen and (max-width:991px) {
	.navbar .nav-buttons a:nth-child(2) {
		font-size: 0.875rem;
	}
}

@media screen and (min-width:576px) and (max-width:1199px) {
	.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link:not(.placeholder-item):nth-child(5) {
		margin-bottom: 0;
	}
}

@media screen and (max-width:575px) {
	.nav-dropdown .nav-dropdown-menu .nav-dropdown-inner {
		padding: 0.875rem 0 0;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper {
		grid-auto-flow: row;
		grid-template-columns: 1fr;
	}

	.navbar .nav-menu > div {
		padding: 1.4rem 0;
	}

	.navbar .nav-menu .nav-link,
	.navbar .nav-menu .nav-dropdown button {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.navbar .nav-menu .nav-dropdown .dropdown-toggle::after {
		background-size: 0.875rem;
		width: 0.875rem;
		height: 0.875rem;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link {
		margin-bottom: 1.375rem;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link h5 {
		font-size: 1rem;
	}

	.nav-dropdown-menu .nav-menu-links-wrapper .nav-menu-link p {
		font-size: 0.875rem;
		padding-top: 0.375rem;
	}

	.navbar .nav-buttons {
		gap: 1rem;
	}

	.navbar .nav-buttons a:nth-child(1) {
		font-size: 1rem;
		padding: 1.125rem 0;
	}

	.navbar .navbar-toggle-btn {
		gap: 0.313rem;
	}

	.navbar .navbar-toggle-btn.active {
		margin-left: 0;
	}

	.navbar .navbar-toggle-btn .bar {
		width: 1.063rem;
		height: 0.125rem;
	}

	.navbar-toggle-btn.active .bar:nth-child(1) {
		transform: rotate(45deg) translate(2px, 2px);
		width: 1.063rem;
		height: 0.125rem;
	}

	.navbar-toggle-btn.active .bar:nth-child(2) {
		transform: rotate(-45deg) translate(3px, -3px);
		width: 1.063rem;
		height: 0.125rem;
	}

	.nav-dropdown-menu .featured-read-box {
		margin-top: 1.125rem;
	}
}

/* ----- FOOTER ------- */
.footer {
	padding: 7rem 0;
	background-color: #0f1820;
	position: relative;
	z-index: 99;
}

.footer .footer-upper-block {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	padding-bottom: 1.5rem;
	gap: 1.5rem
}

.footer-upper-block .contact-cta {
	grid-column: span 4
}

.footer-upper-block .contact-cta h2 {
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 3.438rem;
	padding-bottom: 2rem
}

.footer-upper-block .footer-nav {
	grid-column: span 8;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem
}

.footer-upper-block .footer-nav .footer-nav-block h5 {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1.125rem
}

.footer-upper-block .footer-nav .footer-nav-block .nav-links-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem
}

.footer-upper-block .footer-nav .footer-nav-block .nav-links-list a {
	color: #fff;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.2;
	position: relative;
	max-width: fit-content
}

.footer-asgn-block .company-text-links a:hover,
.footer-lower-block .company-info p a:hover,
.footer-upper-block .footer-nav .footer-nav-block .nav-links-list a:hover {
	text-decoration: underline
}

.footer-upper-block .footer-nav .footer-nav-block-group {
	display: flex;
	flex-direction: column;
	gap: 3.25rem
}

.footer .footer-lower-block {
	display: flex;
	align-items: flex-end;
	justify-content: space-between
}

.footer-lower-block .company-info .logo {
	max-width: 19.5rem;
	padding-bottom: 2rem;
	display: block
}

.footer-lower-block .company-info p {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 2rem
}

.footer-lower-block .company-info p:last-child {
	margin-bottom: 0;
}

.footer-lower-block .company-social {
	display: flex;
	align-items: center;
	gap: .875rem
}

.footer-lower-block .company-social a {
	width: 2.188rem;
	height: 2.188rem;
	border-radius: 100px;
	border: 1.5px solid rgba(255, 255, 255, .25);
	display: flex;
	align-items: center;
	justify-content: center
}

.footer-lower-block .company-social a:hover {
	background-color: #ffffff25
}

.footer-lower-block .company-social a img {
	max-width: .75rem
}

.footer-asgn-block .eeoe {
	color: #ccc;
	font-size: 1rem;
	line-height: 1.75
}

.footer-asgn-block .eeoe p {
	font-size: inherit;
	line-height: inherit;
}

.footer-asgn-block .eeoe a {
	text-decoration: underline;
}

.footer-asgn-block .eeoe a:hover {
	text-decoration: none;
}

.footer-asgn-block {
	padding-top: 5rem;
	margin-top: 5rem;
	border-top: 1px solid #ccc
}

.footer-asgn-block .company-logo {
	max-width: 10rem;
	padding-bottom: 1.5rem
}

.footer-asgn-block .company-text-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 3rem
}

.footer-asgn-block .company-text-links p {
	color: #fff;
	font-size: 1rem;
	line-height: 1.5rem;
}

.footer-asgn-block .company-text-links p a {
	font-size: 1rem;
	text-decoration: underline
}

.footer-asgn-block .company-text-links p a:hover {
	text-decoration: none
}

.footer-asgn-block .company-text-links a {
	color: #fff;
	font-size: .875rem;
	text-decoration: underline;
}

.footer-asgn-block .company-text-links a:hover {
	text-decoration: none;
}

.footer-asgn-block .company-text-links .company-links {
	display: flex;
	align-items: center;
	gap: 3rem
}

@media screen and (max-width:1199px) {
	.footer-upper-block .contact-cta {
		grid-column: span 3
	}

	.footer-upper-block .footer-nav {
		grid-column: span 9;
		padding-left: 2rem
	}

	.footer-asgn-block .company-text-links .company-affiliation {
		flex: 1
	}

	.footer-asgn-block .company-text-links {
		align-items: start;
		padding-bottom: 2.5rem;
		gap: 3rem
	}
}

@media screen and (max-width:991px) {
	.footer {
		padding: 6rem 0
	}

	.footer-upper-block .contact-cta {
		display: none
	}

	.footer-upper-block .footer-nav {
		grid-column: span 12;
		padding-left: 0
	}

	.footer-lower-block .company-info .logo {
		max-width: 14rem;
		padding-bottom: 1.5rem
	}

	.footer .footer-text-block p {
		font-size: .875rem
	}

	.footer-asgn-block {
		padding-top: 4rem;
		margin-top: 4rem
	}

	.footer-asgn-block .company-text-links {
		flex-direction: column;
		padding-bottom: 2rem;
		gap: 1.5rem
	}

	.footer-asgn-block .company-logo {
		max-width: 8rem
	}
}

@media screen and (max-width:575px) {
	.footer {
		padding: 5rem 0 6rem
	}

	.footer .footer-upper-block {
		padding-bottom: 3.25rem
	}

	.footer-upper-block .footer-nav {
		display: flex;
		flex-direction: column;
		gap: 2.5rem
	}

	.footer-upper-block .footer-nav .footer-nav-block-group {
		gap: 2.5rem
	}

	.footer-upper-block .footer-nav .footer-nav-block .nav-links-list {
		gap: 1.125rem
	}

	.footer .footer-lower-block {
		flex-direction: column;
		align-items: flex-start
	}

	.footer-lower-block .company-info .logo {
		padding-bottom: 2rem
	}

	.footer-lower-block .company-social {
		margin: 0 auto;
		padding-top: 2.5rem
	}

	.footer-asgn-block .company-text-links .company-links {
		gap: 1rem;
		flex-direction: column;
		align-items: flex-start
	}
}

/* =======================
	Hero CSS
==========================*/

.home-hero {
	padding: 0;
	background-image: url(../png/home-hero-bg.png);
	background-position: center;
	background-size: cover;
	position: relative;
}

.home-hero::before {
	content: "";
	position: absolute;
	width: calc(100% - 4rem);
	height: 100%;
	background: linear-gradient(90.51deg, rgba(255, 255, 255, 0.63) 9.1%, rgba(255, 255, 255, 0.449899) 53.17%, rgba(255, 255, 255, 0.256819) 73.79%, rgba(255, 255, 255, 0) 99.58%);
	display: none;
}

.hero-slider {
	display: flex;
	align-items: center;
	min-height: 47.5rem;
	padding: 2rem 0;
	user-select: none;
}

.hero-slider .swiper-wrapper {
	align-items: center;
}

.hero-content h1 {
	font-weight: 400;
	line-height: 4.688rem;
}

.hero-content h1 .bold {
	font-weight: bold;
}

.hero-content p:not(p + p) {
	margin-top: 0.5rem;
	font-size: 1.25rem;
	line-height: 1.75rem;
	max-width: 33.25rem;
}

.hero-content .btn {
	margin-top: 1.5rem;
}

.hero-content .btn-wrap {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.hero-slide .hero-image {
	max-width: clamp(420px, 40vw, 540px);
	margin-left: auto;
}

.hero-slider .hero-slider-pagination {
	top: auto;
	bottom: 28px;
}

.hero-slider .hero-slider-pagination .swiper-pagination-bullet {
	width: 0.625rem;
	height: 0.625rem;
	margin: 0 0.375rem;
	background-color: #666666;
	opacity: .5;
}

.hero-slider .hero-slider-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #1C2B39;
}

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

	.hero-slide .hero-image {
		max-width: 400px;
		margin-left: auto;
	}
}

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

	.home-hero::before {
		display: block;
	}

	.hero-slider {
		min-height: 27.5rem;
	}

	.hero-content h1 {
		font-size: 3.438rem;
		line-height: 60px;
	}

	.hero-content p:not(p + p) {
		font-size: 1.125rem;
		line-height: 1.5rem;
		max-width: 29.75rem;
		margin-top: 1.375rem;
	}

	.hero-content .btn {
		margin-top: 1.25rem;
	}

	.hero-slide .hero-image {
		max-width: 14rem;
	}

	.hero-slider .hero-slider-pagination {
		bottom: 1rem;
	}

	.hero-slider .hero-slider-pagination .swiper-pagination-bullet {
		width: 0.375rem;
		height: 0.375rem;
		margin: 3px;
	}
}

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

	.hero-slider {
		padding: 4rem 0;
	}

	.hero-slider .hero-slide {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.hero-content h1 {
		font-size: 3.125rem;
		line-height: 3.438rem;
	}

	.hero-slide .hero-image {
		max-width: 30rem;
		margin: auto;
		padding-top: 1rem;
	}

	.hero-slider .hero-slider-pagination {
		bottom: 1rem;
	}

	.hero-slider .hero-slider-pagination .swiper-pagination-bullet {
		width: 0.375rem;
		height: 0.375rem;
		margin: 3px;
	}
}

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

	.hero-content p:not(p + p) {
		font-size: 1rem;
		line-height: 1.25rem;
		margin-top: 1.125rem;
	}

	.hero-content .btn {
		margin-top: 1rem;
	}

	.hero-slide .hero-image {
		max-width: 17.5rem;
	}
}

.two-column-hero {
	padding: 2.5rem 0;
	background-color: #F7F7F4;
}

.hero-color-theme-light {
	color: #fff;
}

.hero-color-theme-dark {
	color: inherit;
}

.bg-fit-cover {
	background-position: center;
	background-size: cover;
}

/* ----- Our Talent CSS -----  */

.talent-slider {
	overflow: visible;
}

.talent-slider .swiper-wrapper {
	user-select: none;
}

.talent-slide {
	cursor: pointer;
}

.talent-slide .talent-image {
	font-size: 0;
	border-radius: 150px;
	max-width: 16.75rem;
	height: 21.875rem;
	background-color: #fff;
	background-image: url(../jpg/profile-gradient-bg.jpg);
	background-position: right;
	background-size: cover;
}

.talent-slide .talent-image img {
	border-radius: inherit;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	height: 100%;
}

.talent-slide .talent-info {
	color: #000;
	text-align: center;
	margin-top: -3rem;
	padding: 1rem;
	border-radius: 100px;
	background: #fff;
	position: relative;
}

.talent-slide .talent-info h3 {
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.5rem;
	margin-bottom: 0.25rem;
}

.talent-slide .talent-info p {
	font-size: 1rem;
	font-weight: 500;
}

.talent-slider .cta-block {
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.talent-slider .talent-slider-buttons {
	min-height: 2.5rem;
}

@media screen and (min-width:992px) {
	.talent-slide:hover .talent-image {
		box-shadow: 0px 4px 15px 0px #0000001A;
	}

	.talent-slide:hover .talent-info {
		box-shadow: 0px 8px 24px 0px #959DA533;
	}

	.talent-slide:hover .talent-info h3 {
		color: #00807C;
	}
}

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

	.talent-slide .talent-image {
		height: 18.375rem;
	}

	.talent-slide .talent-info {
		margin-top: -2.5rem;
		padding: 0.75rem 1.5rem;
	}

	.talent-slide .talent-info p {
		font-size: 1.125rem;
		font-weight: 600;
		line-height: 1.5rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.talent-slider .cta-block {
		position: static;
		transform: none;
		display: flex;
		justify-content: center;
		margin-top: 2rem;
	}
}

@media screen and (max-width:575px) {
	.talent-slide .talent-image {
		height: clamp(15.375rem, 60vw, 21rem);
	}

	.talent-slider .cta-block {
		margin-top: 1.5rem;
	}
}

@media screen and (max-width:479px) {
	.talent-slide .talent-image {
		height: clamp(15.375rem, 68vw, 21rem);
	}
}


/* --- Profile Panel --- */
.profile-panel {
	color: #000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 74.5rem;
	max-height: 100vh;
	overflow: auto;
	padding: 6.5rem 6rem;
	background-image: url(../jpg/profile-panel-talent-bg.jpg);
	background-size: cover;
	background-position: center;
	z-index: 1099;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20%);
	transition: .3s;
}

.profile-panel.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
}

.profile-panel .close-btn {
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	border-radius: 100px;
	background-color: #fff;
	border: 1.5px solid #1C2B39;
	background-size: 1.125rem;
	background-position: center;
	background-image: url(../svg/cross-black-icon.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 4rem;
	right: 4.5rem;
}

.profile-panel .close-btn:hover {
	border-color: #2B4256;
	background-color: #E8EDEE;
}

.profile-panel .panel-row {
	display: grid;
	column-gap: 1.5rem;
	grid-template-columns: clamp(224px, 30vw, 364px) 1fr;
}

.profile-panel .profile-image {
	max-width: 22.75rem;
	margin-bottom: 2rem;
	background-color: #fff;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	background-image: url(../jpg/profile-gradient-bg.jpg);
	background-size: cover;
	background-position: center;
}

.profile-panel .profile-image img {
	border-radius: 30px;
}

.profile-panel .profile-image iframe {
	width: 100%;
	min-height: 250px;
}

.profile-panel .expertise-lists-wrapper {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5rem;
	row-gap: 0.5rem;
}

.profile-panel .expertise-list {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.profile-panel .expertise-list h3 {
	flex-shrink: 0;
}

.profile-panel .expertise-list p {
	font-size: 20px;
	font-weight: 400;
}

/* See Profile CTA */
.see-profile-cta {
	display: flex;
	align-items: center;
	max-width: max-content;
	gap: 1.5rem;
}

.see-profile-cta span {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.see-profile-cta .arrow-icon {
	width: 1.5rem;
	height: 1.5rem;
	cursor: pointer;
	border-radius: 100px;
	background-color: #fff;
	border: 1px solid #1C2B39;
	background-size: 0.75rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../svg/arrow-upright-primary-icon.svg);
	box-shadow: 0px 0px 4px 0px #0000001A;
}

.see-profile-cta:hover .arrow-icon {
	border-color: #2B4256;
	background-color: #E8EDEE;
}

/* Candidate Talents */
.candidate-talents {
	padding: 2.5rem 0;
	overflow: visible;
	background-color: #F7F7F4;
}

.candidate-talents .filters-block {
	padding-bottom: 2.5rem;
	position: relative;
	z-index: 101;
}

.candidate-talents .talent-categories-container {
	display: flex;
	flex-direction: column;
	row-gap: 7.5rem;
}

.candidate-talents .talent-categories-container .talent-category {
	display: grid;
	grid-template-columns: 3fr 9fr;
	gap: 1.5rem;
}

.talent-category .category-info .is-sticky {
	position: relative;
	max-width: 17rem;
	height: 100%;
	background-color: #F7F7F4;
	z-index: 99;
}

.talent-category .category-info .is-sticky::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 8rem;
	background: linear-gradient(180deg, rgba(247, 247, 244, 0) 0%, rgba(247, 247, 244, 0.329421) 30%, rgba(247, 247, 244, 0.6) 56%, rgba(247, 247, 244, 0.8) 79.5%, #F7F7F4 100%);
}

.talent-category .category-info .is-sticky.fixed {
	position: fixed;
	top: 7.5rem;
	z-index: 10;
}

.talent-category .category-info h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.talent-category .category-info p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin-bottom: 1.5rem;
}

.talent-category .talents-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 1.5rem;
	row-gap: 2.75rem;
}

.candidate-talent-card {
	cursor: pointer;
}

.candidate-talent-card .talent-image {
	overflow: hidden;
	border-radius: 30px;
	margin-bottom: 1.125rem;
	height: 15rem;
	background-image: url(../jpg/profile-gradient-bg.jpg);
	background-position: right;
	background-size: cover;
}

.candidate-talent-card .talent-image img {
	object-fit: cover;
	-o-object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	height: 100%;
}

.candidate-talent-card .talent-info {
	padding: 0 0.5rem;
}

.candidate-talent-card .talent-info h4 {
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 600;
}

.candidate-talent-card .talent-info p {
	font-size: 1.125rem;
	line-height: 1.5rem;
}

.candidate-talent-card .see-profile-cta {
	margin: 1rem 0.5rem 0;
}


@media screen and (max-width:1199px) {
	.talent-category .category-info h2 {
		font-size: 2rem;
	}

	.talent-category .category-info .is-sticky {
		max-width: 14rem;
	}
}


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

	.candidate-talents .filters-block {
		row-gap: 1.25rem;
	}

	.talent-category .category-info .is-sticky.fixed {
		top: 6rem;
	}

	.talent-category .category-info h2 {
		transform: translateY(-0.75rem);
		margin-bottom: 0;
	}

	.talent-category .category-info p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin-bottom: 1rem;
	}

	.candidate-talents .talent-categories-container .talent-category {
		grid-template-columns: 2fr 4fr;
	}

	.talent-category .talents-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 2.25rem;
	}

	.candidate-talent-card .see-profile-cta {
		gap: 2.25rem;
	}

	.candidate-talent-card .see-profile-cta span {
		font-size: 0.875rem;
	}
}

@media screen and (max-width:767px) {
	.candidate-talents .talent-categories-container .talent-category {
		grid-template-columns: 2fr 3fr;
	}

	.talent-category .talents-grid {
		grid-template-columns: 1fr;
		row-gap: 1.5rem;
	}
}

@media screen and (max-width:575px) {
	.candidate-talents {
		padding: 5rem 0;
		background-color: #F7F7F4;
	}

	.candidate-talents .filters-block {
		padding-bottom: 3.75rem;
	}

	.candidate-talents .talent-categories-container {
		row-gap: 5rem;
	}

	.candidate-talents .talent-categories-container .talent-category {
		grid-template-columns: 1fr;
		gap: 4.5rem;
	}

	.talent-category .category-info .is-sticky {
		max-width: 100%;
	}

	.candidate-talent-card .talent-image {
		height: 23.75rem;
	}

	.talent-category .category-info p {
		margin-bottom: 0.625rem;
	}

	.talent-category .talents-grid {
		grid-template-columns: 1fr;
		row-gap: 1.5rem;
	}

	.candidate-talent-card .talent-info h4 {
		font-size: 1rem;
	}

	.candidate-talent-card .talent-info p {
		font-size: 1rem;
	}
}

.profile-panel .panel-right .expertise-lists-wrapper {
	display: none;
}

.profile-panel .panel-right .see-profile-cta {
	display: none;
}

.profile-panel .about-profile {
	padding-top: 1.5rem;
}

.profile-panel .about-profile .name {
	font-size: 2.5rem;
	font-weight: 4000;
	line-height: 3.438rem;
}

.profile-panel .about-profile .profile-meta {
	display: flex;
	flex-direction: column;
	row-gap: 0.625rem;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.profile-panel .about-profile .profile-meta p {
	font-size: 1.375rem;
	font-weight: 600;
}

.profile-panel .about-profile .profile-talent-skills {
	margin-bottom: 2.5rem;
}

.profile-panel .about-profile .profile-talent-skills p {
	font-size: 1.25rem;
	font-weight: 600;
	font-style: italic;
}

.profile-panel .about-profile .profile-bio {
	padding-right: 1rem;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.profile-panel .about-profile .profile-bio p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin-top: 0.75rem;
}

.profile-panel .about-profile .profile-bio p:nth-child(1) {
	margin-top: 0;
}

.profile-panel .panel-cta-wrapper {
	margin-top: 1.5rem;
}

.profile-panel .panel-cta-wrapper p {
	font-size: 1.375rem;
	font-weight: 600;
	padding-bottom: 1rem;
}

.profile-panel .panel-cta-wrapper .btns-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

@media screen and (max-width:991px) {
	.profile-panel {
		padding: 11rem 3.5rem 3.5rem;
	}

	.profile-panel .close-btn {
		top: 3rem;
		right: 3rem;
		width: 2.125rem;
		height: 2.125rem;
		background-size: 0.875rem;
	}

	.profile-panel .panel-row {
		grid-template-columns: clamp(224px, 24vw, 364px) 1fr;
	}

	.profile-panel .profile-image {
		max-width: 14rem;
		margin-bottom: 0.75rem;
	}

	.profile-panel .expertise-lists-wrapper {
		margin-bottom: 1.25rem;
		row-gap: 1rem;
	}

	.profile-panel .expertise-list {
		flex-direction: column;
		gap: 0.25rem;
	}

	.profile-panel .expertise-list p {
		font-size: 1.125rem;
	}

	.see-profile-cta {
		gap: 1rem;
	}

	.profile-panel .about-profile {
		padding-top: 2.25rem;
	}

	.profile-panel .about-profile .profile-meta {
		margin-bottom: 1rem;
	}

	.profile-panel .about-profile .profile-meta p {
		font-size: 1.25rem;
	}

	.profile-panel .about-profile .profile-talent-skills {
		margin-bottom: 1.5rem;
	}

	.profile-panel .about-profile .profile-talent-skills p {
		font-size: 1.125rem;
	}

	.profile-panel .about-profile .profile-bio {
		padding-right: 0;
		font-size: 1.125rem;
	}

	.profile-panel .about-profile .profile-bio p {
		font-size: 1.125rem;
	}

	.profile-panel .panel-cta-wrapper {
		margin-top: 1rem;
	}

	.profile-panel .panel-cta-wrapper p {
		font-size: 1.25rem;
	}

	.profile-panel .panel-cta-wrapper .btns-row .btn.btn-primary {
		border: 1px solid #1C2B39;
	}
}


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

	.profile-panel {
		padding: 6rem 3.5rem;
	}

	.profile-panel .panel-row {
		grid-template-columns: 1fr;
	}

	.profile-panel .profile-image {
		margin-bottom: 0.75rem;
	}

	.see-profile-cta span {
		font-size: 0.875rem;
	}

	.profile-panel .about-profile {
		padding-top: 0;
	}

	.profile-panel .about-profile .name {
		line-height: 1.2;
	}

	.profile-panel .about-profile .profile-meta {
		margin-bottom: 0.75rem;
		margin-top: 0.25rem;
	}

	.profile-panel .panel-left .expertise-lists-wrapper {
		display: none;
	}

	.profile-panel .panel-left .see-profile-cta {
		display: none;
	}

	.profile-panel .panel-right .expertise-lists-wrapper {
		display: flex;
	}

	.profile-panel .panel-right .see-profile-cta {
		display: flex;
	}

	.profile-panel .about-profile .profile-bio {
		padding-top: 1.5rem;
		line-height: 1.5rem;
	}

	.profile-panel .about-profile .profile-bio p {
		line-height: 1.5rem;
	}

	.profile-panel .panel-cta-wrapper p {
		padding-bottom: 0.75rem;
	}
}


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

	.profile-panel {
		padding: 3.75rem 1rem;
		background-position: 10%;
	}

	.profile-panel .close-btn {
		top: 3rem;
		right: 1rem;
	}
}

/* ---- OUR OFFERINGS ---- */

.offerings-slider {
	overflow: visible;
}

.offerings-slider .swiper-wrapper {
	user-select: none;
	flex-wrap: nowrap;
}

.service-info-card {
	color: #000;
	height: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
	padding: 1.5rem;
	position: relative;
	border-radius: 30px;
	background-color: #fff;
}

/* specific */
a.service-info-card {
	border: 1px solid #D8D8D8;
}

/* specific */
.offerings-slider .service-info-card {
	height: 15rem;
}

.service-info-card .service-icon {
	max-width: 3rem;
}

.service-info-card .service-content h3 {
	margin-bottom: 0.75rem;
	line-height: 1;
}

.service-info-card .service-content p {
	font-size: 1rem;
	line-height: 1.125rem;
}

/* specific css */
.offerings-slider .service-info-card .service-content p {
	max-width: 12rem;
}

.offerings-slider .cta-block {
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.offerings-slider .offerings-slider-buttons {
	min-height: 2.5rem;
}

@media screen and (min-width:992px) {
	a.service-info-card:not(.no-link):hover {
		border-color: #fff;
		box-shadow: 0px 8px 24px 0px #959DA533;
	}

	a.service-info-card:hover .cta-arrow-icon {
		opacity: 1;
		visibility: visible;
	}

	a.service-info-card.no-link {
		cursor: default;
	}
}

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

	/* specific */
	a.service-info-card {
		border: 0;
	}

	/* specific */
	.offerings-slider .service-info-card {
		height: 13.75rem;
	}

	.service-info-card .service-icon {
		max-width: 2.5rem;
	}

	.service-info-card .service-content h3 {
		font-size: 1.25rem;
	}

	.service-info-card .service-content p {
		font-size: 0.875rem;
		max-width: 100%;
	}

	.offerings-slider .cta-block {
		position: static;
		transform: none;
		display: flex;
		justify-content: center;
		margin-top: 2rem;
	}

}

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

	.offerings-slider .service-info-card {
		height: 15rem;
	}

	.service-info-card .service-content h3 {
		font-size: 1.375rem;
	}

	.offerings-slider .cta-block {
		margin-top: 1.5rem;
	}

}

/* Our Process */
.our-process .process-steps-wrapper {
	margin: 0 6rem;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}

.process-steps-wrapper .process-step {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.process-step .number {
	color: #fff;
	font-size: 1.375rem;
	font-weight: 500;
}

.process-step.first .number {
	color: #D6ECE7;
}

.process-step.second .number {
	color: #FFDD74;
}

.process-step.third .number {
	color: #F5AF84;
}

.process-step.fourth .number {
	color: #FBD3DD;
}

.process-step.fifth .number {
	color: #D1EDF2;
}

.process-step.sixth .number {
	color: #C7E3FA;
}

.process-step .content h3 {
	color: #fff;
	margin-bottom: 0.5rem;
}

.process-step .content p {
	color: #fff;
	font-size: 1rem;
	line-height: 1.125rem;
}

.our-process .process-progress-bar {
	margin: 0 5.5rem;
	margin-bottom: 3rem;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	background-color: #fff;
	border-radius: 50px;
	overflow: hidden;
}

.process-progress-bar .progress {
	opacity: 60%;
	height: 1.25rem;
	border-radius: 50px;
	overflow: visible;
}

.process-progress-bar .progress {
	margin-left: -1.75rem;
	position: relative;
}

.process-progress-bar .progress.first {
	margin-left: 0;
	background-color: #BBDFD7;
	z-index: 9;
}

.process-progress-bar .progress.second {
	background-color: #FFC718;
	z-index: 8;
}

.process-progress-bar .progress.third {
	background-color: #EF7A32;
	z-index: 7;
}

.process-progress-bar .progress.fourth {
	background-color: #F8B6C7;
	z-index: 6;
}

.process-progress-bar .progress.fifth {
	background-color: #B3E1EA;
	z-index: 5;
}

.process-progress-bar .progress.sixth {
	background-color: #A6D5FE;
	z-index: 6;
}


@media screen and (max-width:991px) {
	.our-process .process-steps-wrapper {
		gap: 1.25rem;
		margin: 0;
	}

	.our-process .process-progress-bar {
		margin: 0;
		margin-bottom: 2rem;
	}

	.process-steps-wrapper .process-step {
		gap: 0.75rem
	}

	.process-step .content h3 {
		font-size: 1.375rem;
		margin-bottom: 1rem;
	}
}

@media screen and (max-width:767px) {
	.process-progress-bar {
		margin-bottom: 1.5rem;
	}

	.process-progress-bar .progress {
		margin-left: -1rem;
	}

	.our-process .process-steps-wrapper .process-step {
		width: calc(50% - 0.75rem);
		margin-bottom: 1.75rem;
	}

	.process-steps-wrapper .process-step:last-child {
		margin-bottom: 0;
	}

	.process-step .content h3 {
		font-size: 1.375rem;
		margin-bottom: 0.5rem;
	}
}

/* Blog Feed CSS */
.blog-feed-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.blog-card {
	display: block;
	border-radius: 30px;
	border: 1px solid #D8D8D8;
	background-color: #fff;
	position: relative;
	height: 26.5rem;
	overflow: hidden;
}

.blog-card:hover {
	border-color: transparent;
	box-shadow: 0px 8px 24px 0px #959DA533;
}

.blog-card .blog-card-cover {
	height: 15rem;
}

.blog-card .blog-card-cover img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.blog-card .blog-card-info {
	padding: 1.5rem;
}

.blog-card .blog-card-info .meta-info {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.125rem;
	padding-bottom: 1rem;
}

.blog-card .blog-card-info h3 {
	font-weight: 600;
	line-height: 1.5rem;
	margin-bottom: 0.625rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-card .blog-card-info p {
	font-size: 1rem;
	line-height: 1.125rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-card:hover .cta-arrow-icon {
	opacity: 1;
	visibility: visible;
}

.blog-card .cta-arrow-icon:hover {
	border-color: #2B4256;
	background-color: #E8EDEE;
}

.blog-feed-cta {
	display: flex;
	justify-content: center;
	padding-top: 2.5rem;
}

@media screen and (max-width:1199px) {
	.blog-card .blog-card-cover {
		height: 13rem;
	}
}

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

	.blog-feed-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.blog-feed-row .blog-card:last-child {
		display: none;
	}

	.blog-card {
		height: 25.25rem;
	}

	.blog-card .blog-card-cover {
		height: 14.25rem;
	}

	.blog-card .blog-card-info .meta-info {
		padding-bottom: 0.75rem;
	}

	.blog-card .blog-card-info .meta-info span {
		font-size: 0.875rem;
	}

	.blog-card .blog-card-info p {
		font-size: 0.875rem
	}

	.blog-feed-cta {
		padding-top: 2rem;
	}
}

@media screen and (max-width:767px) {
	.blog-card .blog-card-cover {
		height: 13rem;
	}
}

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

	.blog-feed-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.blog-card {
		margin: 0 auto;
		width: 100%;
		max-width: 22.5rem;
		height: 26.5rem;
	}

	.blog-card:hover {
		border-color: #D8D8D8;
		box-shadow: none;
	}

	.blog-card .blog-card-cover {
		height: 15rem;
	}

	.blog-card .blog-card-info {
		padding: 1.75rem;
	}

	.blog-card .cta-arrow-icon {
		display: none;
	}

	.blog-feed-cta {
		padding-top: 1.5rem;
	}
}

/* Leadership Team */
.leadership-team .leadership-cards-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	row-gap: 2.5rem;
}

/* Leadership Card */
.leadership-card {
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.leadership-card .profile-img {
	overflow: hidden;
	border-radius: 30px;
	margin-bottom: 1.5rem;
	height: 15rem;
	background-color: #fff;
	background-image: url(../jpg/profile-gradient-bg.jpg);
	background-position: right;
	background-size: cover;
}

.leadership-card .profile-img img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	height: 100%;
}

/* Safari-specific fix for object-fit issue */
@supports (-webkit-hyphens: none) {
	.leadership-card .profile-img img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
		display: block;
	}
}

.leadership-card .profile-name {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0rem .75rem;
}

.leadership-card .profile-name h3 {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.5rem;
}

.leadership-card .profile-name .linkedin-cta {
	font-size: 0;
	max-width: 1.25rem;
	display: inline-block
}

.leadership-card .profile-name .linkedin-cta:hover {
	transform: scale(1.09);
}

.leadership-card .profile-role {
	font-size: 1.125rem;
	line-height: 1.5rem;
	padding: 0rem .75rem;
	margin-top: 0.25rem;
	margin-bottom: 1rem;
}

.leadership-card .see-profile-cta {
	margin-top: auto;
	padding: 0rem .75rem;
}

/* Leadership Profile Panel */
.profile-panel.leadership {
	padding: 4.5rem;
	background-image: url(../jpg/profile-panel-leadership-bg.jpg);
}

.profile-panel.leadership .panel-row {
	margin-top: 0.625rem;
	column-gap: 3rem;
	grid-template-columns: clamp(348px, 45vw, 461px) 1fr;
}

.profile-panel.leadership .close-btn {
	position: static;
	display: flex;
	margin-left: auto;
}

.profile-panel.leadership .profile-image {
	max-width: 29rem;
}

.profile-panel .quote h5 {
	font-size: 1.375rem;
	font-weight: 600;
}

.profile-panel.leadership .about-profile {
	padding-top: 3rem;
	padding-bottom: 1.25rem;
}

.profile-panel .about-profile .linkedin-cta {
	display: block;
	max-width: 1.875rem;
	margin-bottom: 0.625rem;
}

.profile-panel .about-profile .linkedin-cta:hover {
	transform: scale(1.09);
}

.profile-panel.leadership .about-profile > .role {
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 3.438rem;
	margin-bottom: 0.25rem;
}

.profile-panel.leadership .about-profile .profile-bio {
	padding-top: 0;
	max-width: 29rem;
}

.profile-panel.leadership .about-profile .profile-bio p {
	max-width: 29rem;
}

@media screen and (max-width:991px) {
	.leadership-team .leadership-cards-row {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 2rem;
	}

	.leadership-card .profile-img {
		margin-bottom: 1.25rem;
	}

	.leadership-card .profile-name h3 {
		font-size: 1rem;
	}

	.leadership-card .profile-name .linkedin-cta {
		display: none;
	}

	.leadership-card .profile-role {
		font-size: 1rem;
		margin-top: 0;
	}

	.leadership-card .see-profile-cta {
		gap: 2rem;
	}

	.profile-panel.leadership {
		padding: 3rem 3.5rem;
	}

	.profile-panel.leadership .panel-row {
		margin-top: 3rem;
		column-gap: 1.5rem;
		grid-template-columns: 1fr 1fr;
	}

	.profile-panel .quote h5 {
		font-size: 1.25rem;
	}

	.profile-panel.leadership .about-profile {
		padding-top: 4.5rem;
		padding-bottom: 1rem;
	}

	.profile-panel .about-profile .linkedin-cta {
		margin-bottom: 0.25rem;
	}
}

@media screen and (max-width:767px) {
	.leadership-team .leadership-cards-row {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 2rem;
	}

	.profile-panel.leadership .panel-row {
		margin-top: 1rem;
		grid-template-columns: 1fr;
	}

	.profile-panel.leadership .about-profile {
		padding-top: 1.25rem;
	}

	.profile-panel.leadership .about-profile .profile-bio p {
		max-width: 100%;
	}
}

@media screen and (max-width:575px) {
	.leadership-team .leadership-cards-row {
		grid-template-columns: 1fr;
		place-items: center;
		row-gap: 1.25rem;
	}

	.leadership-card .profile-img {
		height: 23.75rem;
		max-width: 23.75rem;
	}

	.leadership-card .profile-name h3 {
		font-size: 1rem;
	}

	.leadership-card .profile-role {
		font-size: 1rem;
	}

	.leadership-card .see-profile-cta {
		gap: 2rem;
	}

	.profile-panel.leadership {
		padding: 1rem 1rem 2rem;
	}

	.profile-panel.leadership .about-profile .name,
	.profile-panel.leadership .about-profile > .role {
		font-size: 1.875rem;
		line-height: 2.5rem;
	}
}

/* OUR WORK PAGE WRAPPER */
.ourwork-page-wrapper {
	background-color: #F7F7F4
}

/* OUR WORK CSS*/
.our-work-head h1 {
	font-weight: 400;
	padding-bottom: 1.375rem;
}

.filters-block {
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.625rem;
	row-gap: 1.5rem;
}

.filter-button {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 50px;
	padding: 0.625rem 1.125rem;
	border: 1px solid #2B4256;
	background-color: #fff;
}

.filter-button:hover {
	background-color: #E8EDEE;
}

.filter-button:active,
.filter-button.active {
	color: #fff;
	background-color: #2B4256;
}

.casestudy-card {
	position: relative;
	padding: 1.5rem;
	min-height: 26.25rem;
	border-radius: 30px;
	background-color: #fff;
	border: 1px solid #D8D8D8;
	text-decoration: none;
	transition: all .3s;
}

.casestudy-card h3 {
	font-size: 2.188rem;
	font-weight: 600;
}

.casestudy-card p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin-top: 1rem;
	padding-right: 1.75rem;
	padding-bottom: 1.75rem;
}

.casestudy-card .cta-arrow-icon {
	transition: all .3s;
}

@media screen and (max-width:1199px) {
	.casestudy-card.primary p {
		max-width: 100%;
		padding-right: 0;
	}
}

@media screen and (min-width:992px) {

	/* Hovers above tablets only */
	.casestudy-card:hover {
		border-color: transparent;
		box-shadow: 0px 8px 24px 0px #959DA533;
	}

	.casestudy-card:hover .cta-arrow-icon {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width:991px) {
	.casestudy-card h3 {
		font-size: 1.875rem;
	}

	.casestudy-card p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		padding: 0;
		padding-bottom: 3rem;
	}

	.casestudy-card.primary p {
		padding-bottom: 0;
		max-width: 100%;
	}

	.casestudy-card.small p {
		padding-bottom: 0;
	}

	.casestudy-card .cta-arrow-icon {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width:575px) {
	.casestudy-card {
		min-height: 11.5rem;
	}

	.casestudy-card h3 {
		font-size: 1.375rem;
	}

	.casestudy-card p {
		font-size: 1rem;
		line-height: 1.125rem;
		margin-top: 0.5rem;
	}
}

/* Our Work Feed */
.our-work-feed {
	background-color: #F7F7F4;
	padding-top: 7.5rem
}

.our-work-feed .work-category {
	display: grid;
	grid-template-columns: 4fr 8fr;
	gap: 1.5rem;
	margin-bottom: 7.5rem;
	position: relative;
	scroll-margin-top: 8.25rem;
}

/* For Admin User */
.logged-in .our-work-feed .work-category {
	scroll-margin-top: 6rem;
}

.our-work-feed .work-category:last-child {
	margin-bottom: 0;
}

.our-work-feed .work-category .casestudy-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.our-work-feed .work-category .category-info {
	position: relative;
	max-width: 19rem;
	height: 100%;
	background-color: #F7F7F4;
	z-index: 99;
}

.our-work-feed .work-category .category-info::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 8rem;
	background: linear-gradient(180deg, rgba(247, 247, 244, 0) 0%, rgba(247, 247, 244, 0.329421) 30%, rgba(247, 247, 244, 0.6) 56%, rgba(247, 247, 244, 0.8) 79.5%, #F7F7F4 100%);
}

.our-work-feed .work-category .category-info.fixed {
	position: fixed;
	top: 7.5rem;
	z-index: 10;
}

.our-work-feed .work-category .category-info h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

.our-work-feed .work-category .category-info p {
	font-size: 1.25rem;
	line-height: 28px;
	margin-top: 0.625rem;
	max-width: 17.5rem;
}

.our-work-feed .work-category .category-info .btn {
	margin-top: 1.375rem;
}

/* Case Study Cards */
.casestudy-card.primary {
	display: flex;
	flex-direction: column;
	grid-column: span 2;
	min-height: 38.75rem;
	padding: 3rem 1.5rem;
	margin-bottom: 1rem;
	background: #fff url(../jpg/casestudy-primary-card-bg.jpg) center / cover no-repeat;
}

.casestudy-card.medium {
	padding: 1.5rem;
	margin-bottom: 1rem;
}

.casestudy-card.small {
	display: flex;
	align-items: center;
	grid-column: span 2;
	min-height: 5.75rem;
	padding: 1rem;
	border-radius: 10px;
}

.casestudy-card.primary h3 {
	max-width: 42rem;
}

.casestudy-card.small h3 {
	font-size: 1.375rem;
	padding-right: 4rem;
}

.casestudy-card.primary p {
	margin-top: 1.25rem;
	margin-bottom: 1.5rem;
	max-width: 40rem;
}

.casestudy-card ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin-top: auto;
	margin-bottom: 0.625rem;
	max-width: 40rem;
	gap: 0.75rem;
}

.casestudy-card ul li {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

/* CTA Arrow Icon */
.casestudy-card .cta-arrow-icon {
	bottom: 1.625rem;
	right: 1.625rem;
}

.casestudy-card.small .cta-arrow-icon {
	top: 50%;
	transform: translateY(-50%);
}

/* Hover Effects Above Tablets Only */
@media screen and (min-width: 992px) {
	.casestudy-card:hover {
		border-color: transparent;
		box-shadow: 0px 8px 24px 0px #959DA533;
	}

	.casestudy-card:hover .cta-arrow-icon {
		opacity: 1;
		visibility: visible;
	}
}

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

	.our-work-head h1 {
		padding-bottom: 2rem;
	}

	.filters-block {
		column-gap: 0.75rem;
	}

	.filter-button {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}

	.our-work-feed {
		padding-top: 6.25rem;
	}

	.our-work-feed .work-category {
		margin-bottom: 6rem;
		scroll-margin-top: 5.625rem;
	}

	/* For Admin User */
	.logged-in .our-work-feed .work-category {
		scroll-margin-top: 3.75rem;
	}

	.our-work-feed .work-category .casestudy-cards-grid {
		row-gap: 1.25rem;
		column-gap: 1.5rem;
	}

	.our-work-feed .work-category .category-info {
		max-width: 14.5rem;
	}

	.our-work-feed .work-category .category-info.fixed {
		top: 6rem;
	}

	.our-work-feed .work-category .category-info p {
		font-size: 1.125rem;
		line-height: 24px;
		margin-top: 0.875rem;
	}

	.our-work-feed .work-category .category-info .btn {
		margin-top: 0.875rem;
	}

	.casestudy-card.primary {
		padding: 3rem 1rem;
		margin-bottom: 0;
	}

	.casestudy-card.medium {
		min-height: 20.625rem;
		padding: 1.5rem 1rem;
		margin-bottom: 0;
	}

	.casestudy-card.small {
		padding: 1rem 0.75rem;
	}

	.casestudy-card.primary h3 {
		font-size: 2.5rem;
	}

	.casestudy-card.small h3 {
		font-size: 1.375rem;
	}

	.casestudy-card.primary p {
		font-size: 1.25rem;
		line-height: 1.875rem;
		max-width: 100%;
		margin-top: 1rem;
	}

	.casestudy-card ul {
		gap: 0.5rem;
	}

	.casestudy-card ul li {
		font-size: 1.25rem;
		line-height: 1.875rem;
	}

	.casestudy-card .cta-arrow-icon {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width:767px) {
	.our-work-feed {
		padding-top: 4.75rem;
	}

	.our-work-head h1 {
		font-size: 3.125rem;
		padding-bottom: 1.25rem;
	}

	.our-work-feed .work-category {
		grid-template-columns: 1fr;
		margin-bottom: 5rem;
		gap: 1.25rem;
	}

	/* For Admin User */
	.logged-in .our-work-feed .work-category {
		scroll-margin-top: 5.625rem;
	}

	.our-work-feed .work-category .category-info {
		max-width: 100%;
	}

	.our-work-feed .work-category .category-info h2 {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.our-work-feed .work-category .category-info p {
		max-width: 100%;
		margin-top: 0.5rem;
	}

	.our-work-feed .work-category .category-info .btn {
		margin-top: 0.625rem;
	}

	.casestudy-card.primary {
		padding: 1rem 1rem 4rem;
		min-height: 27rem;
	}

	.casestudy-card.medium {
		min-height: 11.5rem;
		grid-column: span 2;
		padding: 1.5rem 1.75rem;
		margin-bottom: 0;
	}

	.casestudy-card.small {
		padding: 1rem 0.75rem;
	}

	.casestudy-card.primary h3 {
		font-size: 1.875rem;
	}

	.casestudy-card.medium h3 {
		font-size: 1.25rem;
	}

	.casestudy-card.small h3 {
		font-size: 1.25rem;
	}

	.casestudy-card.primary p {
		max-width: 19.25rem;
		font-size: 1rem;
		line-height: 1.375rem;
		margin-top: 0.25rem;
		max-width: 100%;
	}

	.casestudy-card.medium p {
		font-size: 1rem;
		line-height: 18px;
	}

	.casestudy-card ul li {
		font-size: 1rem;
		line-height: 1.5rem;
	}
}

/* Single Our Work Case Study */
.case-study {
	background-color: #F7F7F4;
}

.case-study-content-wrapper {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
	row-gap: 0;
}

.case-study-content-wrapper .cover-img {
	grid-column: span 12;
}

.case-study-content-wrapper .cover-img:has(img) {
	margin-bottom: 3.75rem;
}

.case-study-content-wrapper .casestudy-meta-info-block {
	grid-column: span 5;
}

.case-study-content-wrapper .casestudy-meta-info {
	max-width: 22.75rem;
}

.case-study-content-wrapper .casestudy-meta-info.fixed {
	position: fixed;
	top: 7.5rem;
}

.work-feed-tag {
	font-size: 1rem;
	font-weight: 500;
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 100px;
	border: 1px solid #2B4256;
	background-color: #fff;
}

.case-study-content-wrapper .casestudy-meta-info h3 {
	font-size: 2.188rem;
	font-weight: 600;
	line-height: 3.438rem;
	margin-top: 2.5rem;
	margin-bottom: 3rem;
}

.case-study-content-wrapper .casestudy-meta-info .btn.btn-secondary {
	text-align: center;
}

.case-study-content-wrapper .casestudy-meta-info ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	gap: 0.75rem;
}

.case-study-content-wrapper .casestudy-meta-info ul li {
	font-size: 1rem;
	line-height: 1.75rem;
}

.case-study-content-wrapper .casestudy-main {
	grid-column: span 7;
}

.case-study-content-wrapper .casestudy-main h1 {
	font-weight: 600;
}

.case-study-content-wrapper .casestudy-main h2 {
	font-size: 2.188rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.case-study-content-wrapper .casestudy-main p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin: 1.5rem 0;
}

.case-study-content-wrapper .casestudy-main h1 + p {
	margin-top: 0.75rem;
	margin-bottom: 1.5rem;
}

.case-study-content-wrapper .casestudy-main h2 + p {
	margin-top: 1.5rem;
	margin-bottom: 2rem;
}

.case-study-content-wrapper .casestudy-main p:last-child {
	margin-bottom: 0;
}

.case-study .casestudy-main ol,
.case-study .casestudy-main ul {
	display: flex;
	flex-direction: column;
	padding-left: 1.5rem;
	margin: 1rem 0;
	gap: 0.75rem;
}

.case-study .casestudy-main ol:last-child,
.case-study .casestudy-main ul:last-child {
	margin-bottom: 0;
}

.case-study .casestudy-main ul {
	list-style: disc;
}

.case-study .casestudy-main ol {
	list-style: decimal;
}

.case-study .casestudy-main ol li,
.case-study .casestudy-main ul li {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.case-study .casestudy-main ul ul {
	list-style: circle;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.case-study .casestudy-main ol ol {
	list-style: lower-roman;
	margin-bottom: 0;
}

.case-study .casestudy-main ol p,
.case-study .casestudy-main ul p {
	margin: 0;
}

.case-study-content-wrapper .casestudy-main img {
	margin: 1.5rem 0;
}

.case-study-content-wrapper .casestudy-main p:has(img + img) {
	display: flex;
	align-items: flex-start;
}

.case-study-content-wrapper .casestudy-main p:has(img + img) img {
	margin: 0;
}

.case-study-content-wrapper .casestudy-main p:has(img + img) img:first-child {
	margin-right: 1.5rem;
}

/* Responsive - Tablet */
@media screen and (max-width: 991px) {
	.case-study-content-wrapper {
		grid-template-columns: repeat(6, 1fr);
	}

	.case-study-content-wrapper .cover-img {
		grid-column: span 6;
	}

	.case-study-content-wrapper .cover-img:has(img) {
		margin-bottom: 1.875rem;
	}

	.case-study-content-wrapper .casestudy-meta-info-block {
		grid-column: span 2;
	}

	.case-study-content-wrapper .casestudy-meta-info {
		max-width: 14rem;
	}

	.case-study-content-wrapper .casestudy-meta-info .btn.btn-secondary {
		font-size: 1rem;
	}

	.case-study-content-wrapper .casestudy-meta-info h3 {
		font-size: 2.5rem;
		margin-top: 1rem;
		margin-bottom: 0.875rem;
	}

	.case-study-content-wrapper .casestudy-main {
		grid-column: span 4;
	}

	.case-study-content-wrapper .casestudy-main h2 {
		font-size: 1.875rem;
		margin-bottom: 1rem;
	}

	.case-study-content-wrapper .casestudy-main p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin: 1rem 0;
	}

	.case-study-content-wrapper .casestudy-main h1 + p {
		margin-top: 1.75rem;
	}

	.case-study-content-wrapper .casestudy-main h2 + p {
		margin-top: 1rem;
		margin-bottom: 1.5rem;
	}

	.case-study .casestudy-main ol li,
	.case-study .casestudy-main ul li {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.case-study-content-wrapper .casestudy-main p:has(img + img) img:first-child {
		margin-right: 1.125rem;
	}
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
	.case-study-content-wrapper {
		grid-template-columns: 1fr;
		gap: 0;
		row-gap: 0;
	}

	.case-study-content-wrapper .cover-img,
	.case-study-content-wrapper .casestudy-meta-info-block,
	.case-study-content-wrapper .casestudy-main {
		grid-column: span 1;
	}

	.case-study-content-wrapper .cover-img:has(img) {
		margin-bottom: 1.5rem;
	}

	.case-study-content-wrapper .casestudy-meta-info {
		max-width: 100%;
	}

	.case-study-content-wrapper .casestudy-meta-info h3 {
		margin-top: 0.5rem;
		margin-bottom: 0.35rem;
	}

	.case-study-content-wrapper .casestudy-main {
		padding-top: 4.5rem;
	}

	.case-study-content-wrapper .casestudy-main h1 {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}

	.case-study-content-wrapper .casestudy-main h2 {
		margin-bottom: 1.25rem;
	}

	.case-study-content-wrapper .casestudy-main p {
		margin: 0.75rem 0;
	}

	.case-study-content-wrapper .casestudy-main h1 + p {
		margin-top: 0.75rem;
	}

	.case-study-content-wrapper .casestudy-main h2 + p {
		margin-top: 0.75rem;
	}

	.case-study .casestudy-main ol,
	.case-study .casestudy-main ul {
		margin: 0.75rem 0;
		gap: 0.5rem;
	}

	.case-study .casestudy-main ul ul,
	.case-study .casestudy-main ol ol {
		padding-left: 1rem;
	}

	.case-study-content-wrapper .casestudy-main img {
		margin: 1rem 0;
	}
}

/* Services Hero CSS */
.services-hero {
	padding: 2rem 0;
	min-height: 36rem;
	background-image: url(../jpg/services-hero-bg.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	overflow: visible;
	overflow-x: clip;
}

.services-hero .hero-wrap {
	color: #fff;
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr;
}

.services-hero .hero-content {
	padding-right: 2rem;
	z-index: 9;
}

.services-hero .hero-content h5 {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.8px;
}

.services-hero .hero-content h1 {
	font-weight: 400;
	line-height: 4.688rem;
	margin-top: 0.5rem;
}

.services-hero .hero-content h1 .bold {
	font-weight: bold;
}

.services-hero .hero-content p {
	font-size: 1.25rem;
	line-height: 1.4;
	margin-top: 1.75rem;
}

.services-hero .hero-content p:has(>a) {
	margin-top: 0;
}

.services-hero .hero-content .btn {
	margin-top: 1.25rem;
}

.services-hero .hero-image {
	position: absolute;
	right: -1rem;
	top: -1rem;
	width: clamp(40rem, 49vw, 44.25rem);
	border: 16px solid #1D3A40;
	border-bottom-left-radius: 37.5rem;
	border-bottom-right-radius: 37.5rem;
	overflow: hidden;
	font-size: 0;
	z-index: 2;
}

.services-hero .hero-image img {
	object-fit: cover;
}

@media screen and (max-width:1199px) {
	.services-hero .hero-image {
		right: -3.5rem;
	}
}

@media screen and (min-width:992px) and (max-width:1199px) {
	.services-hero .hero-content p {
		max-width: 23rem;
	}
}

@media screen and (max-width:991px) {
	.services-hero {
		min-height: 32.5rem;
		background-position: left;
	}

	.services-hero .hero-content h5 {
		font-size: 1.125rem;
	}

	.services-hero .hero-content h1 {
		font-size: 3.438rem;
		line-height: 4.063rem;
		margin-top: 0.5rem;
	}

	.services-hero .hero-content p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin-top: 1.375rem;
	}

	.services-hero .hero-content p:has(>a) {
		margin-top: 0;
	}

	.services-hero .hero-content .btn {
		margin-top: 1.25rem;
	}

	.services-hero .hero-image {
		right: -12rem;
		width: 100%;
		max-width: 38rem;
	}

	.services-hero .hero-image img {
		object-fit: cover;
		transform: scale(1.25) translateX(-9%) translateY(10%);
	}
}

@media screen and (max-width:767px) {
	.services-hero .hero-wrap {
		grid-template-columns: 1fr;
	}

	.services-hero .hero-content {
		padding-right: 0;
	}

	.services-hero .hero-image {
		display: none;
	}
}

@media screen and (max-width:575px) {
	.services-hero {
		min-height: 25rem;
	}

	.services-hero .hero-content h1 {
		font-size: 2.5rem;
		line-height: 3.438rem;
		margin-top: 0.5rem;
	}

	.services-hero .hero-content p {
		margin-top: 1.25rem;
	}

	.services-hero .hero-content .btn {
		margin-top: 1rem;
	}
}

/* Staffing Solution */
.staffing-solution {
	background-color: #F7F7F4;
}

.staffing-solution-service-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.contact-cta-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #0F1820;
	padding: 1.5rem;
	border-radius: 30px;
}

.contact-cta-card p {
	color: #fff;
	font-size: 2.188rem;
	font-weight: 600;
	line-height: 3.125rem;
}

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

	.staffing-solution {
		padding-top: 8.5rem;
	}

	.staffing-solution-service-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-cta-card,
	.staffing-solution-service-cards .service-info-card {
		min-height: 225px;
	}

	.service-info-card br {
		display: none;
	}
}

@media screen and (min-width:992px) {
	a.service-icon-card:not(.no-link):hover {
		border-color: #fff;
		box-shadow: 0px 8px 24px 0px #959DA533;
	}

	a.service-icon-card:hover .cta-arrow-icon {
		opacity: 1;
		visibility: visible;
	}

	a.service-icon-card.no-link {
		cursor: default;
	}
}

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

	.staffing-solution-service-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-cta-card p {
		font-size: 1.875rem;
		line-height: 2.5rem;
	}
}

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

	.staffing-solution-service-cards {
		grid-template-columns: 1fr;
	}
}

/* ---- Meet Expert & Recruiters---- */

.team-slider.experts {
	overflow: hidden;
}

.team-slider.recruiters {
	overflow-x: clip;
	overflow-y: visible;
}

.team-slider.experts .swiper-wrapper {
	flex-direction: column;
	gap: 2.5rem;
}

.team-slide {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.team-slide .content-block {
	display: flex;
	flex-direction: column;
	grid-column: span 9;
	padding: 1.75rem 2.5rem;
	border-radius: 30px;
	background-color: #fff;
	color: #000;
}

.team-slide .content-block h3 {
	font-weight: 500;
	font-size: 2.25rem;
	line-height: 45px;
}

.team-slide .content-block > p {
	font-size: 1.375rem;
	line-height: 1.75rem;
	margin-top: 1rem;
}

.team-slide .content-block .expert-info {
	display: flex;
	flex-direction: column;
	margin-top: 3.5rem;
	gap: 0.5rem;
}

.team-slide .content-block .expert-info p {
	font-size: 1.375rem;
	font-weight: 600;
}

.team-slide .content-block .expert-info span {
	font-size: 1.25rem;
}

.team-slide .image-block {
	overflow: hidden;
	border-radius: 30px;
	grid-column: span 3;
	min-height: 360px;
	background-color: #fff;
	background-image: url(../jpg/profile-gradient-bg.jpg);
	background-position: center;
	background-size: cover;
}

.team-slide .image-block img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.team-slider-buttons {
	display: flex;
	top: calc(100% + 2rem);
	gap: 1.25rem;
}

.team-slider-buttons .button {
	width: 2.125rem;
	height: 2.125rem;
	background-size: 0.75rem;
}

.team-slider.experts .team-slider-buttons {
	display: none;
}

.team-slider .cta-block {
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width:1199px) {
	.team-slide .image-block {
		display: flex;
		align-items: end;
		min-height: 100%;
	}

	.team-slide .image-block img {
		height: 17.5rem;
	}
}

@media screen and (max-width:991px) {
	.team-slide {
		grid-template-columns: repeat(6, 1fr);
		gap: 1.625rem;
	}

	.team-slide .content-block {
		grid-column: span 4;
		padding: 1rem 1.5rem 1.5rem;
	}

	.team-slide .image-block {
		grid-column: span 2;
	}

	.team-slide .content-block h3 {
		font-size: 1.875rem;
		line-height: 2.5rem;
	}

	.team-slide .content-block > p {
		line-height: 1.875rem;
		margin-top: 0.75rem;
	}

	.team-slide .content-block .expert-info {
		margin-top: 1.25rem;
	}
}

@media screen and (max-width:767px) {
	.team-slide {
		gap: 0.625rem;
	}
}

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

	.team-slide {
		display: flex;
		flex-direction: column;
	}

	.team-slider .swiper-wrapper {
		flex-direction: row;
		gap: initial;
	}

	.team-slider.experts .swiper-wrapper {
		flex-direction: row;
		gap: 0;
	}

	.team-slider.experts .team-slider-buttons {
		display: flex;
	}

	.team-slide .content-block {
		order: 2;
		padding: 1.75rem 1.5rem;
	}

	.team-slide .content-block h3 {
		line-height: 2.875rem;
	}

	.team-slide .image-block {
		order: 1;
		height: 13.75rem;
		justify-content: center;
	}

	.team-slide .image-block img {
		width: auto;
		height: 100%;
	}

	.team-slide .content-block .expert-info {
		gap: 1.5rem;
	}
}

/* Success Stories CSS */
.success-story-cards-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
}

.success-story-cards-wrapper .cta-block {
	padding-top: 2.5rem;
	display: flex;
	justify-content: center;
}

@media screen and (max-width:991px) {
	.success-story-cards-row {
		grid-template-columns: 1fr 1fr;
	}

	.success-story-cards-row .casestudy-card:last-child {
		display: none;
	}

	.success-story-cards-wrapper .cta-block {
		display: none;
	}
}

@media screen and (max-width:575px) {
	.success-story-cards-row {
		grid-template-columns: 1fr;
	}
}

/* Insights Blog Page */
.insights-blog-page {
	background-color: #F7F7F4;
	padding-bottom: 7.5rem;
}

@media screen and (max-width:991px) {
	.insights-blog-page {
		padding-bottom: 6rem;
	}
}

@media screen and (max-width:575px) {
	.insights-blog-page {
		padding-bottom: 5.5rem;
	}
}

/* ----- Start HbsptForm ------ */

.hbspt-form ul.inputs-list {
	margin: 0;
	padding: 0;
}

.hbspt-form .hs-form-field {
	margin: 0 0 10px;
	position: relative;
}

.hbspt-form .hs-fieldtype-text .input,
.hbspt-form .hs-fieldtype-select .input,
.hbspt-form .hs-fieldtype-phonenumber .input,
.hbspt-form .hs-fieldtype-textarea .input {
	background: #fff;
	border: 1px solid #D9D9D9;
	border: 1px solid transparent;
	border-radius: 10px;
	height: 68px;
	margin: 0 !important;
	width: 100%;
}

.hbspt-form .hs-fieldtype-text .input input,
.hbspt-form .hs-fieldtype-select .input select,
.hbspt-form .hs-fieldtype-phonenumber .input input,
.hbspt-form .hs-fieldtype-textarea .input input {
	border: none;
	box-shadow: none;
	outline: none;
	transition: all 0.4s;
	font-family: Proxima Nova;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 10px;
	margin: 25px 0 0;
	background: #fff;
}

.hbspt-form .hs-fieldtype-textarea .input input:focus-visible,
.hbspt-form .hs-fieldtype-textarea .input input:focus,
.hbspt-form .hs-fieldtype-textarea .input input:active {
	background: #fff;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

.hbspt-form .hs-fieldtype-text > label,
.hbspt-form .hs-fieldtype-select > label,
.hbspt-form .hs-fieldtype-phonenumber > label,
.hbspt-form .hs-fieldtype-textarea > label {
	position: absolute;
	top: 11px;
	left: 15px;
	z-index: 2;
	outline: none;
	font-size: 14px;
	line-height: 18px;
	color: #000;
	font-weight: 600;
	text-transform: capitalize;
}

.hbspt-form .hs-fieldtype-select .input select {
	padding: 10px 13px;
	width: 100% !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("../svg/bottom-arrow.svg") !important;
	background-position: calc(100% - 8px) center;
	background-repeat: no-repeat;
}

.hbspt-form .hs-fieldtype-textarea .input {
	height: 100px;
}

.hs-richtext,
.hs-richtext p {
	font-size: 16px;
	line-height: 1.5rem;
	margin: 0 0 20px;
}

.hbspt-form .hs-fieldtype-textarea .input textarea {
	padding: 10px 13px;
	resize: none;
	height: auto !important;
	border: none;
	box-shadow: none;
	outline: none;
	margin: 21px 0 0;
	background: transparent;
	font-family: Proxima Nova;
	color: #000;
	font-size: 14px;
	font-weight: 500;
}

.hbspt-form .hs-fieldtype-textarea .input textarea:focus {
	border: none;
	box-shadow: none;
	outline: none;
}

.hbspt-form .hs-richtext a {
	font-weight: 600;
	text-decoration: underline;
}

.hbspt-form fieldset {
	max-width: 100% !important;
}

.hbspt-form fieldset.form-columns-2 {
	display: flex;
	gap: 10px;
}

.hbspt-form .hs-error-msg {
	color: #ff3030;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
	margin-top: 7px;
	display: block;
	font-family: Proxima Nova;
}

.hbspt-form .hs-error-msgs label a {
	color: #ff3030;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
}

.hs-form-required {
	color: #CB0000;
	position: absolute;
	right: -10px;
}

.newsletterInner .hs_submit {
	text-align: center;
}

.hbspt-form .hs-button {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.75rem 1.25rem;
	border-radius: 100px;
	display: inline-block;
	max-width: max-content;
	white-space: nowrap;
	color: #1C2B39;
	border: 1px solid #2B4256;
	background-color: #fff;
	margin-top: 1rem;
}

.hbspt-form .hs-button:hover {
	background-color: #E8EDEE;
}

.hbspt-form .hs-button:focus,
.hbspt-form .hs-button:active {
	color: #fff;
	background-color: #2B4256;
}

.hbspt-form .inputs-list.multi-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 30px;
}

.hs-form-radio span {
	color: #fff;
}

.hbspt-form fieldset .hs-fieldtype-radio {
	display: flex;
	color: #fff;
	justify-content: center;
	align-items: center;
	gap: 0 30px;
}

.hs-form-radio-display {
	position: relative;
	padding-left: 30px;
	margin-right: 0;
	cursor: pointer;
	font-size: 16px;
	user-select: none;
	font-family: 'Proxima Nova';
	font-weight: 600;
	vertical-align: middle;
}

.hs-form-radio-display span {
	vertical-align: middle;
}

.hbspt-form .hs-form-radio input[type=radio] {
	background: #0F1820;
	width: 20px !important;
	height: 20px;
}

.hs-form-radio-display input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	position: absolute;
	left: 0;
	top: 3px;
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
	border-radius: 50%;
	outline: none;
	background-color: #fff;
	transition: border 0.3s, background-color 0.3s;
}

.hs-form-radio-display input[type="radio"]:checked {
	border-color: #0F1820;
	background-color: #fff;
}

.hs-form-radio-display input[type="radio"]::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 4px;
	width: 10px;
	height: 10px;
	background-color: #0F1820;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.2s ease-in-out;
}

.hs-form-radio-display input[type="radio"]:checked::before {
	transform: scale(1);
}

.hs_error_rollup {
	color: #ff3030;
	margin: 20px 0;
	font-size: 16px;
}

.hbspt-newsletter-form.hbspt-form .hs-form-radio-display input[type="radio"] {
	top: 0;
	margin-top: 0px;
}

.hbspt-newsletter-form.hbspt-form .actions {
	margin: 20px 0 0;
	text-align: center;
}

.hbspt-newsletter-form.hbspt-form ul {
	list-style: none;
	padding: 0;
}

@media (max-width: 991px) {

	.hbspt-form .hs-button {
		display: flex;
		margin: 0 auto;
		margin-top: 1.5rem;
	}

	.hbspt-form fieldset.form-columns-2 {
		display: block;
	}

	.hbspt-form .form-columns-2 .hs-form-field {
		width: 100% !important;
	}
}

@media (max-width: 480px) {
	.hbspt-form .hs-button {
		margin-top: 0.875rem;
	}

	.hbspt-form fieldset .hs-fieldtype-radio {
		display: block;
	}

	.hbspt-form .inputs-list.multi-container {
		display: block;
	}

	.hbspt-form .hs-form-radio {
		margin: 0 0 10px;
	}

	.hbspt-form ul.inputs-list {
		margin: 10px 0 0;
	}

	.hbspt-form .hs-form-radio-display input[type="radio"] {
		left: -4px;
	}
}

/* BLOG HERO */
.blog-hero {
	min-height: 31.25rem;
	background-size: cover;
	background-position: center;
	background-image: url(../jpg/our-blog-hero-bg.jpg);
	display: flex;
	align-items: center;
	padding: 90px 0 85px;
}

.blog-hero .hero-content {
	text-align: center;
}

.blog-hero .hero-content p {
	max-width: 100%;
	margin-top: 1.75rem;
	margin-bottom: 40px;
}

.hbspt-newsletter-form {
	margin: auto;
	width: 570px;
	max-width: 100%;
}

.blog-hero .hbspt-form fieldset .hs-fieldtype-radio {
	color: #000;
	font-weight: 600;
}

.blog-hero .hs-form-radio span {
	color: #000;
}

.hbspt-form .hs-form-radio input[type=radio] {
	background: #fff;
}

.blog-hero .hs-form-radio-display input[type="radio"] {
	top: -3px;
	border: 1px solid #0F1820;
}

.blog-hero .actions {
	margin: 20px 0 0;
	text-align: center;
}

.blog-hero .hbspt-form .hs-button {
	background: #2B4256;
	border: 1px solid #0F1820;
	color: #fff;
}

.blog-hero .hbspt-form .hs-button:hover,
.blog-hero .hs-button:focus,
.blog-hero .hs-button:active {
	background: #fff;
	border: 1px solid #2B4256;
	color: #2B4256;
}

.blog-hero .hs_error_rollup {
	text-align: center;
}

.blog-hero .submitted-message {
	color: #2b4256;
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

@media screen and (max-width:991px) {
	.blog-hero {
		min-height: 28.125rem;
	}

	.blog-hero .hero-content h1 {
		font-weight: bold;
	}

	.blog-hero .hero-content p {
		margin-top: 1.25rem;
	}
}

@media screen and (max-width:575px) {
	.blog-hero {
		min-height: 21.875rem;
	}

	.blog-hero .hero-content h1 {
		font-size: 2.5rem;
	}
}

/* INSIGHTS BLOG CARDS */
.insights-blog-cards {
	padding: 2.5rem 0;
	background-color: #F7F7F4;
}

.insights-blog-cards .filters-block {
	padding-bottom: 2.5rem;
	column-gap: 0.625rem;
	row-gap: 0.5rem;
}

.insights-blog-cards .blog-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.insights-blog-cards .blog-card:nth-child(4) {
	grid-column: span 3;
	display: grid;
	grid-template-columns: 2fr 1fr;
}

.insights-blog-cards .blog-card:nth-child(4) .blog-card-cover {
	height: auto;
	overflow: hidden;
}

.insights-blog-cards .blog-card:nth-child(4) .blog-card-cover img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 30px 0 0 30px;
}

.insights-blog-cards .blog-card:nth-child(4) .blog-card-info {
	padding: 1.75rem;
}

.insights-blog-cards .blog-card:nth-child(4) .blog-card-info p {
	line-height: 1.25rem;
}

.pagination {
	display: flex;
	justify-content: center;
}

.pagination ul {
	display: flex;
	align-items: center;
	gap: 0.125rem;
}

.pagination ul li .page-link {
	color: #717680;
	font-size: 0.875rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 8px;
}

.pagination ul li .page-link:hover,
.pagination ul li .page-link.active {
	color: #3C9E87;
	background-color: #3c9e871a;
}

.pagination ul li .page-link.disabled {
	color: #717680;
	background-color: inherit;
}

.insights-blog-cards .pagination {
	padding-top: 2.5rem;
}

.insights-blog-cards .pagination ul {
	list-style: none;
	padding: 0;
}

@media screen and (max-width:991px) {
	.insights-blog-cards {
		padding: 2rem 0;
	}

	.insights-blog-cards .filters-block {
		padding-bottom: 2rem;
	}

	.insights-blog-cards .blog-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.insights-blog-cards .blog-card:nth-child(4) {
		grid-column: span 2;
		grid-template-columns: 21.5rem 1fr;
		height: 20rem;
	}

	.insights-blog-cards .blog-card:nth-child(4) .blog-card-info {
		padding: 3.75rem 3rem;
	}

	.insights-blog-cards .pagination {
		padding-top: 2rem;
	}
}

@media screen and (max-width:767px) {
	.insights-blog-cards .blog-card:nth-child(4) {
		grid-template-columns: repeat(2, 1fr);
	}

	.insights-blog-cards .blog-card:nth-child(4) .blog-card-info {
		padding: 2.5rem 2rem;
	}
}

@media screen and (max-width:575px) {
	.insights-blog-cards {
		padding: 1.5rem 0;
	}

	.insights-blog-cards .filters-block {
		padding-bottom: 1.5rem;
		row-gap: 1.25rem;
	}

	.insights-blog-cards .blog-cards-grid {
		grid-template-columns: 1fr;
	}

	.insights-blog-cards .blog-card:nth-child(4) {
		grid-column: span 1;
		height: 26.5rem;
	}

	.insights-blog-cards .blog-card:nth-child(4) {
		display: block;
	}

	.insights-blog-cards .blog-card:nth-child(4) .blog-card-cover {
		height: 15rem;
	}

	.insights-blog-cards .blog-card:nth-child(4) .blog-card-cover img {
		border-radius: 30px 30px 0 0;
	}

	.insights-blog-cards .blog-card:nth-child(4) .blog-card-info {
		padding: 1.75rem;
	}

	.insights-blog-cards .pagination {
		padding-top: 1.5rem;
	}
}

/* CTA Widget Box */
.cta-widget-box {
	border-radius: 30px;
	padding: 2rem 2.5rem;
	background-image: url(../jpg/cta-widget-box-bg.jpg);
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cta-widget-box .cta-text {
	color: #fff;
	margin-right: 2.5rem;
}

.cta-widget-box .cta-text h2 span {
	font-weight: bold;
}

.cta-widget-box .cta-text p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	padding-top: 1rem;
}

.cta-widget-box .cta-media {
	max-width: 364px;
	flex-shrink: 0;
	height: 268px;
	border-radius: 30px;
	overflow: hidden;
	margin-right: 2.5rem;
}

.cta-widget-box .cta-media img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.cta-widget-box .cta-arrow-icon {
	opacity: 1;
	visibility: visible;
	flex-shrink: 0;
	width: 3.125rem;
	height: 3.125rem;
	position: static;
	margin-top: auto;
	background-image: url(../svg/arrow-upright-white-icon.svg);
	background-color: transparent;
	border: 1px solid #fff;
}

.cta-widget-box .cta-arrow-icon:hover {
	background-image: url(../svg/arrow-upright-primary-icon.svg);
	background-color: #fff;
}

@media screen and (min-width:1600px) {
	.cta-widget-box {
		justify-content: space-around;
	}
}

@media screen and (min-width: 1200px) {
	.cta-widget-box .cta-media.hide-desktop {
		display: none !important;
	}
}

@media screen and (max-width:1199px) {
	.cta-widget-box .cta-text {
		margin-right: 2rem;
	}

	.cta-widget-box .cta-media {
		max-width: 18.5rem;
		margin-right: 2rem;
	}

	.cta-widget-box .cta-media.hide-tablet {
		display: none !important;
	}
}

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

	.cta-widget-box {
		min-height: 17.5rem;
		padding: 1.875rem;
	}

	.cta-widget-box .cta-text {
		margin-right: 3rem;
	}

	.cta-widget-box .cta-text h2 {
		font-size: 2.5rem;
		line-height: 2.813rem;
	}

	.cta-widget-box .cta-text p {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.cta-widget-box .cta-media {
		max-width: 14.75rem;
	}

	.cta-widget-box .cta-media.hide-tablet {
		display: none !important;
	}
}

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

	.cta-widget-box {
		min-height: auto;
		padding: 2rem 1.5rem;
		align-items: start;
		flex-direction: column;
	}

	.cta-widget-box .cta-text {
		margin-right: 0;
	}

	.cta-widget-box .cta-text p {
		font-size: 1rem;
		line-height: 1.75rem;
	}

	.cta-widget-box .cta-media {
		display: none;
		width: 100%;
		max-width: 100%;
	}

	.cta-widget-box .cta-media:not(.hide-mobile) {
		display: block !important;
		margin-top: 2rem;
	}

	.cta-widget-box .cta-media.hide-mobile {
		display: none !important;
	}

	.cta-widget-box .cta-arrow-icon {
		margin-left: auto;
		margin-top: 2rem;
	}
}

/* BLOG POST SECTION */
.blog-post-section {
	padding: 2.5rem 0;
	background-color: #F7F7F4;
}

.blog-post-section .blog-article .meta-info {
	display: flex;
	justify-content: center;
	font-weight: 500;
	margin-bottom: 2rem;
	gap: 0.25rem;
}

.blog-post-section .blog-article .meta-info .update-info {
	display: flex;
	gap: 0.25rem;
}

.blog-post-section .blog-article h1 {
	font-weight: 600;
	line-height: 4.688rem;
	letter-spacing: 1px;
	max-width: 46.875rem;
	margin: 0 auto;
	text-align: center;
}

.blog-post-section .blog-article .post-content-wrapper h1 {
	text-align: left;
}

.blog-post-section .post-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.25rem;
	margin-bottom: 2.25rem;
	gap: 2rem;
}

.blog-post-section .post-actions .post-categories {
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.625rem;
	row-gap: 1.5rem;
}

.blog-post-section .post-actions .post-category {
	border-radius: 50px;
	border: 1px solid #000;
	padding: 0.625rem 1.125rem;
	font-weight: 500;
}

.blog-post-section .post-actions .social-shares {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.blog-post-section .post-actions .social-shares .share-btn {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 8px;
	border: 1px solid #D5D7DA;
	box-shadow: 0px 1px 2px 0px #0A0D120D;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-post-section .post-actions .social-shares .share-btn img {
	width: 100%;
	max-width: 1.25rem;
}

/* Main Blog Image */
.blog-post-section .blog-article .cover-image {
	width: 100%;
	max-width: 58.875rem;
	margin: 0 auto;
	margin-bottom: 2.5rem;
}

.blog-post-section .blog-article .cover-image img {
	width: 100%;
	border-radius: 30px;
}

/* Blog Inner images */
.blog-post-section .blog-article .blog-inner-image {
	width: 100%;
	max-width: 47rem;
	margin: 2.5rem auto;
	border-radius: 30px;
}

/* New CLass added, also more below related to this */
.blog-post-section .blog-article .post-content-wrapper {
	margin: 0 auto;
	max-width: 47rem;
}

.post-content-wrapper ol,
.post-content-wrapper ul {
	display: flex;
	flex-direction: column;
	padding-left: 1.5rem;
	margin: 1rem 0;
	gap: 0.75rem;
}

.post-content-wrapper ol:last-child,
.post-content-wrapper ul:last-child {
	margin-bottom: 0;
}

.post-content-wrapper ul {
	list-style: disc;
}

.post-content-wrapper ol {
	list-style: decimal;
}

.post-content-wrapper ol li,
.post-content-wrapper ul li {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.post-content-wrapper ul ul {
	list-style: circle;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.post-content-wrapper ol ol {
	list-style: lower-roman;
	margin-bottom: 0;
}

.post-content-wrapper ol p,
.post-content-wrapper ul p {
	margin: 0;
}

.blog-post-section .blog-article h2,
.blog-post-section .blog-article h3 {
	font-size: 1.375rem;
	font-weight: 600;
	margin-top: 2.5rem;
	margin-bottom: 1.75rem;
}

.blog-post-section .blog-article h3,
.blog-post-section .blog-article h4,
.blog-post-section .blog-article h5 {
	font-weight: 600;
}

.blog-post-section .blog-article p + h2 {
	margin-top: 3rem;
}

.blog-post-section .blog-article .post-content-wrapper > p {
	font-size: 1.25rem;
	font-weight: normal;
	line-height: 1.75rem;
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.blog-post-section .blog-article .post-content-wrapper > p a {
	text-decoration: underline;
}

.blog-post-section .blog-article .post-content-wrapper > h2 + p {
	margin-top: 1.75rem;
}

.blog-post-section .blog-article .post-content-wrapper > p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:991px) {
	.blog-post-section {
		padding: 4rem 0 6rem 0;
	}

	.post-content-wrapper ol li,
	.post-content-wrapper ul li {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.blog-post-section .blog-article .meta-info {
		margin-bottom: 1.75rem;
	}

	.blog-post-section .blog-article h1 {
		max-width: 43.125rem;
	}

	.blog-post-section .post-actions {
		margin-top: 1.75rem;
		margin-bottom: 2rem;
	}

	.blog-post-section .post-actions .post-category {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}

	.blog-post-section .post-actions .social-shares .share-btn {
		width: 2.125rem;
		height: 2.125rem;
	}

	.blog-post-section .blog-article .cover-image {
		max-width: 43.125rem;
		margin-bottom: 2rem;
	}

	.blog-post-section .blog-article .post-content-wrapper {
		max-width: 34.375rem;
	}

	.blog-post-section .blog-article .blog-inner-image {
		max-width: 34.375rem;
		margin: 2rem auto;
	}

	.blog-post-section .blog-article h2,
	.blog-post-section .blog-article h3 {
		font-size: 1.375rem;
		margin-top: 2rem;
		margin-bottom: 1.5rem;
	}

	.blog-post-section .blog-article .post-content-wrapper > h2 + p {
		margin-top: 1.5rem;
	}

	.blog-post-section .blog-article p + h2 {
		margin-top: 2rem;
	}

	.blog-post-section .blog-article .post-content-wrapper > p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width:575px) {
	.blog-post-section {
		padding: 1.5rem 0 5rem 0;
	}

	.post-content-wrapper ol,
	.post-content-wrapper ul {
		margin: 0.75rem 0;
		gap: 0.5rem;
	}

	.post-content-wrapper ul ul,
	.post-content-wrapper ol ol {
		padding-left: 1rem;
	}

	.post-content-wrapper img {
		margin: 1rem 0;
	}

	.blog-post-section .blog-article h1 {
		font-size: 3.125rem;
		font-weight: 600;
		line-height: 3.438rem;
	}

	.blog-post-section .blog-article .cover-image {
		margin-bottom: 1.5rem;
	}

	.blog-post-section .blog-article .blog-inner-image {
		margin: 1.5rem auto;
	}

	.blog-post-section .blog-article h2,
	.blog-post-section .blog-article h3 {
		margin-top: 1.5rem;
		margin-bottom: 1rem;
	}

	.blog-post-section .blog-article .post-content-wrapper > h2 + p {
		margin-top: 1rem;
	}

	.blog-post-section .blog-article p + h2 {
		margin-top: 1.5rem;
	}

	.blog-post-section .blog-article .post-content-wrapper > p {
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}
}

/* Blog cards CSS */
.blog-card-main {
	padding: 4.375rem 0;
	background: url('../png/blog-offerings-section-bg.png');
	background-size: cover;
}

.blog-card-main .section-heading {
	text-align: center;
	margin: auto;
	width: 47rem;
	max-width: 100%;
}

.blog-card-main .section-heading h2 {
	font-family: Proxima Nova;
	font-weight: 500;
	font-size: 3.125rem;
	line-height: 2.75rem;
	letter-spacing: 2%;
	margin: 0 0 1.5rem;
}

.blog-card-main .section-heading h2 span {
	font-weight: 700;
}

.blog-card-main .section-heading p {
	font-family: Proxima Nova;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-align: center;
	margin: 0 0 1.875rem;
}

/* Stay Connected */
.stay-connected {
	background: #F7F7F4;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.stay-connected .stay-connected-area {
	background: url(../png/stay-connected-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 40px 0;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.stay-connected .stay-connected-header {
	text-align: center;
	margin: 0 0 30px;
}

.stay-connected .stay-connected-header h2 {
	color: #fff;
	font-family: Proxima Nova;
	font-weight: 400;
	font-size: 50px;
	line-height: 75px;
	letter-spacing: 0;
	text-align: center;
}

.stay-connected .stay-connected-header p {
	color: #fff;
	font-family: Proxima Nova;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
}

.stay-connected .hbspt-form .actions {
	margin: 20px 0 0;
	text-align: center;
}

.stay-connected .hbspt-form .hs-form-radio-display input[type="radio"] {
	top: 0;
	margin-top: 0px;
}

.stay-connected .hbspt-form .submitted-message {
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

@media (max-width: 992px) {
	.stay-connected .stay-connected-area {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.stay-connected .stay-connected-header h2 {
		font-size: 40px;
	}
}

@media (max-width: 576px) {
	.stay-connected .stay-connected-area {
		padding: 24px;
	}
}

/* Stay Connected */
.stay-connected {
	background: #F7F7F4;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	z-index: 10;
}

.stay-connected .stay-connected-area {
	background: url(../png/stay-connected-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 40px 0;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.stay-connected .stay-connected-header {
	text-align: center;
	margin: 0 0 30px;
}

.stay-connected .stay-connected-header h2 {
	color: #fff;
	font-family: Proxima Nova;
	font-weight: 400;
	font-size: 50px;
	line-height: 75px;
	letter-spacing: 0;
	text-align: center;
}

.stay-connected .stay-connected-header p {
	color: #fff;
	font-family: Proxima Nova;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
}

.stay-connected .hbspt-form .actions {
	margin: 20px 0 0;
	text-align: center;
}

.stay-connected .hbspt-form .hs-form-radio-display input[type="radio"] {
	top: 0;
	margin-top: 0px;
}

.stay-connected .hbspt-form .submitted-message {
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

@media (max-width: 992px) {
	.stay-connected .stay-connected-area {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.stay-connected .stay-connected-header h2 {
		font-size: 40px;
		line-height: 55px;
	}
}

@media (max-width: 576px) {
	.stay-connected .stay-connected-area {
		padding: 24px;
	}
}

/* ----- Let's Get to Work & Testimonial------ */
.testimonial-section {
	background: #0F1820;
	border-radius: 30px;
	text-align: center;
	color: #fff;
	padding: 60px 62px;
}

.testimonial-section .testimonial-info p {
	font-family: Proxima Nova;
	font-weight: 600;
	font-size: 35px;
	line-height: 55px;
	text-align: center;
}

.testimonial-section .testimonial-image img {
	border-radius: 0;
	width: 138px;
	max-height: 3.75rem;
	height: auto;
	object-fit: contain;
	margin: auto;
}

.testimonial-section .testimonial-image {
	margin: 1.75rem 0 0;
}

.hubspot-contact-form-left .hbspt-form .hs-richtext,
.hubspot-contact-form-left .hbspt-form .hs-richtext p {
	color: #000;
	font-size: 1rem;
	line-height: 1.5rem;
}

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

	.testimonial-section {
		padding: 5rem 2rem;
	}

	.testimonial-section .testimonial-info p {
		font-size: 1.875rem;
		line-height: 2.5rem;
	}
}

@media screen and (max-width:575px) {
	.testimonial-section {
		padding: 1.5rem 1rem;
	}
}

/* 404 CSS */
.section-404 {
	padding: 0;
	overflow: hidden;
	position: relative;
	min-height: 64rem;
	background: #d9d9d9 url(../png/404-section-bg.png) center / cover no-repeat;
}

.section-404 .head-404 {
	position: absolute;
	top: 0;
	left: 50%;
	color: #fff;
	font-weight: 400;
	font-size: 29.5rem;
	line-height: 0.75;
	text-align: center;
	letter-spacing: 7px;
	transform: translateX(-50%);
}

.section-404 .body-404 {
	color: #fff;
	position: relative;
	margin-top: 21rem;
	z-index: 9;
}

.section-404 .body-404::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -4rem;
	transform: translateX(-50%);
	width: 116rem;
	height: 116rem;
	border-radius: 100%;
	background: linear-gradient(179.96deg, #293F54 -9.88%, #16222E 23.06%, #131D27 40.12%, #0F1820 50%);
	z-index: -2;
}

.section-404 .body-404 h2 {
	font-weight: 400;
	font-size: 4.063rem;
	margin-bottom: 3.5rem;
	text-align: center;
}

.section-404 .body-404 h2 .bold {
	display: block;
	font-weight: 600;
}

.section-404 .body-404 p {
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-align: center;
	margin: 0 auto;
}

.section-404 .body-404 p + p {
	margin-top: 1.75rem;
}

.section-404 .body-404 p a {
	text-decoration: underline;
}

.section-404 .body-404 p a:hover {
	text-decoration: none;
}

@media screen and (max-width:991px) {
	.section-404 {
		min-height: 71rem;
	}

	.section-404 .head-404 {
		top: 0.5rem;
		font-size: 58vw;
	}

	.section-404 .body-404 {
		margin-top: 24.5rem;
	}

	.section-404 .body-404::before {
		top: -4.5rem;
	}

	.section-404 .body-404 h2 {
		font-size: 3.438rem;
		margin-bottom: 2rem;
	}

	.section-404 .body-404 p {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.section-404 .body-404 p + p {
		margin-top: 1.5rem;
	}
}

@media screen and (max-width:920px) {
	.section-404 .body-404::before {
		top: -6.5rem;
	}
}

@media screen and (max-width:575px) {
	.section-404 {
		min-height: 35rem;
	}

	.section-404 .head-404 {
		top: 0.5rem;
		font-size: 58vw;
	}

	.section-404 .body-404 {
		margin-top: 17rem;
	}

	.section-404 .body-404::before {
		top: -4rem;
		width: 62.5rem;
		height: 62.5rem;
	}

	.section-404 .body-404 h2 {
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
	}

	.section-404 .body-404 p {
		line-height: 1.25rem;
	}

	.section-404 .body-404 p + p {
		margin-top: 1.25rem;
	}
}

@media screen and (max-width:400px) {
	.section-404 .body-404 {
		margin-top: 12.5rem;
	}
}

/* Workforce Management Process CSS */
.workforce-management {
	background-color: #0F1820;
}

.workforce-management .content-wrapper {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.workforce-management .section-head {
	grid-column: 1 / span 4;
}

.workforce-management .section-head h2 {
	color: #FFF;
	font-weight: 400;
	margin-bottom: 1.75rem;
}

.workforce-management .section-head h2 span {
	font-weight: 600;
}

.workforce-management .section-head p {
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.management-process {
	position: relative;
	grid-column: 7 / span 6;
	display: flex;
	gap: 1.5rem;
}

.management-process .process-progress-bar {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 50px;
	overflow: hidden;
	flex-shrink: 0;
	height: 100%;
	position: absolute;
	left: -2rem;
	top: 50%;
	transform: translateY(-50%);
}

.management-process .process-progress-bar .progress {
	width: 0.625rem;
	height: 100%;
	margin-left: 0;
	margin-top: -1.25rem;
}

.management-process .process-progress-bar .progress.first {
	margin-top: 0;
}

.management-process .process-steps-wrapper {
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
	max-width: 28.875rem;
}

.management-process .process-steps-wrapper .process-step {
	flex-direction: row;
}

@media screen and (max-width:1199px) {
	.management-process {
		grid-column: 7 / span 6;
	}
}

@media screen and (max-width:991px) {
	.workforce-management .content-wrapper {
		margin: 0 7.75rem;
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.workforce-management .section-head {
		grid-column: auto
	}

	.workforce-management .section-head h2 {
		font-size: 2.5rem;
		margin-bottom: 0.75rem;
	}

	.workforce-management .section-head p {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.workforce-management .management-process {
		grid-column: auto;
	}

	.management-process .process-progress-bar {
		position: static;
		transform: none
	}

	.management-process .process-steps-wrapper .process-step {
		gap: 1.25rem;
	}

	.management-process .process-step .number {
		font-size: 1.375rem;
	}

	.management-process .process-step .content h3 {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.management-process .process-step .content p {
		font-size: 0.875rem;
	}
}

@media screen and (max-width:767px) {
	.workforce-management .content-wrapper {
		margin: 0;
	}

	.management-process .process-steps-wrapper {
		max-width: 100%;
	}
}

@media screen and (max-width:575px) {
	.workforce-management .content-wrapper {
		gap: 1.5rem;
	}

	.workforce-management .section-head h2 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.management-process .process-steps-wrapper {
		row-gap: 2.5rem;
		padding: 0.25rem 0;
	}

	.management-process .process-steps-wrapper .process-step {
		gap: 0.75rem;
	}

	.management-process .process-step .content p {
		font-size: 1rem;
	}
}

/* How it works */
.how-it-works {
	background-color: #0F1820;
}

.how-it-works-wrapper {
	position: relative;
}

.working-process-wrapper {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.working-process-wrapper .working-process.mobile {
	display: none;
}

.working-process .process-steps-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.working-process .process-steps-wrapper .process-step {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.working-process .process-step .number {
	color: #fff;
	font-size: 1.375rem;
	font-weight: 500;
}

.working-process .process-step.first .number {
	color: #D6ECE7;
}

.working-process .process-step.second .number {
	color: #FFDD74;
}

.working-process .process-step.third .number {
	color: #F5AF84;
}

.working-process .process-step.fourth .number {
	color: #FBD3DD;
}

.working-process .process-step.fifth .number {
	color: #D1EDF2;
}

.working-process .process-step.sixth .number {
	color: #C7E3FA;
}

.working-process .process-step .content h3 {
	color: #fff;
	margin-bottom: 0.5rem;
}

.working-process .process-step .content p {
	color: #fff;
	font-size: 1rem;
	line-height: 1.75rem;
}

.working-process .process-progress-bar {
	margin-bottom: 0.75rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background-color: #fff;
	border-radius: 50px;
	overflow: hidden;
}

.working-process .process-progress-bar .progress {
	opacity: 60%;
	height: 0.625rem;
	border-radius: 50px;
	overflow: visible;
}

.working-process .process-progress-bar .progress {
	margin-left: -1.75rem;
	position: relative;
}

.working-process .process-progress-bar .progress.first {
	margin-left: 0;
	background-color: #BBDFD7;
	z-index: 7;
}

.working-process .process-progress-bar .progress.second {
	background-color: #FFC718;
	z-index: 8;
}

.working-process .process-progress-bar .progress.third {
	background-color: #EF7A32;
	z-index: 7;
}

.working-process .process-progress-bar .progress.fourth {
	background-color: #F8B6C7;
	z-index: 6;
}

.working-process .process-progress-bar .progress.fifth {
	background-color: #B3E1EA;
	z-index: 5;
}

.working-process .process-progress-bar .progress.sixth {
	background-color: #A6D5FE;
	z-index: 6;
}

.how-it-works-wrapper .how-it-works-cta {
	text-align: center;
	margin-top: 2.5rem;
}

.how-it-works-wrapper .section-bottom-note {
	position: absolute;
	top: calc(100% + 2.125rem);
	left: 50%;
	width: 100%;
	max-width: 45rem;
	transform: translateX(-50%);
}

.how-it-works-wrapper .section-bottom-note p {
	color: #fff;
	font-size: 0.75rem;
	font-weight: normal;
	line-height: 1rem;
	text-align: center;
}

@media screen and (max-width:991px) {
	.working-process-wrapper .working-process.desktop {
		display: none;
	}

	.working-process-wrapper .working-process.mobile {
		display: block;
	}

	.working-process .process-steps-wrapper {
		gap: 1.25rem;
		margin: 0;
		grid-template-columns: repeat(2, 1fr);
	}

	.working-process .process-progress-bar {
		margin: 0;
		margin-bottom: 1.25rem;
		grid-template-columns: repeat(2, 1fr);
	}

	.working-process .process-steps-wrapper .process-step {
		gap: 1.125rem;
	}

	.working-process .process-step .content h3 {
		font-size: 1.375rem;
		margin-bottom: 0.25rem;
	}

	.how-it-works-wrapper .how-it-works-cta {
		margin-top: 1.5rem;
	}

	.how-it-works-wrapper .section-bottom-note {
		top: calc(100% + 2rem);
	}
}

@media screen and (max-width:767px) {
	.working-process .process-progress-bar {
		margin-bottom: 1.25rem;
	}

	.working-process .process-progress-bar .progress {
		margin-left: -1rem;
	}

	.working-process .process-steps-wrapper .process-step {
		gap: 1rem;
	}

	.working-process .process-step .content h3 {
		font-size: 1.375rem;
		margin-bottom: 0.5rem;
	}

	.how-it-works-wrapper .how-it-works-cta {
		margin-top: 1.125rem;
		padding-bottom: 1rem;
	}

	.how-it-works-wrapper .section-bottom-note {
		top: calc(100% + 0.5rem);
	}

	.how-it-works-wrapper .section-bottom-note p {
		font-size: 0.625rem;
		line-height: 0.75rem;
	}
}

/* --------- Office Accordion CSS ---------*/
.office-locations {
	background-color: #F7F7F4;
}

.office-locations-wrapper {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 1.5rem;
}

.office-locations-wrapper .section-head h2 {
	padding-right: 2rem;
}

.office-locations-wrapper .section-head p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	padding-top: 1.125rem;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

/* ==============================
Accordion Item
============================== */
.accordion .accordion-item {
	background-color: #fff;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
}

/* Accordion Header */
.accordion .accordion-item .accordion-header {
	min-height: 5.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0.75rem 1.75rem;
	background-color: #fff;
	border-radius: 10px;
	cursor: pointer;
	gap: 2rem;
}

.accordion .accordion-item .accordion-header::after {
	content: "";
	width: 0.875rem;
	height: 0.5rem;
	background: url(../svg/chevron-black-icon.svg) no-repeat;
	flex-shrink: 0;
}

/* Expanded Accordion Item */
.accordion .accordion-item.expanded .accordion-header::after {
	transform: rotate(180deg);
}

/* Accordion Body */
.accordion .accordion-item .accordion-body {
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	overflow: hidden;
	padding: 0 1.75rem;
	position: relative;
	transition: 0.3s;
}

.accordion .accordion-item.expanded .accordion-body {
	display: block;
	opacity: 1;
	visibility: visible;
	max-height: 40rem;
	margin-bottom: 1.5rem;
}

.accordion .accordion-item.expanded .accordion-body p:not(:last-child) {
	padding-bottom: 0.5rem;
}

.accordion .accordion-item .accordion-body a {
	text-decoration: underline;
}

.accordion .accordion-item .accordion-body a:hover {
	text-decoration: none;
}

.accordion .accordion-body .roles-list-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.accordion .accordion-body .roles-list-items {
	padding: 0;
	list-style: none;
	gap: 0.375rem;
}

.accordion .accordion-body .roles-list-items:has(li:nth-child(15)) {
	column-count: 2;
	column-gap: 20px;
	max-width: 87%;
}

.accordion .accordion-body .roles-list-items li {
	margin-bottom: 0.625rem;
}

/* Office accordion specific */
.accordion .accordion-body .office-location-info {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #ccc;
}

.accordion .accordion-body .office-location-info:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.accordion .accordion-body .office-city {
	color: #00807C;
	font-size: 1.125rem;
	font-weight: 600;
	padding-bottom: 0.5rem;
}

.accordion .accordion-body .office-phone {
	padding-bottom: 0.5rem;
}

.accordion .accordion-body .office-phone a {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 600;
}

.accordion .accordion-body .office-address {
	font-size: 1rem;
	line-height: 1.5;
}

.accordion .accordion-body .office-address-street {
	display: block;
}

.accordion .accordion-body .office-address-city,
.accordion .accordion-body .office-address-state,
.accordion .accordion-body .office-address-zip {
	margin-right: .375rem;
}

@media screen and (max-width: 991px) {
	.office-locations-wrapper {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.office-locations-wrapper .section-head h2 {
		padding-right: 0;
	}

	.office-locations-wrapper .section-head p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		padding-top: 1.25rem;
	}

	.accordion .accordion-item .accordion-header {
		min-height: 4.5rem;
	}
}

@media screen and (max-width: 575px) {
	.office-locations-wrapper {
		gap: 1rem;
	}

	.office-locations-wrapper .section-head p {
		line-height: 1.25rem;
		padding-top: 1rem;
	}
}

/* Responsive Space */
.desktop-only {
	display: block;
}

.tablet-only {
	display: none;
}

.mobile-only {
	display: none;
}

@media screen and (min-width: 768px) and (max-width:991px) {
	.desktop-only {
		display: none;
	}

	.tablet-only {
		display: block;
	}

	.mobile-only {
		display: none;
	}
}

@media screen and (max-width:767px) {
	.desktop-only {
		display: none;
	}

	.tablet-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}
}

/* Stay Connected Candidate Hub */
.hbspt-newsletter-form .hbspt-form .actions {
	margin: 20px 0 0;
	text-align: center;
}

.hbspt-newsletter-form .hbspt-form .hs-form-radio-display input[type="radio"] {
	top: 0;
	margin-top: 0px;
}

.hbspt-newsletter-form .hbspt-form .submitted-message {
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

/* Wp-Bakery Accordion CSS */
.vc_tta.vc_tta-accordion {
	background-color: transparent;
	border: none;

}

/* Accordion Item */
.vc_tta-panel {
	background-color: #fff;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.page.wpb-js-composer .vc_tta.vc_tta-style-classic .vc_tta-panel-heading {
	border: 0;
}

/* Accordion Header */
.vc_tta-panel .vc_tta-panel-title {
	min-height: 5.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0.75rem 1.75rem;
	background-color: #fff;
	border-radius: 10px;
	gap: 2rem;
}

.page.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading {
	background-color: #fff;
}

.vc_tta-panel .vc_tta-panel-title > a {
	width: 100%;
}

.vc_tta-panel .vc_tta-panel-title .vc_tta-title-text {
	margin: 0;
	color: #000;
	font-weight: 600;
	font-size: 1.375rem;
	max-width: 34.5rem;
	flex-grow: 1;
}

.page.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title > a {
	width: 100%;
	color: #000;
	padding-left: 0;
	padding-right: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.page.wpb-js-composer .vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus::after {
	display: none;
}

.vc_tta-panel .vc_tta-panel-title > a::after {
	content: "";
	width: 0.875rem;
	height: 0.5rem;
	background: url(../svg/chevron-black-icon.svg) no-repeat;
	display: block;
	flex-shrink: 0;
}

.vc_tta-panel.vc_active .vc_tta-panel-title > a::after {
	transform: rotate(180deg);
}

.wpb-js-composer .vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus {
	content: none;
	display: none;
}

/* Accordion Body */
.page.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	padding: 0 1.75rem;
	position: relative;
	background-color: #fff;
	border: 0;
}

.page.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body p {
	font-size: 1rem;
}

.page.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-body {
	display: block;
	opacity: 1;
	visibility: visible;
	margin-bottom: 1.5rem;
}

.page.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
	background-color: #fff;
}

.vc_tta-panel.vc_active .vc_tta-panel-body {
	opacity: 1;
	visibility: visible;
	margin-bottom: 1.5rem;
}

.vc_tta-panel .vc_tta-panel-body h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.vc_tta-panel .vc_tta-panel-body ul {
	padding: 0;
	list-style: none;
	gap: 0.375rem;
}

.vc_tta-panel .vc_tta-panel-body a {
	text-decoration: underline;
}

.vc_tta-panel .vc_tta-panel-body a:hover {
	text-decoration: none;
}

.vc_tta-panel .vc_tta-panel-body ul:has(li:nth-child(15)) {
	column-count: 2;
	column-gap: 1.25rem;
	max-width: 87%;
}

.vc_tta-panel .vc_tta-panel-body ul li {
	margin-bottom: 0.625rem;
}

/* Responsive Tweaks */
@media screen and (max-width: 991px) {
	.vc_tta-panel .vc_tta-panel-title {
		min-height: 4.5rem;
	}

	.vc_tta-panel .vc_tta-panel-title .vc_tta-title-text {
		max-width: 100%;
	}

	.vc_tta-panel .vc_tta-panel-body h5 {
		margin-bottom: 1.5rem;
	}

	.vc_tta-panel .vc_tta-panel-body ul:has(li:nth-child(15)) {
		max-width: 100%;
	}
}

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

	.accordion .accordion-item .accordion-header,
	.vc_tta-panel .vc_tta-panel-title .vc_tta-title-text {
		font-size: 1.25rem;
		line-height: 1.625rem;
	}

	.vc_tta-panel .vc_tta-panel-body ul:has(li:nth-child(15)) {
		column-count: auto;
	}
}

/* Info Card - Square */
.info-square-card .blog-card .blog-card-info h3 {
	display: block;
}

.info-square-card .blog-card-info p {
	display: block;
	padding-bottom: 1rem;
}

/* Info Card - Rectangle */
.info-card-rectangle .blog-card {
	grid-column: span 3;
	display: grid;
	grid-template-columns: 2fr 1fr;
}

.info-card-rectangle .blog-card .blog-card-cover img {
	object-fit: cover;
	object-position: center;
}

.info-card-rectangle .blog-card .blog-card-info h3 {
	display: block;
}

.info-card-rectangle .blog-card-info p {
	display: block;
	padding-bottom: 1rem;
}

.info-card-rectangle .blog-card-cover iframe {
	width: 100%;
	min-height: 100%;
}

@media screen and (min-width:576px) {
	.info-card-rectangle .blog-card .blog-card-cover {
		height: auto;
	}
}

@media screen and (max-width: 991px) {
	.info-card-rectangle .blog-card {
		grid-column: span 2;
		grid-template-columns: 21.5rem 1fr;
		height: 20rem;
	}
}

@media screen and (max-width:767px) {
	.info-card-rectangle .blog-card {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 575px) {
	.info-card-rectangle .blog-card {
		display: block;
		height: 26.5rem;
	}
}

/* Let's Get to Work CSS */
.home-contact-form-box {
	margin: 0 auto;
	max-width: calc(85.75rem - 2rem);
	padding: 3.5rem 6rem;
	border-radius: 30px;
	background-image: url(../png/lets-get-to-work-home-bg.png);
	background-size: cover;
	background-position: center;
}

.home-contact-form-box h2 {
	color: #fff;
	font-weight: 500;
	padding-bottom: 1.5rem;
}

.home-contact-form-box h2 .bold {
	font-weight: bold;
}

.home-contact-form-box .contact-box-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.home-contact-form-box .contact-box-row .content-col {
	grid-column: span 6;
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.home-contact-form-box .contact-box-row .content-item:not(:last-child) {
	padding-bottom: 1.125rem;
	border-bottom: 1px solid rgba(117, 185, 199, 0.5);
}

.home-contact-form-box .contact-box-row .content-item h5 {
	color: #fff;
	font-size: 1.375rem;
	font-weight: 600;
}

.home-contact-form-box .contact-box-row .content-item p {
	color: #fff;
	font-size: 1rem;
	line-height: 1.125rem;
	padding-top: 0.5rem;
}

.home-contact-form-box .contact-box-row .form-col {
	grid-column: 8 / span 5;
	margin-top: 0.125rem;
}

.home-contact-form-box .hbspt-form .hs-button {
	color: #fff;
	border: 1px solid #fff;
	background-color: #0F1820;
}

.home-contact-form-box .hbspt-form .hs-button:hover {
	color: #1C2B39;
	border: 1px solid #1C2B39;
	background-color: #fff;
}

.home-contact-form-box .hs-richtext,
.home-contact-form-box .hs-richtext p {
	color: #fff;
}

@media screen and (max-width:1199px) {
	.home-contact-form-box {
		max-width: calc(62rem - 2rem);
		padding: 3.5rem 4rem;
	}

	.home-contact-form-box .contact-box-row .form-col {
		grid-column: span 6;
	}
}

@media screen and (max-width:991px) {
	.home-contact-form-box {
		max-width: calc(47rem - 2rem);
		padding: 6rem 5rem;
	}

	.home-contact-form-box .contact-box-row .content-col {
		grid-column: span 12;
	}

	.home-contact-form-box .contact-box-row .content-item h5 {
		font-size: 1.25rem;
	}

	.home-contact-form-box .contact-box-row .content-item p {
		font-size: 0.875em;
	}

	.home-contact-form-box .contact-box-row .form-col {
		grid-column: span 12;
	}
}

@media screen and (max-width:767px) {
	.home-contact-form-box {
		max-width: calc(37.5rem - 2rem)
	}
}

@media screen and (max-width:575px) {
	.home-contact-form-box {
		padding: 5rem 1rem;
		max-width: calc(100vw - 2rem);
	}

	.home-contact-form-box h2 {
		padding-bottom: 1.25rem;
	}
}

/* Contact Form */
.contact-form-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contact-form-section > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-form-left h1 {
	font-family: 'Proxima Nova';
	font-weight: 400;
	font-size: 65px;
	line-height: 75px;
	letter-spacing: 2%;
	margin: 0 0 40px;
}

.contact-form-section .contact-form-left h1 span {
	display: block;
	font-weight: 600;
}

.contact-form-section .contact-form-left p {
	font-family: 'Proxima Nova';
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	width: 533px;
	max-width: 100%;
}

.contact-form-section .contact-form-right .hbspt-form fieldset .hs-form-field {
	margin: 0 0 20px;
}

.contact-form-section .contact-form-right .hs-richtext {
	color: #ffffff;
}

.contact-form-section .contact-form-right .hbspt-form fieldset.form-columns-2 {
	display: block;
}

.contact-form-section .contact-form-right .hbspt-form fieldset.form-columns-2 .hs-form-field {
	width: 100%;
}

.contact-form-section .contact-form-right .hbspt-form .actions {
	margin: 0;
	display: inline-block;
}

.contact-form-section .contact-form-right .hbspt-form .hs-button {
	font-family: 'Proxima Nova';
	background: #0F1820;
	border: 1px solid #fff;
	color: #ffffff;
}

.contact-form-section .contact-form-right .hbspt-form .hs-button:hover,
.contact-form-section .contact-form-right .hbspt-form .hs-button:focus,
.contact-form-section .contact-form-right .hs-button:active {
	background: #fff;
	border: 1px solid #fff;
	color: #0F1820;
}

.contact-form-section .contact-form-right .hbspt-form .submitted-message {
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

@media (max-width: 992px) {
	.contact-form-section > div {
		display: block;
	}

	.contact-form-section .contact-form-left {
		margin: 0 0 30px;
		width: 100%;
	}

	.contact-form-section .contact-form-right {
		width: 100%;
	}

	.contact-form-section {
		padding: 130px 55px !important;
	}
}

@media (max-width:768px) {
	.contact-form-section > div {
		display: block;
	}

	.contact-form-section .contact-form-left {
		margin: 0 0 30px;
		width: 100%;
	}

	.contact-form-section .contact-form-right {
		width: 100%;
	}

	.contact-form-section {
		padding: 70px 15px !important;
	}
}
