body {
	max-width: 2048px;
	margin: 0 auto;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
body p {
	font-size: 37px;
}
h3 {
	font-size: 2rem;
}
.container_lrg {
	width: 1200px;
	max-width: 70%;
}
.container_med {
	width: 950px;
	max-width: 60%;
}
.container_sml {
	width: 700px;
	max-width: 50%;
}
.primary-header {
	position: fixed;
	z-index: 11;
	width: 100%;
	transition: all ease 0.5s;
	padding: 12px 0 0 0;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 2048px;
}
.primary-header .header-row {
	align-items: flex-end;
}
.primary-header .logo-col {
	flex: 0 1 500px;
}
.primary-header .logo-col img {
	max-height: 120px;
	width: auto;
	transition: all ease 0.5s;
}
.primary-header .nav-col {
	flex-grow: 1;
}
body.scrolled .primary-header {
	mix-blend-mode: difference;
}
.primary-header .main-nav .menu {
	justify-content: flex-end;
	padding: 0 90px 0 0;
}
.main-nav .menu li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.main-nav .menu li a {
	position: relative;
	display: inline-block;
}
.main-nav .menu li a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #fff);
	bottom: 3px;
	left: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease-out;
}
.main-nav .menu li a:hover::after {
	transform: scaleX(1);
}
.main-content-section-inner {
	padding: 85px 0;
	font-style: normal;
	font-weight: 400;
	background-color: #fff;
}
.dark-blue {
	color: var(--color-1);
}
.about-section {
	background-color: #fff;
}
.about-section .images-row {
	gap: 40px;
	overflow-x: hidden;
}
.about-section .images-row .main-image-col {
	flex: 1 1 70%;
}
.about-section .images-row .sub-image-col {
	flex: 1 1 30%;
}
.about-section .content-row {
	padding: 85px 2rem;
}
.image-feature-section {
	padding: 85px 0;
	background-color: #fff;
}
.image-feature-section .image-feature-row {
	gap: 50px;
}
.image-feature-section .image-feature-row .image-col {
	flex: 1 1 calc(33.33% - 33.34px);
	position: relative;
	z-index: 1;
}
.image-feature-section .image-feature-row .image-col img {
	height: 680px;
	object-fit: cover;
}
.image-feature-section .image-feature-row .image-col::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25.73%, rgba(0, 0, 0, 0.85) 86.25%);
	opacity: 0.8;
}
.projects-section {
	background-color: #fff;
}
.projects-section .project-features-row {
	padding: 60px 2rem;
	gap: 10px;
	flex-wrap: wrap;
}
.projects-section .project-features-row .btn {
	padding-right: 25px;
}
.projects-section .project-features-row .btn,
.projects-section .project-features-row .btn:after {
	color: var(--color-3);
}
.projects-section .project-features-row .btn:hover,
.projects-section .project-features-row .btn:hover:after,
.projects-section .project-features-row .btn:focus,
.projects-section .project-features-row .btn:focus:after {
	color: #fff;
}
.projects-section .project-features-row .project {
	flex: 1 1 calc(25% - 20px);
}
.projects-section .project-features-row .project .image img {
	height: 100%;
	object-fit: cover;
}
.projects-section .project .project-card {
	width: auto;
	height: 350px;
	margin: 1rem auto;
	perspective: 1000px;
}
.projects-section .project .project-card .project-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.projects-section .project .project-card .project-card-inner .image,
.projects-section .project .project-card .project-card-inner .content {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.projects-section .project .project-card .project-card-inner .image {
	background: white;
	border: 1px solid #e5e7eb;
}
.projects-section .project .project-card .project-card-inner .content {
	background: var(--color-1);
	color: white;
	transform: rotateY(180deg);
	flex-direction: column;
	padding: 10px;
}
.projects-section .project .project-card .project-card-inner .content p {
	font-size: 16px;
}
.projects-section .content-row {
	padding: 80px 2rem 0 2rem;
}
.projects-section .content-row .content-row-inner p {
	font-size: 30px;
}
.cta-section {
	padding: 0 0 60px 0;
	background-color: #fff;
	box-shadow: 0px 6px 6px -3px #00000021;
}
.cta-section .cta-row {
	gap: 60px;
	align-items: center;
}
.cta-section .cta-row .col {
	flex: 1 1 50%;
}
.cta-section .cta-row .image-col img {
	min-height: 700px;
	object-fit: cover;
}
.cta-section .cta-row .content-col {
	padding: 0 2rem;
}
.cta-section h2 {
	font-size: 50px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.cta-section p {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.primary-footer {
	background-color: var(--color-3);
	position: sticky;
	bottom: 0;
	z-index: -1;
	font-size: 14px;
}
.primary-footer a {
	color: #fff;
}
.primary-footer a:hover {
	color: var(--color-1);
}
.primary-footer .footer-row {
	flex-direction: column;
	gap: 30px;
	padding: 40px 0 20px 0;
}
.primary-footer .footer-row .logo {
	display: flex;
}
.primary-footer .footer-row .logo img {
	max-width: 200px;
}
.primary-footer .footer-row .sitemap {
	display: flex;
	flex-wrap: wrap;
}
.primary-footer .footer-row .sitemap .menu {
	column-gap: 40px;
	row-gap: 10px;
	text-transform: uppercase;
}
.primary-footer .footer-row .sitemap a {
	padding: 0;
}
.primary-footer .footer-row .sitemap-social {
	display: flex;
	row-gap: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.primary-footer .footer-row .footer-locations {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 20px;
	justify-content: space-between;
	padding: 30px 0 0 0;
}
.primary-footer .footer-row .footer-locations .location {
	flex: 1 1 calc(20% - 32px);
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-transform: uppercase;
	padding-bottom: 20px;
}
.primary-footer .footer-row .footer-locations .location .title {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	padding-bottom: 20px;
}
.primary-footer .footer-row .footer-locations .location .address {
	padding: 10px 0;
}
.primary-footer .footer-row .footer-locations .location .address a,
.primary-footer .footer-row .footer-locations .location .phone a {
	font-weight: 400;
}
.primary-footer .footer-row .footer-locations .location .content {
	padding: 10px 0 0 0;
}
.primary-footer .footer-row .footer-locations .location .content p {
	margin-bottom: 0;
}
.primary-footer .footer-row .footer-locations .location p {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #fff;
}
.primary-footer .footer-row .footer-social {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.primary-footer .footer-row .footer-social a {
	font-size: 26px;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 4px;
}
.primary-footer .footer-row .footer-social a:hover {
	color: var(--color-1);
}
.acf-media.media__file .inner .wp-video {
	width: 100% !important;
}
.btn {
	color: var(--color-4);
	background-color: #fff;
	font-weight: 700;
	display: inline-block;
	position: relative;
	width: fit-content;
	line-height: 1;
	max-width: calc(100% - 40px);
	padding-right: 12px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	border-radius: 5px;
	font-weight: 600;
}
.btn:after {
	content: "\f061";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	z-index: 2;
	transition: all ease 0.3s;
	color: var(--color-4);
}
.btn:hover,
.btn:focus {
	background-color: var(--color-1);
	color: #fff;
	padding-right: 35px;
	padding-left: 15px;
	border-radius: 2px;
}
.mejs-overlay-button {
	background: url("/wp-content/themes/barebones/assets/images/playButtonAdobeStock_373515530.png") no-repeat !important;
}
.btn:not(.project .btn):before {
	content: "";
	position: absolute;
	top: calc(50% - 0px);
	transform: translateX(110%);
	right: 0;
	width: 50%;
	height: 2px;
	background-color: var(--color-4);
	z-index: 1;
	transition: all ease 0.3s;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.btn:not(.project .btn):after {
	content: "";
	position: absolute;
	top: calc(50%);
    transform: translateX(calc(100% + 5px)) translateY(-2px) rotate(-45deg);
	left: auto;
	right: -48%;
	width: 6px;
	height: 6px;
	border-right: 2px solid var(--color-4);
	border-bottom: 2px solid var(--color-4);
	z-index: 2;
	transition: all ease 0.3s;
}
.btn:hover:not(.project .btn):after {
	transform: translateX(calc(100% + 7px)) translateY(-2px) rotate(-45deg);
}
.btn:hover:not(.project .btn) {
	padding-left: 20px;
	padding-right: 20px;
}
.project .btn:hover:after {
	right: 5px;
	color: #fff;
}
.mobile-header {
	position: sticky;
	background-color: #ffffff00;
	transition: all ease .3s;
}

.mobile-header .mobile-row {
	max-width: 100vw;
}
.mobile-header .mobile-row .toggle-nav .fas {
	color: #000;
}
.mobile-header .mobile-row .toggle-nav {
	font-size: 36px;
}
.mobile-header .logo-col a {
	margin: 0px auto 0 0;
}
.mobile-footer-links {
	position: fixed;
	bottom: 0;
	width: 100%;
}
.mobile-footer-links-inner {
	padding: 10px 0;
	gap: 10px;
	justify-content: space-around;
}
.mobile-footer-links-inner .link a {
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 300;
}
.mobile-footer-links-inner .link a:hover,
.mobile-footer-links-inner .link a:focus {
	color: var(--color-2);
}
.toggle-nav .fa-bars {
	transition: transform 0.5s ease;
}
.toggle-nav.active .fa-bars {
	transform: rotate(90deg);
}
.mobile-header .logo-col img {
	max-height: 75px;
	transition: all ease 0.3s;
}
.mobile-header .mobile-menu {
	height: 100%;
}
.mobile-header .menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
}
.mobile-header .menu > li {
	border-top: none;
}
.mobile-header .menu > li > a {
	padding: 12px 10px;
	font-size: 26px;
}
.mobile-header .menu a:hover, 
.mobile-header .menu a:focus,
.mobile-footer-links-inner .link a:hover, 
.mobile-footer-links-inner .link a:focus {
    color: #fff;
}
body .mobile-header .nav-wrap {
	height: 0;
	max-height: 0;
	overflow: hidden;
	overflow-y: scroll !important;
	transition: all 0.9s ease;
}
body.mobile-menu .mobile-header .nav-wrap {
	height: calc(100vh - var(--headerHeight));
	max-height: 100%;
	background-color: var(--color-3);
}
.animation-wrap.fly-in-left .animation {
	animation-name: fly-in-left;
	animation-duration: 2s;
	animation-play-state: paused;
	animation-iteration-count: 1;
	position: relative;
	left: 0;
}
.animation-wrap.fly-in-right .animation {
	animation-name: fly-in-right;
	animation-duration: 2s;
	animation-play-state: paused;
	animation-iteration-count: 1;
	position: relative;
	right: 0;
}
.animation-wrap.run .animation {
	animation-play-state: running;
}
.slide-up-text {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1.2s ease, transform 1.2s ease;
}
.slide-up-text.visible {
	opacity: 1;
	transform: translateY(0);
}
/* If JS disabled, show immediately */
.no-js .slide-up-text {
	opacity: 1 !important;
	transform: translateY(0) !important;
	animation: none !important;
}
.parallax-section {
	position: relative;
	z-index: 10;
	overflow: hidden;
}
.parallax-section > * {
	pointer-events: auto;
}
.banner-section {
	position: relative;
	z-index: 2;
}
.main-content-section,
.cta-section,
.about-section,
.image-feature-section,
.projects-section {
	position: relative;
	z-index: 4;
}
.primary-footer {
	z-index: 0;
}
html.lenis {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
body .mobile-header .nav-wrap {
	display: none;
}
/* Interior Pages */
.ip-primary-header {
	position: relative;
	padding: 26px 40px 26px 40px;
	transition: all ease 0.5s;
}
body.scrolled .ip-primary-header {
	position: sticky;
	top: 0;
	z-index: 11;
	padding: 14px 40px;
}
body.scrolled .ip-primary-header .logo-col img {
	max-height: 70px;
}
.ip-primary-header .main-nav .menu li a {
	color: var(--color-3);
}
.ip-primary-header .main-nav .menu li a {
	position: relative;
	display: inline-block;
}
.ip-primary-header .main-nav .menu li a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, var(--color-3));
	bottom: 3px;
	left: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease-out;
}
.ip-primary-header .main-nav .menu li a:hover::after {
	transform: scaleX(1);
}
.ip-primary-header .main-nav .menu {
	justify-content: flex-end;
}
.ip-primary-header .header-row {
	align-items: flex-end;
}
.ip-primary-header .logo-col {
	flex: 0 1 380px;
}
.ip-primary-header .logo-col img {
	max-height: 86px;
	width: auto;
	transition: all ease 0.5s;
}
.ip-primary-header .nav-col {
	flex-grow: 1;
}
.custom-container {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.ip-sections {
	position: relative;
	z-index: 5;
	background-color: #fff;
	margin-top: var(--headerHeight);
	box-shadow: 0px 6px 6px -3px #00000021;
}
.ip-sections:first-child {
	margin-top: var(--headerHeight);
}
.ip-sections h2 {
	font-size: 46px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.ip-sections p {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.ip-about-section .media-image-wrap {
	gap: 60px;
}
.ip-about-section .media-image-wrap .media {
	flex: 1 1 73%;
}
.ip-about-section .media-image-wrap .image {
	flex: 1 1 27%;
}
.ip-about-section .media-image-wrap .image img {
	width: 100%;
}
.ip-about-section .content-row {
	padding: 85px 2rem;
}
.content-image-section {
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.content-image-section {
	p {
		flex-wrap: wrap;
		display: flex;
		align-items: center;
		gap: 30px;
	}
}
.content-image-section{
	p img{
		max-width: 155px;

	}
}
.ip-about-section .content-row-inner p {
	font-size: 20px;
}
.ip-about-section .content-row-inner h1 {
	margin-bottom: 40px;
	font-size: 46px;
	font-weight: 400;
}
.mejs-controls {
	opacity: 0 !important;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
/* Show controls when video is playing */
.mejs-container .mejs-controls:has(.mejs-pause) {
	opacity: 1 !important;
	pointer-events: auto;
}
.ip-sections .cta-section h1{
	font-size: 46px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.ip-sections .cta-section {
	padding: 60px 0;
	background-color: #fff;
	box-shadow: none;
}
.ip-sections .cta-section.img-right .cta-row {
	flex-direction: row-reverse;
}
.ip-sections .team-section {
	padding: 60px 0;
	background-color: #fff;
}
.ip-sections .team-section .members {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}
.ip-sections .team-section .members .member {
	flex: 1 1 calc(33.33% - 26.67px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.ip-sections .team-section .member {
	position: relative;
}
.ip-sections .team-section .member .image {
	position: relative;
	width: 100%;
	height: 100%;
}
.ip-sections .team-section .member .image img {
	transition: filter 0.6s ease;
	width: 100%;
	height: auto;
	display: block;
	min-height: 100%;
	object-fit: cover;
}
.ip-sections .team-section .member .content {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 90%;
	height: 90%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-3);
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: scale(0.55);
	transition: all 0.2s ease;
	overflow-y: auto;
	outline: none;
	border: none;
}
.ip-sections .team-section .member .content h3 {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 0px;
}
.ip-sections .team-section .member .content h4 {
	text-transform: uppercase;
	font-size: 16px;
}
.ip-sections .team-section .member .content p {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
}
.ip-sections .team-section .member:hover .image img {
	filter: blur(2px);
}
.ip-sections .team-section .member:hover .content {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto !important;
	z-index: 100;
}
.ip-sections .team-section .member .content::-webkit-scrollbar {
	width: 3px;
}
.ip-sections .team-section .member .content::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
.ip-sections .team-section .member .content::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 2px;
}
.ip-sections .team-section .member .content::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.5);
}
.ip-sections .team-section .member .content::-webkit-scrollbar-button {
	display: none;
}
/* For Firefox */
.ip-sections .team-section .member .content {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
}
.ip-sections .team-section .bottom-content{
	margin-top: 30px;
}
.ip-sections .brands-section {
	padding: 90px 4rem;
}
.ip-sections .brands-section h2,
.ip-sections .brands-section h3 {
	margin-bottom: 50px;
}
.ip-sections .brands-section .brands{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.ip-sections .brands-section .brand{
	flex: 1 1 calc(15% - 25px);
}
.ip-sections .brands-section .brand .image{
	max-width: 180px;
}
.ip-projects-section {
	position: relative;
	padding: 85px 0;
	background-color: #fff;
	z-index: 5;
}
.single-project-section {
	box-shadow: 0px 6px 6px -3px #00000021;
}
.ip-projects-section .projects-listing {
	gap: 40px;
	flex-wrap: wrap;
}
.ip-projects-section .projects-listing .project {
	flex: 0 1 calc(33.33% - 26.67px);
	position: relative;
	overflow: hidden;
}
.ip-projects-section .projects-listing .project .project-inner {
	transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.ip-projects-section .projects-listing .project .project-inner:hover {
	transform: scale(1.05);
}

.ip-projects-section .projects-listing .project .header {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px #0000006b;
	display: flex;
	gap: 4px;
	font-weight: 600;
	letter-spacing: -0.5px;
	transition: all ease 0.45s;
}
.ip-projects-section .projects-listing .project .project-inner:hover .header {
	bottom: 28px;
	left: 38px;
}
.ip-projects-section .projects-listing .project .header .location:before {
	content: "|";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 4px;
	font-size: 20px;
	vertical-align: top;
	position: relative;
	top: -2px;
}
.single-project-section {
	padding: 85px 4rem;
	background-color: #fff;
	position: relative;
	z-index: 5;
}
.single-project-section .single-project-section-inner .the-word-project {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}
.single-project-section .single-project-section-inner .heading {
	font-size: 30px;
	margin-bottom: 0px;
}
.single-project-section .single-project-section-inner .location {
	margin-top: -0.8rem;
	font-size: 30px;
	margin-bottom: 30px;
}
.single-project-section .single-project-section-inner .content {
	padding: 85px 1rem;
	max-width: 50%;
}
.single-project-section .single-project-section-inner .content p {
	font-size: 18px;
}
.single-project-section .images-gallery {
	flex-wrap: wrap;
	gap: 30px;
}
.single-project-section .images-gallery .image {
	flex: 0 1 calc(50% - 15px);
}
.single-project-section .images-gallery .image {
	max-width: 100%;
	position: relative;
	overflow: hidden;
}
.single-project-section .images-gallery .image img {
	height: 450px;
	object-fit: cover;
}
.single-project-section .images-gallery .image .image-inner img {
	transition: all ease 0.3s;
}
.single-project-section .images-gallery .image .image-inner:hover img {
	transform: scale(1.05);
}
.contact-section {
	padding: 0 0 60px 0;
	background-color: #fff;
}
.contact-section .contact-row {
	gap: 60px;
	align-items: center;
}
.contact-section .contact-row .content-col {
	flex: 1 1 40%;
}
.contact-section .contact-row .image-col {
	flex: 1 1 60%;
}
.contact-section.img-right .contact-row {
	flex-direction: row-reverse;
}
.contact-section .contact-row .image-col img {
	min-height: 700px;
	object-fit: cover;
}
.contact-section .contact-row .content-col {
	padding: 0 10vw 0 6vw;
}
.contact-section h2 {
	font-size: 50px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contact-section p,
.contact-section p a {
	color: var(--color_text);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contact-section p a:hover,
.contact-section p a:focus {
	color: var(--color-4);
}
.overlay-section {
	position: relative;
	z-index: 4;
}
.dual-content-section {
	padding: 85px 0;
	background-color: #fff;
}
.dual-content-section .dual-content-row{
	align-items: center;
}
.dual-content-section .dual-content-row .col{
	flex: 1 1 50%;
}
.dual-content-section .dual-content-row .image-content {
	position: relative;
	text-align: center;
}
.dual-content-section .dual-content-row .image-content img {
	position: absolute;
	right: 60%; 
	bottom: 0%;
	transform: translateY(10%); 
}
.mobile-header{
	position: sticky;
}
@keyframes fly-in-left {
	from {
		left: 0;
	}
	0% {
		left: -100vw;
	}
	to {
		left: 0;
	}
}
@keyframes fly-in-right {
	from {
		right: -100vw;
	}
	to {
		right: 0;
	}
}
@media screen and (max-width: 1300px) {
	.primary-header .logo-col img {
		max-height: 60px;
	}
	.primary-header .main-nav .menu {
		padding: 0 20px 0 0;
	}
	.primary-header .logo-col {
		flex: 0 1 380px;
	}
	.ip-primary-header {
		padding: 20px 30px 30px 30px;
	}
	.ip-primary-header .logo-col {
		flex: 0 1 280px;
	}
}
@media screen and (max-width: 1200px) {
	.primary-header .logo-col img {
		max-height: 60px;
	}
	.primary-header .main-nav .menu {
		padding: 0 20px 0 0;
	}
	.primary-header .main-nav .menu li a {
		font-size: 14px;
	}
	.primary-header .logo-col {
		flex: 0 1 380px;
	}
}
@media screen and (max-width: 991px) {
	body {
		margin-top: calc(0px - var(--headerHeight));
	}
	.primary-footer {
		position: static;
	}
	.ip-primary-header {
		display: none;
	}
	.banner-section .image img {
		min-height: 100vh;
		object-fit: cover;
	}
	.projects-section .project .project-card:hover .project-card-inner {
		transform: none;
	}
	.ip-projects-section .projects-listing .project {
		flex: 0 1 calc(50% - 20px);
	}
	.dual-content-section {
		padding: 0;
	}
	.dual-content-section .dual-content-row{
		flex-direction: column;
		row-gap: 80px;
	}
	.ip-sections .brands-section .brand{
	    flex: 0 1 26%;
    }
	.container_lrg,
	.container_med,
	.container_sml {
		max-width: 100%;
	}
	.ip-sections .team-section .member .image{
		position: relative;
	}
	.ip-sections .team-section .member .image:before{
		content: '+';
		position: absolute;
		bottom: 0;
		right: 4%;
		font-size: 42px;
		color: #fff;
		opacity: 1;
		transition: opacity 0.6s ease; 
		z-index: 5;
	}
	.ip-sections .team-section .member:hover .image:before {
		opacity: 0;
	}
}
@media screen and (max-width: 767px) {
	body p {
		font-size: 28px;
	}
	.main-content-section {
		padding: 40px 0;
	}
	.about-section .content-row {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.projects-section .content-row {
		padding: 40px 0 0 0;
	}
	.projects-section .project-features-row {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
		flex-wrap: nowrap;
		padding: 20px 0;
		margin-bottom: 40px;
	}
	.projects-section .project-features-row .project {
		flex: 0 0 auto;
		min-width: 280px;
		max-width: 85vw;
	}
	.cta-section .cta-row,
	.primary-footer .footer-row .sitemap .menu {
		flex-direction: column;
	}
	.primary-footer .footer-row {
		padding: 60px 0 40px 0;
	}
	.primary-footer .footer-row .sitemap {
		justify-content: center;
	}
	.primary-footer .footer-row .sitemap-social {
		flex-direction: column;
	}
	.primary-footer .footer-row .footer-locations {
		justify-content: center;
		padding: 20px 0 0 0;
	}
	.primary-footer .footer-row .footer-locations .location {
		flex: 1 1 calc(50% - 20px);
		text-align: center;
	}
	.primary-footer .footer-row .footer-locations .location .title {
		padding-bottom: 0px;
	}
	.primary-footer .footer-row .logo {
		justify-content: center;
	}
	.projects-section .content-row-inner{
		padding: 0 1.5rem;
	}
	.cta-section .cta-row .content-col {
		padding: 0;
	}
	.image-feature-section .image-feature-row {
		flex-direction: column;
		padding: 0 10px;
		gap: 10px;
	}
	.image-feature-section .image-feature-row .image-col img {
		height: 380px;
	}
	.about-section .images-row {
		flex-direction: column;
	}
	.ip-about-section .media-image-wrap {
		flex-direction: column;
	}
	.ip-sections .cta-section.img-right .cta-row {
		flex-direction: column;
	}
	.ip-sections .team-section .members .member {
		flex: 1 1 calc(50% - 20px);
	}
	.ip-projects-section .projects-listing .project {
		flex: 0 1 calc(100% - 20px);
	}
	.single-project-section .images-gallery .image {
		flex: 1 1 calc(100% - 15px);
	}
	.contact-section .contact-row {
		flex-direction: column !important;
	}
}
@media screen and (max-width: 600px) {
	.ip-sections .team-section {
		padding: 0;
	}
	.ip-sections .team-section .members .member {
		flex: 1 1 calc(100% - 20px);
	}
	.ip-sections .team-section .team-section-inner > .content,
	.ip-about-section .content-row-inner,
	.single-project-section .single-project-section-inner .content {
		max-width: 100%;
	}
	.ip-about-section .content-row .content-image-section {
		flex-direction: column;
	}
	.dual-content-section .dual-content-row .image-content img{
		max-width: 90px;
		right: 70%;
	}
	.ip-sections .brands-section .brand {
        flex: 0 1 45%;
    }
	.cta-section h2{
		font-size: 32px;
	}
	.home .about-section .content-row {
		padding: 85px 0rem;
	}
	.ip-about-section .content-row{
		padding: 85px 0;
	}
	.cta-section .cta-row .content-col{
		padding: 0;
	}
}
@media screen and (max-width: 550px) {
	.ip-sections h1,
	.ip-sections h2,
	.ip-about-section .content-row-inner h1,
	.ip-sections .cta-section h1 {
		font-size: 32px;
	}
	.ip-sections .brands-section {
		padding: 90px 1rem;
	}
	.cta-section .cta-row .image-col img,
	.contact-section .contact-row .image-col img{
		min-height: auto;
	}
}
@media screen and (max-width: 425px) {
	.about-section .content-row-inner {
		max-width: 100%;
	}
	.btn:not(.project .btn):before {
		width: 30%;
	}
	.btn:not(.project .btn):after {
		right: -26%;
	}
	.mobile-header .menu > li > a {
		padding: 8px 10px;
		font-size: 22px;
	}
}
