:root {
	--brand-primary: #011933;
	--brand-secondary: #064779;
	--brand-tertiary: #ff5815;
	--brand-quaternary: #ffc515;
	--black: #000c17;
	--grey: #5f5b5b;
	--gradient: linear-gradient(90deg, var(--brand-tertiary) 0%, var(--brand-quaternary) 100%);
}

html {
	box-sizing: border-box;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 10rem;
	-webkit-font-feature-settings: "lnum";
	-moz-font-feature-settings: "lnum";
	font-feature-settings: "lnum";
	margin: 0;
	padding: 0;
}

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

body {
	margin: 0;
	padding: 0;
}

a {
	background-color: transparent;
	color: var(--brand-secondary);
	text-decoration: none;
}

a:hover,
a:active {
	outline: 0;
}

p a {
	border-bottom: 1px solid;
}

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

.wpb_single_image img {
	border-radius: 4px;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--black);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

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

body .vc_column_container>.vc_column-inner {
	padding: 0;
}

body .vc_row {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6rem;
}

body .vc_row::before,
body .vc_row::after {
	display: none;
}

body .vc_row-has-fill>.vc_column_container>.vc_column-inner,
body .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
body .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
body .vc_col-has-fill>.vc_column-inner {
	padding: 0;
}

body .vc_col-sm-1,
body .vc_col-sm-2,
body .vc_col-sm-3,
body .vc_col-sm-4,
body .vc_col-sm-5,
body .vc_col-sm-6,
body .vc_col-sm-7,
body .vc_col-sm-8,
body .vc_col-sm-9,
body .vc_col-sm-10,
body .vc_col-sm-11,
body .vc_col-sm-12 {
	float: none;
}

body .vc_col-sm-2 {
	width: calc(25% - 2rem);
}

body .vc_col-sm-3 {
	width: calc(25% - 4.5rem);
}

body .vc_col-sm-4 {
	width: calc(33.333333% - 4rem);
}

body .vc_col-sm-6 {
	width: calc(50% - 3rem);
}

body .vc_col-sm-8 {
	width: calc(66.666666% - 3rem);
}

body .vc_col-sm-4+.vc_col-sm-8 {
	width: calc(66.666666% - 2rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 1rem;
	font-family: 'Poppins', sans-serif;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 2.25rem;
}

h4 {
	font-size: 1.625rem;
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: 0.875rem;
}

p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	margin-left: 1.25em;
	padding: 0;
}

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

ul.check li {
	position: relative;
	padding-left: 1.25em;
}

ul.check li::before {
	position: absolute;
	left: 0;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
	content: '\f00c';
}

ul.check li+li {
	margin-top: 0.5em;
}

p+*,
ul+*,
ol+* {
	margin-top: 1.5rem;
}

.section-link {
	margin: 0;
	font-weight: 600;
	border-bottom: 1px solid;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-3-4 {
	flex-basis: 75%;
}

.flex-2-3 {
	flex-basis: 66.666666%;
}

.flex-1-2 {
	flex-basis: 50%;
}

.flex-1-3 {
	flex-basis: 33.333333%;
}

.flex-1-4 {
	flex-basis: 25%;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.flex-4 {
	flex: 4;
}

.ac {
	align-items: center;
}

.jcc {
	justify-content: center;
}

.jsb {
	justify-content: space-between;
}

.jfe {
	justify-content: flex-end;
}

.row-rev {
	flex-direction: row-reverse;
}

.text-left {
	text-align: left;
}

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

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

.text-white {
	color: #fff;
}

.text-primary {
	color: var(--brand-primary);
}

.text-secondary {
	color: var(--brand-secondary);
}

.text-tertiary {
	color: var(--brand-tertiary);
}

.text-gradient {
	background: var(--brand-tertiary);
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bg-white {
	background: #fff;
}

.bg-primary {
	background: var(--brand-primary);
}

.bg-secondary {
	background: var(--brand-secondary);
}

.bg-tertiary {
	background: var(--brand-tertiary);
}

.bg-gradient {
	background: var(--brand-tertiary);
	background: var(--gradient);
}

.gradient-overlay {
	position: relative;
	isolation: isolate;
}

.gradient-overlay::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--brand-primary);
	background: linear-gradient(0deg, rgba(1, 25, 51, 0.95) 25%, rgba(1, 25, 51, 0) 100%);
	content: '';
	z-index: -1;
}

.gradient-mask {
	background: linear-gradient(white, white 50%, transparent 50%, transparent 100%);
}

.container {
	width: 100%;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 3rem;
	padding-right: 3rem;
}

.c-1800 {
	max-width: 1800px;
}

.c-1600 {
	max-width: 1600px;
}

.c-1400 {
	max-width: 1400px;
}

.c-1200 {
	max-width: 1200px;
}

.c-1000 {
	max-width: 1000px;
}

.c-800 {
	max-width: 800px;
}

.c-700 {
	max-width: 700px;
}

.c-600 {
	max-width: 600px;
}

.p-tb-4x {
	padding-top: 12rem;
	padding-bottom: 12rem;
}

.p-tb-3x {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.p-tb-2x {
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.p-tb-xl {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.p-tb-lg {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.p-tb-md {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.p-tb-sm {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.p-tb-xs {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

body .m-t-2x {
	margin-top: 8rem;
}

body .m-t-xl {
	margin-top: 6rem;
}

body .m-t-lg {
	margin-top: 4rem;
}

body .m-t-md {
	margin-top: 3rem;
}

body .m-t-sm {
	margin-top: 2rem;
}

body .m-t-xs {
	margin-top: 1rem;
}

body .m-b-2x {
	margin-bottom: 8rem;
}

body .m-b-xl {
	margin-bottom: 6rem;
}

body .m-b-lg {
	margin-bottom: 4rem;
}

body .m-b-md {
	margin-bottom: 3rem;
}

body .m-b-sm {
	margin-bottom: 2rem;
}

body .m-b-xs {
	margin-bottom: 1rem;
}

.gap-xl {
	gap: 6rem;
}

.gap-lg {
	gap: 4rem;
}

.gap-md {
	gap: 3rem;
}

.gap-sm {
	gap: 2rem;
}

.gap-xs {
	gap: 1rem;
}

.os-btn {
	display: inline-block;
	background: var(--gradient);
	color: #fff;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 4px;
}

.os-btn-white {
	background: #fff;
	color: var(--brand-primary);
}

.os-btn-blue {
	background: var(--brand-primary);
}

.os-btn-large {
	padding: 1.5em 3em;
	font-size: 2rem;
}

.box-highlight .wpb_wrapper {
	isolation: isolate;
}

.box-highlight .wpb_text_column {
	position: relative;
	background: #fff;
	padding: 4rem 10rem;
	border-radius: 2rem;
}

.box-highlight .wpb_text_column::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 200px;
	aspect-ratio: 16/9;
	border-radius: 2rem;
	background: var(--gradient);
	content: '';
	transform: translate(-50%, -50%);
	z-index: 2;
}

.box-highlight .wpb_text_column::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 200px;
	aspect-ratio: 16/9;
	border-radius: 2rem;
	background: var(--gradient);
	content: '';
	transform: translate(50%, -50%);
	z-index: 2;
}

.os-drop {
	position: relative;
	isolation: isolate;
}

.os-drop::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--gradient);
	content: '';
	border-radius: 4px;
	transform: translate(2rem, 2rem);
	z-index: -1;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 99;
}

.topbar {
	background: var(--brand-secondary);
	color: #fff;
	font-size: 0.875rem;
	padding-block: 0.5rem;
}

.topbar-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.topbar-nav a {
	color: #fff;
}

.menu-phone {
	position: relative;
}

.menu-phone a {
	position: relative;
	color: var(--brand-tertiary);
	padding-left: 1.25rem;
}

.menu-phone a::before {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
	content: '\f095';
}

.menu-email {
	position: relative;
}

.menu-email a {
	position: relative;
	color: var(--brand-quaternary);
	padding-left: 1.25rem;
}

.menu-email a::before {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
	content: '\f0e0';
}

.headerbar {
	background: var(--brand-primary);
}

.site-branding {
	flex: 1;
}

.site-branding a,
.site-branding img {
	display: block;
}

.main-navigation {}

.menu-toggle {
	display: none;
}

.main-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation a {
	color: #fff;
}

.mobile-navigation {
	display: none;
}

.hero {
	background: url('img/bg-stone-strategies-hr-services-hero-1.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
}

.hero-content {
	max-width: 50%;
}

.hero-content h5 {
	font-size: 1.125rem;
	color: #63a2d3;
	margin: 0;
}

.hero-content h1 {
	margin: 1.5rem 0;
	color: #fff;
}

.announcement {}

.announcement * {
	margin-block: 0;
}

.main-content {
	position: relative;
	overflow: hidden;
	/*background-image: url('img/bg-pattern-1.webp'), url('img/bg-pattern-2.webp');
	background-position: right top, left bottom;
	background-repeat: no-repeat, no-repeat;*/
}

.main-content::before,
.main-content::after {
	position: absolute;
	content: '';
	z-index: -1;
}

.main-content::before {
	top: 0;
	right: 0;
	width: 780px;
	height: 531px;
	background: url('img/bg-pattern-1.webp') no-repeat center center;
	background-size: cover;
	transform: translate(25%, -50%);
	float: right;
}

.main-content::after {
	bottom: 0;
	left: 0;
	width: 948px;
	height: 789px;
	background: url('img/bg-pattern-2.webp') no-repeat center center;
	background-size: cover;
	transform: translate(-50%, 35%);
}

.service-list {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1.5rem;
}

.service-list a {
	flex: 1 1 200px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	color: #fff;
	min-height: 28rem;
	padding: 2rem;
	border-radius: 4px;
	overflow: hidden;
}

.service-list a:nth-child(1) {
	background: url('img/img-stone-strategies-hr-services-hr-training.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
}

.service-list a:nth-child(2) {
	background: url('img/img-stone-strategies-hr-services-career-transition-coaching.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
}

.service-list a:nth-child(3) {
	background: url('img/img-stone-strategies-hr-services-employee-orientation-programs.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
}

.service-list a:nth-child(4) {
	background: url('img/img-stone-strategies-hr-services-say-goodbye-better.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
}

.service-list a:nth-child(5) {
	background: url('img/img-stone-strategies-hr-services-talent-acquisition.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
}

.service-list span {
	display: block;
	overflow: hidden;
}

.service-list h4 {
	font-size: 1.313rem;
	font-weight: 500;
	margin: 0;
	padding-bottom: 0.125rem;
}

.service-list a:hover h4 {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-list p {
	margin-top: 1.375rem;
	font-size: 0.875rem;
}

.service-list a:hover p {
	color: #d7e6f1;
}

.home-about>* {
	flex: 1;
}

.home-about-image {
	background: url('https://stonestrategies.ca/wp-content/uploads/2024/05/img-about-1.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
	border-radius: 4px;
}

.cta {
	position: relative;
	background: url('img/bg-stone-strategies-hr-services-cta-3.webp') no-repeat center center var(--brand-primary);
	background-size: cover;
	padding: 10% 0;
}

.cta::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0.5rem;
	background: var(--gradient);
	content: '';
}

.cta::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 0.5rem;
	background: var(--gradient);
	content: '';
}

.cta * {
	color: #fff;
}

.cta .os-btn {
	box-shadow: 0px 0px 1px 1px #0000001a;
	animation: pulse-animation 2s infinite;
	transition: all 0.5s ease;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgba(255, 197, 21, 0.2);
	}

	100% {
		box-shadow: 0 0 0 1em rgba(255, 197, 21, 0);
	}
}

.cta .os-btn:hover {
	transform: translateY(-0.5rem);
}

.cta .os-btn:active {
	transform: translateY(0);
}

.clients-container {
	background: url('img/bg-pattern-sand.webp') no-repeat center center #f1f1f1;
	background-size: cover;
}

@keyframes slide {
	to {
		transform: translate(calc(-50% - 1rem));
	}
}

.clients {
	max-width: 100%;
}

.clients[data-animated="true"] {
	overflow: hidden;
	-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.clients-slide {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.clients[data-animated="true"] .clients-slide {
	width: fit-content;
	flex-wrap: nowrap;
	animation: slide var(--_animation-duration, 60s) var(--_animation-direction, forwards) linear infinite;
}

.clients[data-direction="right"] {
	--_animation-direction: reverse;
}

.clients[data-animated="true"] .clients-slide:hover {
	animation-play-state: paused;
}

.clients-grid {
	display: flex;
	/*	grid-template-columns: repeat( 4, minmax(250px, 1fr) );*/
}

.client-logo {
	flex: 1 1 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 1rem;
	padding: 2rem;
}

.clients-slide img {
	max-height: 4rem;
	width: auto;
}

.clients-grid .client-logo,
.clients-grid .client-logo img {
	width: auto;
}

.site-footer {
	background: var(--brand-primary);
	color: #fff;
}

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

.site-footer li+li {
	margin-top: 0.5rem;
}

.site-footer a {
	color: #fff;
}

.site-footer h5 {
	display: inline-block;
	border-bottom: 1px solid var(--brand-quaternary);
}

.footer-1 {
	max-width: 25%;
}

.footer-icons {}

.footer-icons li a {
	position: relative;
	display: block;
	padding-left: 1.5em;
}

.footer-icons li a::before {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
}

.footer-icons li:nth-child(1) a::before {
	content: '\f095';
}

.footer-icons li:nth-child(2) a::before {
	content: '\f0e0';
}

.footer-icons li:nth-child(3) a::before {
	content: '\f3c5';
}

.site-footer a:hover {
	background: var(--brand-tertiary);
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-icons li a:hover::before {
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: #fff;
}

.copyright {
	background: var(--black);
	color: #fff;
	font-size: 0.875rem;
}

.copyright p {
	margin: 0;
}

.copyright a {
	border: 0;
}
























.secondary-header {
	padding-top: 20rem;
	padding-bottom: 3rem;
}

.secondary-header h1 {
	font-size: 6rem;
	color: #fff;
	text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}

.breadcrumbs {
	background: url('img/bg-pattern-sand.webp') no-repeat center center #f1f1f1;
	background-size: cover;
}

.breadcrumbs i {
	font-size: 0.75rem;
	margin: 0 0.5rem;
	color: rgba(0, 0, 0, 0.5);
}

.entry-content {
	overflow: hidden;
}

.os-grid {
	display: grid;
	gap: 2rem;
}

.os-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.os-grid-5 {
	grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
}

.os-grid-item {
	background: rgba(0, 0, 0, 0.025);
	border-radius: 1rem;
	padding: 2rem;
}

.os-grid-item img {
	display: block;
	max-height: 64px;
	margin-bottom: 1.5rem;
}

.fa-large {
	font-size: 4rem;
	margin-bottom: 1.5rem;
}

.os-grid p {
	font-size: 1.25rem;
	font-weight: 500;
}

.os-form .gform_wrapper {
	margin-top: 3rem;
}

.os-form .gform_wrapper * {
	font-size: 1.125rem;
}

.gfield_required {
	display: none;
}

.gform_heading {
	display: none !important;
}

.gform-theme--foundation .gform_fields {
	row-gap: 3rem;
}

.os-form .gform-theme--foundation .gfield .ginput_password.large,
.os-form .gform-theme--foundation .gfield input.large,
.gform-theme--foundation .gfield select.large {
	padding: 1.5rem !important;
	border: 2px solid var(--brand-primary);
}

.os-form .gfield_radio {
	flex-direction: row !important;
	flex-wrap: wrap;
	gap: 1rem !important;
}

.os-form .gchoice {
	position: relative;
	display: block;
	background: none;
	min-height: 3rem;
	min-width: 6rem;
	border-radius: 4px;
	overflow: hidden;
}

.os-form .gchoice input {
	width: 10px;
	height: 10px;
	transform: translateX(-100px);
}

.os-form .gchoice label {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 2px solid var(--brand-primary);
	margin: 0;
	font-weight: 500;
}

.os-form .gchoice input:checked+label {
	background: var(--gradient);
	font-weight: 800;
	color: #fff;
	border-color: var(--brand-tertiary);
}

.os-form .gform-theme--foundation .gform_footer,
.os-form .gform-theme--foundation .gform_page_footer {
	margin-top: 4.5rem;
}

.os-form input[type="submit"] {
	width: 100% !important;
	background: var(--gradient) !important;
	font-size: 1.25rem !important;
	padding: 1.5rem 3rem !important;
}
































@media screen and (max-width:1425px) {
	.menu-toggle {
		display: block;
		width: 44px;
		height: 44px;
		line-height: 42px;
		text-align: center;
		background: none;
		border: 2px solid #fff;
		box-shadow: none;
		text-shadow: none;
		font-size: 1.5rem;
		margin: 0;
		padding: 0;
		color: #fff;
		border-radius: 4px;
	}

	.menu-main-container {
		display: none;
	}

	.mobile-navigation {
		position: fixed;
		top: 0;
		left: 100%;
		width: 100vw;
		height: 100vh;
		background: var(--brand-primary);
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 0 10%;
		z-index: 100;
		transition: all 1s ease;
	}

	.mobile-navigation.active {
		left: 0;
	}

	.mobile-navigation-close {
		position: absolute;
		top: 0;
		right: 0;
		width: 88px;
		height: 88px;
		line-height: 88px;
		text-align: center;
		background: none;
		border: 0;
		box-shadow: none;
		text-shadow: none;
		color: rgba(255, 255, 255, 0.5);
		font-size: 3rem;
		z-index: 101;
	}

	.mobile-navigation ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin: 0;
		padding: 0;
		list-style: none;
		font-size: 2rem;
		font-weight: 600;
	}

	.mobile-navigation ul a {
		color: rgba(255, 255, 255, 0.75);
	}

	.mobile-navigation-footer {
		display: flex;
		align-items: center;
		gap: 2rem;
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.menu-social a {
		color: rgba(255, 255, 255, 0.75);
	}

	#secondary-menu li:nth-child(1),
	#secondary-menu li:nth-child(2),
	#secondary-menu li:nth-child(3) {
		display: none;
	}
}

@media screen and (max-width:1200px) {
	.hero {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.hero-content {
		max-width: 66%;
	}

	.service-list a {
		flex: 1 1 300px;
	}

	.home-about {
		flex-direction: column-reverse;
	}

	.home-about-image {
		padding-bottom: 500px;
	}

	.cta .container {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.cta .os-btn {
		width: fit-content;
	}
}

@media screen and (max-width:1000px) {
	.secondary-header {
		padding-top: 6rem;
	}

	.secondary-header h1 {
		font-size: 4rem;
	}

	.site-footer .container {
		gap: 2rem;
	}

	.footer-1 {
		max-width: 100%;
	}
}

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

	h2 {
		font-size: 2.25rem;
	}

	h3 {
		font-size: 1.625rem;
	}

	h4 {
		font-size: 1.125rem;
	}

	h5 {
		font-size: 1rem;
	}

	.p-tb-2x {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.p-tb-xl {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

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

	.vc_row.vc_row-flex {
		flex-direction: column;
	}

	body .vc_col-sm-6 {
		width: 100%;
	}

	.box-highlight .wpb_text_column {
		padding: 4rem;
	}

	.box-highlight .wpb_text_column::before {
		transform: translate(-75%, -50%);
	}

	.box-highlight .wpb_text_column::after {
		transform: translate(75%, -50%);
	}

	.services-list {
		margin-bottom: -4rem !important;
	}
}

@media screen and (max-width:725px) {
	.mobile-navigation ul {
		font-size: 1.5rem;
	}

	.service-list a {
		flex: 1 1 200px;
	}

	.copyright .container {
		flex-direction: column;
		text-align: center;
	}
}

@media screen and (max-width:600px) {
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.topbar .container {
		justify-content: center;
	}

	.mobile-navigation-footer {
		flex-direction: column;
		justify-content: center;
		align-items: unset;
		gap: 0.5rem;
	}

	.announcement .container {
		flex-direction: column;
	}

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

	.home-about-image {
		padding-bottom: 300px;
	}

	.section-links {
		flex-direction: column;
		align-items: unset;
	}

	.section-links a {
		width: fit-content;
	}

	.os-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.site-footer .container>div {
		width: 100%;
	}
}

@media screen and (max-width:550px) {
	.gap-lg {
		gap: 2rem;
	}

	.os-btn-large {
		padding-left: 1.5em;
		padding-right: 1.5em;
	}

	.topbar-nav {
		width: 100%;
	}

	.topbar-nav ul {
		/* flex-direction: column; */
		justify-content: space-between;
		gap: 1rem;
		text-align: center;
		font-size: 0.75rem;
	}

	.secondary-header h1 {
		font-size: 15vw;
	}

	.box-highlight .wpb_text_column {
		padding: 2rem;
	}

	.box-highlight .wpb_text_column::before {
		transform: translate(-90%, -50%);
	}

	.box-highlight .wpb_text_column::after {
		transform: translate(90%, -50%);
	}

	.box-highlight h3 {
		font-size: 1.25rem;
	}

	.os-grid {
		gap: 1rem;
	}

	.os-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.os-grid-item {
		padding: 1rem;
	}

	.os-grid p {
		font-size: 1rem;
	}

	.os-grid-5 {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.mob-gap {
		gap: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.page-id-19 .os-grid-4 {
		grid-template-columns: 1fr;
	}

	.gform-theme--foundation .gform_fields {
		row-gap: 1.5rem;
	}
}