/* JMA theme style */
/***** font-face *****/
/*
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
*/
@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
*{
    margin:0;
    padding:0;
}
:root {
  --blue: #3BA3D6;
  --gray: #4A4A4A;
  --orange: #FC9400;
}
body {
    width:100%;
    height:100%;
	color: var(--gray);
	/* font-family: Gotham SSm B, Gotham SSm A, Helvetica, Roboto, Arial, sans-serif; */
	font-family: 'Poppins';
	overflow: hidden!important;
	font-size: 16px;
}
/* header */
.site-header {
	padding: 53px 40px 10px 40px;
	display: flex;
    justify-content: space-between;
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
	z-index: 101;
}
.site-branding {
	width: 184px;
}
.main-navigation {
    width: auto;
	display: flex;
	margin-left: auto;
}
.main-navigation .all-categories {
	position: relative;
    padding-right: 40px;
    margin-right: 40px;
	color: #fff;
}
.main-navigation .all-categories:after {
	content: '';
	position: absolute;
	right: 0px;
	top: 0px; 
	height: 25px;
	width: 1px;
	background-color: #fff;
}
/* navigation */
.main-navigation ul {
	display: block;
	right: -340px;
	transition: all .3s ease;
	position: absolute;
	padding: 100px 30px 30px 30px;
}
.menu-toggle {
	background: 0 0;
	border: none;
	font-size: 34px;
	display: flex;
	height: 25px;
	width: 35px;
	padding: 0;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
	z-index: 2;
}
.single-nav-bar {
	width: 100%;
	height: 4px;
	display: block;
	background-color: #fff;
	transition: transform .6s ease
}
.main-navigation.toggled .menu-toggle .single-nav-bar {
	background-color: #000;
}
.main-navigation.toggled .menu-toggle .first-bar {
	transform: rotate(135deg);
	transition: transform .6s ease;
	position: absolute;
}
.main-navigation.toggled .menu-toggle .second-bar {
	display: none;
}
.main-navigation.toggled .menu-toggle .third-bar {
	transform: rotate(-135deg);
	transition: transform .6s ease;
	position: absolute;
}
.main-navigation.toggled ul {
    display: block;
    right: 0px;
    width: 380px;
    background-color: #fff;
    top: 0px;
    height: 100vh;
	right: 0px;
	transition: all .3s ease;
}
.main-navigation ul:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 47px;
    background-image: url(../images/logo-blue.webp);
    top: 18px;
	left: 30px;
    background-size: cover;
}
.overlay {
    top: 0px;
    left: -100vw;
    height: 100vh;
    width: 100vw;
    transition: left .2s ease;
	position: fixed;
}
.overlay-active {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: calc(100vw - 380px);
	background-color: rgba(0,0,0,.6);
	z-index: 102;
	transition: left .2s ease;
}
.main-navigation li {
	font-size: 25px;
    line-height: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}
.main-navigation li a {
	color: #000;
	transition: color .4s ease;
}
.main-navigation li a:hover {
	color: var(--blue);
	transition: color .4s ease;
}
/* end navigation */
.single-section {
    height: 100vh;
	position: relative;
}
.nav-button {
	position: fixed;
    top: 0;
    height: 100vh;
    padding: 10px 20px;
    background: #ffffff;
    color: #2cb0f1 !important;
    text-decoration: none;
    border-radius: 0;
    z-index: 1000;
    transition: transform 0.7s ease-in-out;
    display: flex;
    align-items: center;
}
.back-button { 
	left: -100%; 
}
.fullscreen-container{
    overflow: hidden;
    width: 100%;
    height: 100%;
	position: absolute;
	will-change: transform, filter;
}
#all-pages{
    position:relative;
    top:0;
    transition:all 800ms ease;
	height: 100%;
    /* height set by js */
	background: #000;
}
#page {
	max-height: 100%;
}
.page {
    height: 100%;
    width:100%;
	margin: 0px;
	position: relative;
	background: #000;
	background-size: cover;
	z-index: 1;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}
.scroll-track {
	position: fixed;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	width: 4px;
	height: 100vh;
	z-index: 1000;
	background-color: var(--blue);
}
.scroll-indicator {
	position: absolute;
	width: 8px;
	right: 0px;
	background-color: #3BA3D6;
	cursor: pointer;
	transition: top 0.8s ease;
}
.scroll-track {
	z-index: 9;
}
.swiper-scroll-track {
	position: fixed;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	width: 4px;
	height: 100vh;
	z-index: 1000;
	display: none;
	background-color: var(--blue);
}
.swiper-scroll-indicator {
    position: absolute;
	width: 8px;
	height: 250px;
	right: 0px;
	background-color: #3BA3D6;
	cursor: pointer;
	transition: top 0.8s ease;
}
.subpage-swiper.fly-in .swiper-scroll-track {
	display: block;
}
.subpage-swiper.fixed-swiper .swiper-scroll-track {
	display: block;
}
.swiper-close-btn {
    position: fixed;
    left: -200px;
    top: 0px;
    background-color: #fff;
    width: 80px;
    height: 100vh;
    transition: all .6s ease;
    border-radius: 0;
    border: none;
}
.swiper-scroll-track.subpage-swiper-scroll-track {
	display: block;
}
.close-btn-visible {
	left: 0px;
	transition: all .6s ease;
	z-index: 101;
}
.inner-swiper-close-btn:before {
	content: "";
	width: 43px;
	height: 43px;
	background-image: url(../images/arrow-left.png);
	margin-bottom: 15px;
    display: block;
	background-size: cover;
}
/*
.inner-swiper-close-btn:after {
	content: "Back";
	font-weight: 700;
	font-size: 17px;
	line-height: 20px;
}
*/
@media screen and (max-width: 1024px) {
	.swiper-close-btn {
		width: 80px;
        height: 80px;
        bottom: 120px;
        top: unset;
        border-radius: 50%;
		padding: 0px;
		left: unset;
		right: -200px;
	}
	.swiper-close-btn.close-btn-visible {
		right: 20px;
	}
	.inner-swiper-close-btn {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.inner-swiper-close-btn:before {
		content: "";
		width: 100%;
		height: 100%;
		background-image: url(../images/arrow-left-blue1.png);
		margin-bottom: 0;
		display: block;
		background-size: cover;
	}
	.swiper-scroll-track {
        height: calc(100vh - 95px);
		top: calc(50% - 48px);
		width: 3px;
    }
	.scroll-track {
		width: 3px;
	}
	.scroll-indicator,
	.swiper-scroll-indicator {
		width: 6px;
	}
}
@media screen and (max-width: 475px) {
	.swiper-close-btn.close-btn-visible {
        right: 10px;
        bottom: 82px;
		width: 46px;
        height: 46px;
    }
	.main-navigation.toggled ul {
		width: 100%;
	}
	.overlay-active {
		display: none;
	}
}
.site-branding {
	opacity: 1;
	transition: .6s ease all;
}
.hide-site-branding {
	opacity: 0;
	transition: .6s ease all;
	display: none;
}
@media screen and (max-width: 768px) {
	.hide-site-branding {
		opacity: 1;
		display: block;
	}
	.main-navigation ul:before {
		width: 113px;
		height: 35px;
		top: 18px;
		left: 30px;
	}
}
/* Loader stil */
#page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease-out;
}
#page-loader.hidden {
	opacity: 0;
	pointer-events: none;
}
.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top: 5px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
a {
	text-decoration: none;
}
@media (min-width: 1720px) {
	.container {
		max-width: 1680px;
	}
}
@media (min-width: 1680px) {
	.container {
		max-width: 1500px;
	}
}


/* hp global */
.caption {
	position: absolute;
	padding: 40px;
}
.caption h2 {
	font-weight: 700;
	font-size: 60px;
    line-height: 70px;
	color: #fff;
	margin-bottom: 40px;
	letter-spacing: -1.2px;
}
.caption p, .caption ul {
	font-weight: 300;
	font-size: 20px;
    line-height: 1.6em;
	color: #fff;
}
.cta-button {
	padding: 18px 36px;
	font-size: 16px;
	line-height: 16px;
	border-radius: 4px;
}
.cta-btns-holder {
	display: flex;
}
/* header responsive */
@media (min-width: 1400px) {
	.container {
		max-width: unset;
	}
}
@media (min-width: 1680px) {
	.container {
		max-width: 1550px;
	}
}
@media only screen and (max-width: 1550px) {
	.container {
		max-width: calc(100% - 20px);
	}
	.site-header {
		padding: 30px 40px 10px 40px;
	}
}
@media only screen and (max-width: 768px) {
	.site-header {
        padding: 20px 30px 10px 15px;
    }
	.main-navigation .all-categories {
		padding-right: 20px;
		margin-right: 20px;
	}
	.site-branding {
		width: 113px;
	}
}
/* hp section 1 */
.hp-section-1 .caption {
	top: 50%;
	transform: translateY(-50%);
	width: 740px;
}
.hp-section-1 .caption .cta-btns-holder {
	margin-top: 40px;
	display: flex;
    gap: 40px;
}
.section-container {
	height: 100%;
	position: relative;
}
.hp-section-1 a.cta-button {
	border: 2px solid var(--blue);
	color: #fff;
}
.hp-section-1 a.cta-button:hover {
	border: 2px solid #fff;
	color: var(--blue);
}
.client-logos-wrapper {
	position: absolute;
	bottom: 100px;
	display: flex;
	gap: 40px;
	align-items: center;
}
.mouse-icon-holder {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
	z-index: 1;
}
.inner-mouse-icon-holder {
	position: relative;
}
@keyframes opacityAnim {
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.inner-mouse-icon-holder:after {
	content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 9;
    background-image: url(../images/mouse-scroll.webp);
    animation: opacityAnim 2s infinite;
}

/* hp section 2 */
.hp-section-2 .caption {
	width: 600px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -72%);
	text-align: center;
}
.hp-section-2 .caption .cta-button {
	background-color: #fff;
	color: #000;
}
.hp-section-2 .caption .cta-button:hover {
	background-color: #fff;
	color: var(--blue);
}
.hp-section-2 .cta-btns-holder {
	display: flex;
	justify-content: center;
}
.flyin-layer {
    position: absolute;
    top: 0px;
    width: 100%;
	opacity: 0;
	transform: translateX(-40%);
}
.flyin-layer.flyin-layer-n1 {
	transition: all 0.35s ease;
}
.flyin-layer.flyin-layer-n2 {
	transition: all 0.7s ease;
}
.flying-in {
	opacity: 1;
	transform: translateX(0);
}
.flyin-img, .main-bg-img {
    max-width: 120%;
    min-height: 100vh;
}

/* hp section 3 */
.approaches-wrapper {
    position: absolute;
    bottom: 0;
    height: 100vh;
    display: flex;
    align-items: end;
    width: 50%;
}
.single-approach {
    width: 20%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
    flex-direction: column;
    margin-top: auto;
    justify-content: end;
	color: #fff;
}
.single-approach:visited,
.single-approach:hover,
.single-approach:focus {
	color: #fff;
}
.single-approach:first-child {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #FC9400 100%);
}
.single-approach:nth-child(2) {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #D89332 100%);
}
.single-approach:nth-child(3) {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #314B5F 100%);
}
.single-approach:nth-child(4) {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #5F98B4 100%);
}
.single-approach:last-child {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #3BA3D6 100%);
}
.single-approach {
	opacity: 0;
	transform: translateY(25%);
	transition: all .8s ease;
}
.single-approach.flying-in {
	opacity: 1;
	transform: translateY(0);
	transition: all .8s ease;
}
.inner-single-approach {
	display: flex;
	flex-direction: column;	
	align-items: center;
	min-height: 220px;
}
.single-approach .approach-icon-holder {
	width: 112px;
	height: 112px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 36px;
	background-color: var(--blue);
	border-radius: 100%;
	border: 3px solid #fff;
}
.single-approach .approach-icon-holder img {
	max-width: 50%;
}
.single-approach:nth-child(4) .approach-icon-holder img {
	filter: brightness(0) invert(1);
}
.single-approach p {
	margin: 0;
	text-align: center;
	padding: 0 40px;
}
.hp-section-3 .caption {
    left: calc(50% + 200px);
    top: 50%;
    transform: translateY(-50%);
}
.hp-section-3 .cta-button {
	border: 2px solid var(--blue);
	color: #fff;
}
.hp-section-3 .cta-button:hover {
	border: 2px solid #fff;
	color: var(--blue);
}

/* hp section 4 */
.hp-section-4 .caption {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
	width: 600px;
}
.hp-section-4 .caption .cta-button {
	color: #fff;
	border: 2px solid #fff;
}
.hp-section-4 .caption .cta-button:hover {
	color: var(--blue);
}
.hp-section-4 .caption .cta-btns-holder {
	margin-top: 40px;
	display: flex;
    gap: 40px;
}

/* hp section 5 */
.hp-section-5 .flyin-layer-rel {
	opacity: 0;
    width: 500px;
    right: 60%;
    transform: none;
	top: 0;
}
.hp-section-5 .flyin-layer-rel.flying-in-as-bg {
	transform: none;
    right: 0;
    opacity: 1;
    width: auto;
    height: 84%;
}
.hp-section-5 .flyin-layer-rel .flyin-bg-img {
	max-width: unset;
    height: 100%;
}
.hp-section-5 .caption {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
	width: 600px;
}
.hp-section-5 .caption .cta-button {
	color: #fff;
	border: 2px solid var(--blue);
}
.hp-section-5 .caption .cta-button:hover {
	color: var(--blue);
	border: 2px solid #fff;
}
.hp-section-5 .caption .cta-btns-holder {
	margin-top: 40px;
	display: flex;
    gap: 40px;
}

/* hp section 6 */
.location-list-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
	width: 100%;
	justify-content: space-around;
}
.location-list-wrapper.location-list-wrapper-desk {
	flex-wrap: wrap;
}
.inner-location-list-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.single-location {
	width: 30%;
	padding: 40px;
	color: #fff;
	display: flex;
    flex-direction: column;
}
.map-img {
	margin-bottom: 20px;
}
.single-location h2 {
	font-weight: 700;
    font-size: 3vw;
    line-height: 3.4vw;
    color: #fff;
    margin-bottom: 40px;
}
.single-location p {
	font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
	margin-bottom: 0px;
}
.single-location .cta-btns-holder {
	margin-top: auto;
	gap: 40px;
}
.single-location .cta-button {
    color: #fff;
    border: 2px solid var(--blue);
}
.social-wrapper {
	position: absolute;
    bottom: 40px;
    display: flex;
    gap: 36px;
    align-items: center;
	justify-content: center;
	width: 100%;
}
.social-icon {
	width: 32px;
}
.cta-btns-holder.locations-cta-btns .cta-button {
	color: #fff;
    border: 2px solid var(--blue);
	margin-bottom: 0px;
	font-size: 28px;
    padding: 28px 44px;
}
.cta-btns-holder.locations-cta-btns .cta-button:hover {
	color: var(--blue);
    border: 2px solid #fff;
}

/* hp section 7 */
.hp-section-7 .caption {
	left: 0;
    top: 50%;
    transform: translateY(-50%);
	width: 600px;
}
.hp-section-7 .contact-form-holder {
	position: absolute;
	right: 0;
    top: 50%;
    transform: translateY(-50%);
	width: 750px;
	padding: 40px;
}
.hp-section-7 .contact-form-holder .wpcf7-form {	
	display: flex;
	flex-wrap: wrap;
}
.hp-section-7 .wpcf7-form .left-col {
	width: 50%;
	padding-right: 20px;
}
.hp-section-7 .wpcf7-form .right-col {
	width: 50%;
	padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
}
.hp-section-7 .wpcf7-form .right-col p {
	height: calc(100% - 35px);
}
.hp-section-7 .wpcf7-form .submit-form-holder {
	margin-top: 40px;
    width: calc(50% - 20px);
}
.hp-section-7 .wpcf7-form .left-col input,
.hp-section-7 .wpcf7-form .right-col textarea {
	max-width: 100%;
	border: 2px solid #3BA3D6;
	border-radius: 4px;
	font-size: 26px;
	line-height: 30px;
	color: #fff;
	background: none;
	padding: 16px 20px;
	outline: none!important;
}
.hp-section-7 .wpcf7-form .left-col input {
	height: 70px;
}
.hp-section-7 .wpcf7-form .right-col textarea {
	height: 100%;
}
.hp-section-7 .wpcf7-form p {
	margin-bottom: 0px;
}
.single-input-holder {
	margin-bottom: 22px;
}
.single-input-holder:last-child {
	margin-bottom: 0px;
}
.single-input-holder label {
	color: #fff;
	font-size: 18px;
	line-height: 35px;
}
.hp-section-7 .wpcf7-form .wpcf7-submit {
	padding: 36px;
	background-color: var(--blue);
	color: #fff;
	border-radius: 4px;
	font-size: 26px;
	line-height: 30px;
	width: 100%;
    border: none;
}
.hp-section-7 .wpcf7-form .wpcf7-submit:hover {
	color: var(--blue);
	background-color: #fff;
}
/* hp responsive */
@media only screen and (max-width: 1680px) {
	.contact-form-section .caption,
	.contact-form-section .contact-form-holder	{
		width: 50%;
	}
}
@media only screen and (max-width: 1680px) {
	.container {
		max-width: 1500px;
	}
	.single-approach .approach-icon-holder {
		width: 90px;
		height: 90px;
	}
	.single-approach p {
		padding: 0 15px;
	}
	.hp-section-3 .caption {
		left: calc(50% + 100px);
		top: 50%;
		transform: translateY(-50%);
	}
	.client-logos-wrapper {
		justify-content: center;
		width: 100%;
	}
	.single-logo .logo-icon {
		max-width: 100px;
	}
	.single-section.hp-section-4,
	.single-section.hp-section-5,
	.single-section.hp-section-6 {
		background-position-x: right;
	}
	.caption h2 {
		font-size: 50px;
		line-height: 60px;
	}
	.caption p, .caption ul {
		font-size: 20px;
		line-height: 1.4em;
	}
	.cta-btns-holder.locations-cta-btns .cta-button {
		font-size: 22px;
		padding: 24px 44px;
	}
}
@media only screen and (max-width: 1440px) {
	.caption {
		padding: 40px;
	}
	.approaches-wrapper {
		width: 56%;
	}
	.hp-section-3 .caption {
		left: unset;
		right: 30px;
		width: 40%;
	}
	.hp-section-6 .single-location .cta-btns-holder {
		gap: 0;
		flex-wrap: wrap;
	}
	.hp-section-6 .cta-button {
		width: 100%;
		margin-bottom: 40px;
        text-align: center;
	}
	.hp-section-7 .caption {
		left: 0;
		top: unset;
		transform: none;
		width: 100%;
		position: relative;
		padding-top: 124px;
		padding-bottom: 20px;
	}
	.hp-section-7 .caption h2 {
		margin-bottom: 18px;
	}
	.hp-section-7 .caption p {
		margin-bottom: 0px;
		font-size: 18px;
	}
	.hp-section-7 .contact-form-holder {
		position: relative;
		right: 0;
		top: unset;
		transform: none;
		width: 100%;
		padding: 0 40px;
	}
	.hp-section-7 .wpcf7-form .left-col input {
		height: 60px;
		font-size: 20px;
		width: 100%;
	}
	.single-input-holder {
		margin-bottom: 15px;
	}
	.hp-section-7 .wpcf7-form .wpcf7-submit {
		padding: 20px 36px;
		font-size: 20px;
		line-height: 20px;
		width: 100%;
		border: none;
	}
	.single-location h2 {
		font-weight: 700;
		font-size: 40px;
		line-height: 46px;
		color: #fff;
		margin-bottom: 12px;
	}
	.single-location p {
		font-size: 18px;
		line-height: 1.4em;
	}
	.mouse-icon-holder {
		bottom: 16px;
	}
	.cta-btns-holder.locations-cta-btns .cta-button {
		font-size: 20px;
		padding: 20px 36px;
	}
}
@media screen and (max-width: 1280px) and (max-height: 1024px) {
	.hp-section-2 .caption {
		top: 240px;
		transform: translate(-50%, -208px);
	}
	.cta-btns-holder.locations-cta-btns .cta-button {
		font-size: 18px;
		padding: 20px 30px;
	}
}
@media only screen and (max-width: 1280px) {
	.approaches-wrapper {
		width: 60%;
	}
	.hp-section-3 .caption {
		width: 35%;
	}
	.flyin-img, .main-bg-img {
		max-width: 160%;
		min-height: 100vh;
		min-width: 100%;
	}
	.cta-btns-holder.locations-cta-btns .cta-button {
		font-size: 18px;
		padding: 20px 44px;
	}
}
@media only screen and (max-width: 1240px) {
	/* swiper locations mobile */
	.single-section.hp-section-6 .section-container {
		display: flex;
		align-items: center;
	}
	.location-swiper {
        height: auto;
	}
	.location-swiper .location-list-wrapper {
		position: relative;
		top: unset;
		justify-content: unset;
		height: auto;
	}
	.location-swiper .location-list-wrapper .single-location {
		padding: 0px;
		background: none;
		text-align: center;
        align-items: center;
	}
	.single-location h2 {
		font-weight: 700;
		font-size: 60px;
		line-height: 64px;
		color: #fff;
		margin-bottom: 20px;
	}
	.single-location p {
		font-size: 21px;
		line-height: 32px;
		color: #fff;
	}
	.hp-section-6 .cta-button {
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
        border-color: var(--blue);
    }
	.hp-section-6 .cta-button:last-child {
		margin-bottom: 0;
	}
	.location-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		bottom: 10px;
		left: 0px;
		right: 4px;
		width: auto;
		display: flex;
	}
	.location-swiper-pagination .swiper-pagination-bullet {
		height: 15px;
		text-align: center;
		line-height: 20px;
		font-size: 12px;
		color: #000;
		opacity: 1;
		background: transparent;
		width: 33.333%;
		border: 1px solid #fff;
		border-radius: 0;
		position: relative;
	}
	.location-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background-color: #fff;
	}
	.hp-section-6 .swiper-pagination-bullet:before {
		position: absolute;
		content: '';
		top: -22px;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-size: 14px;
		line-height: 14px;
	}
	.hp-section-6 .swiper-pagination-bullet:first-child:before {
		content: 'Dallas';
	}
	.hp-section-6 .swiper-pagination-bullet:nth-child(2):before {
		content: 'California';
	}
	.hp-section-6 .swiper-pagination-bullet:last-child:before {
		content: 'Europe';
	}
}
.location-swiper,
.location-swiper-pagination {
	display: none;
}
@media only screen and (max-width: 1024px) {
	.client-logos-wrapper {
		display: flex;
		flex-wrap: nowrap;
		animation: scroll-logos 10s ease-in-out infinite alternate;
		width: max-content; 
		gap: 20px;
		bottom: 30px;
	}
	.single-logo {
		flex: 0 0 auto;
		width: 100px;
		margin-right: 20px;
	}
	@keyframes scroll-logos {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-25%);
		}
	}
	.mouse-icon-holder {
		display: none;
	}
	.single-section.hp-section-3 .section-container {
		display: flex;
		flex-direction: column;
		padding-top: 70px;
	}
	.hp-section-2 .caption {
		max-width: 90%;
		top: 200px;
		left: 50%;
		transform: translate(-50%, 0);
	}
	.hp-section-3 .caption {
        width: 100%;
        position: relative;
        right: unset;
        top: unset;
        transform: none;
		padding: 15px 30px;
    }
	.approaches-wrapper {
        width: 100%;
        position: relative;
		flex-direction: column-reverse;
		height: auto;
		margin-top: auto;
    }
	.hp-section-3 .cta-button {
		background-color: var(--blue);
	}
	.single-approach {
		width: 100%;
		flex-direction: row;
		padding-bottom: 0;
		height: 90px;
		margin-top: 0;
		padding-top: 20px;
        padding-bottom: 20px;
	}
	.inner-single-approach {
		flex-direction: row;
		min-height: unset;
	}
	.single-approach .approach-icon-holder {
        width: 52px;
        height: 52px;
		margin-bottom: 0px;
		background-color: #fff;
    }
	.single-approach:nth-child(4) .approach-icon-holder img {
		filter: brightness(0) invert(0);
	}
	.approach-icon {
		width: 24px;
	}
	.single-approach p {
        padding: 0 20px;
		font-size: 14px;
    }
	.single-approach:first-child {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #FC9400 150%);
	}
	.single-approach:nth-child(2) {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #D89332 150%);
	}
	.single-approach:nth-child(3) {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #314B5F 150%);
	}
	.single-approach:nth-child(4) {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #5F98B4 150%);
	}
	.single-approach:last-child {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #3BA3D6 150%);
	}
	.single-approach {
		opacity: 0;
		transform: translateX(20%);
		transition: all .8s ease;
	}
	.single-approach.flying-in {
		opacity: 1;
		transform: translateX(0);
		transition: all .8s ease;
	}
	.single-section.hp-section-4 {
		background-position-x: 80%;
	}
	.hp-section-4 .caption {
		left: 0;
		top: unset;
		transform: none;
		bottom: 60px;
	}
	.hp-section-5 .caption {
		left: 0;
		top: unset;
		transform: none;
		bottom: 60px;
	}
	.hide-on-mobile {
		display: none;
	}
	.location-swiper {
		display: block;
	}
	.location-swiper-pagination {
		display: flex;
	}
	.social-wrapper {
		bottom: 80px;
	}
	.location-swiper .cta-btns-holder {
		margin-top: 30px;
		justify-content: center;
	}
	.hp-section-6 .location-swiper .cta-button {
        width: auto;
    }
}
/***** iPad Pro *****/
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.single-section.hp-section-3 .section-container {
		padding-top: 300px;
	}
	.flyin-img, .main-bg-img {
        max-width: unset;
        min-height: 100vh;
        min-width: 100%;
        transform: translateX(-10%);
    }
	.single-approach .approach-icon-holder {
        width: 70px;
        height: 70px;
        margin-bottom: 0px;
    }
	.single-approach p {
        font-size: 16px;
    }
	.hp-section-5 .flyin-layer-rel.flying-in-as-bg {
		height: 58%;
	}
}
/* iPad Pro 11" - Landscape */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: landscape) {
	
}
/* iPad Pro 12.9" - Portrait */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
	.single-section.hp-section-3 .section-container {
		padding-top: 170px;
	}
	.flyin-img, .main-bg-img {
        max-width: unset;
        min-height: 100vh;
        min-width: 100%;
        transform: translateX(-10%);
    }
	.single-approach .approach-icon-holder {
        width: 70px;
        height: 70px;
        margin-bottom: 0px;
    }
	.single-approach p {
        font-size: 16px;
    }
	.hp-section-5 .flyin-layer-rel.flying-in-as-bg {
		height: 58%;
	}
}
/* iPad Pro 12.9" - Landscape */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
	
}
/***** iPad Air ******/
/* iPad Air - Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 834px) and (orientation: portrait) {
	.single-section.hp-section-3 .section-container {
		padding-top: 170px;
	}
	.flyin-img, .main-bg-img {
        max-width: unset;
        min-height: 100vh;
        min-width: 100%;
        transform: translateX(-13%);
    }
	.hp-section-2 .caption {
        max-width: 90%;
        top: 140px;
        left: 50%;
        transform: translate(-50%, 0);
    }
	.single-approach .approach-icon-holder {
        width: 70px;
        height: 70px;
        margin-bottom: 0px;
    }
	.single-approach p {
        font-size: 16px;
    }
	.hp-section-5 .flyin-layer-rel.flying-in-as-bg {
		height: 58%;
	}
}
/* iPad Air - Landscape */
@media only screen and (min-device-width: 820px) and (max-device-width: 1112px) and (orientation: landscape) {
	
}
/***** iPad Mini *****/
/* iPad Mini - Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {
	.single-section.hp-section-3 .section-container {
		padding-top: 170px;
	}
	.approaches-wrapper {
		height: auto;
		margin-top: auto;
	}
	.flyin-img, .main-bg-img {
        max-width: unset;
        min-height: 100vh;
        min-width: 100%;
        transform: translateX(-12%);
    }
	.hp-section-2 .caption {
		top: 100px;
	}
	.single-approach .approach-icon-holder {
        width: 70px;
        height: 70px;
        margin-bottom: 0px;
    }
	.single-approach p {
        font-size: 16px;
    }
	.hp-section-5 .flyin-layer-rel.flying-in-as-bg {
		height: 58%;
	}
}

/* iPad Mini - Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: landscape) {

}

@media only screen and (max-width: 768px) {
	.hp-section-3 .caption {
		padding: 30px 15px;
	}
	.caption {
        padding: 30px 15px;
        max-width: 100%;
		left: 0;
    }
	.caption h2 {
        font-size: 40px;
        line-height: 46px;
    }
	@keyframes scroll-logos {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-50%);
		}
	}
	.single-approach {
		height: unset;
		padding-top: 10px;
        padding-bottom: 10px;
	}
	.single-approach p {
        padding: 0 20px;
		font-size: 13px;
    }
	.hp-section-7 .caption {
        left: 0;
        transform: none;
        width: 600px;
        max-width: 100%;
        padding: 86px 0px 0px;
    }
	.hp-section-7 .contact-form-holder {
        padding: 0;
    }
	.hp-section-7 .wpcf7-form .left-col {
		width: 100%;
		padding-right: 0;
	}
	.hp-section-7 .wpcf7-form .right-col {
		width: 100%;
		padding-left: 0;
		margin-top: 15px;
		display: flex;
	}
	.hp-section-7 .wpcf7-form .submit-form-holder {
		margin-top: 25px;
		width: 100%;
		max-width: 350px;
	}
	.hp-section-7 .wpcf7-form .left-col input, .hp-section-7 .wpcf7-form .right-col textarea {
		font-size: 20px;
		line-height: 26px;
		padding: 14px 16px;
	}
	.single-input-holder {
        margin-bottom: 10px;
		width: 100%;
    }
	.hp-section-7 .caption p {
		display: none;
	}
	.cta-btns-holder.locations-cta-btns {
		bottom: 160px;
	}
}
@media only screen and (max-width: 525px) {
	.caption {
		left: 0;
    }
	@keyframes scroll-logos {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-75%);
		}
	}
	.hp-section-1 .caption .cta-btns-holder {
		gap: 0;
		flex-wrap: wrap;
	}
	.hp-section-1 a.cta-button {
		border: 2px solid var(--blue);
		color: #fff;
		margin-bottom: 30px;
		background-color: var(--blue);
		text-align: center;
		width: 100%;
	}
	.hp-section-1 a.cta-button:last-child {
		background: none;
	}
	.hp-section-2 .caption {
		width: 600px;
		top: 94px;
		height: calc(100vh - 155px);
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		display: flex;
		flex-direction: column;
	}
	.hp-section-2 .cta-btns-holder {
		display: flex;
		justify-content: center;
		margin-top: auto;
	}
	.hp-section-3 .cta-button {
		width: 100%;
		text-align: center;
	}
	.hp-section-4 .caption .cta-btns-holder {
		margin-top: 40px;
		flex-wrap: wrap;
		gap: 0;
		padding: 0px;
	}
	.hp-section-4 .caption .cta-button {
		color: #fff;
		border: none;
		background-color: var(--blue);
		width: 100%;
		text-align: center;
	}
	.hp-section-4 .caption .cta-button:first-child {
		margin-bottom: 30px;
	}
	.hp-section-5 .caption .cta-button {
		border: none;
		width: 100%;
		background-color: var(--blue);
		text-align: center;
	}
}
@media only screen and (max-width: 475px) {
	.location-swiper .location-list-wrapper .single-location {
        text-align: center;
        align-items: center;
    }
	.map-img-holder {
		margin-right: auto;
		margin-left: auto;
	}
	.map-img {
		margin-bottom: 12px;
	}
	.hp-section-2 .caption .cta-button {
		width: 100%;
	}
	.single-location h2 {
		margin-bottom: 12px;
		font-size: 36px;
        line-height: 42px;
	}
	.single-location p {
        font-size: 16px;
        line-height: 24px;
    }
	.flyin-layer.flyin-layer-n1 {
		transition: all 0.35s ease;
		transform: translateX(-15%);
	}
	.flyin-layer.flyin-layer-n2 {
		transition: all 0.7s ease;
		transform: translateX(-15%);
	}
	.flyin-layer.flyin-layer-n1.flying-in,
	.flyin-layer.flyin-layer-n2.flying-in {
		opacity: 1;
		transform: translateX(0);
	}
	.hp-section-5 .flyin-layer-rel {
		opacity: 0;
		width: 100%;
		right: 0%;
		transform: none;
		top: 0;
	}
	.hp-section-5 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(0vw, -10%);
		right: 0;
		opacity: 1;
		width: 100%;
		height: auto;
	}
	.hp-section-6 .cta-button {
		margin-bottom: 20px;
	}
	.social-wrapper {
		bottom: 80px;
	}
	.hp-section-7 .wpcf7-form .submit-form-holder {
		max-width: 100%;
	}
	.hp-section-6 .single-location .cta-btns-holder {
		width: 100%;
	}
}
@media only screen and (max-width: 425px) {
	.caption h2 {
        margin-bottom: 20px;
    }
	.caption p, .caption ul {
        font-size: 18px;
        line-height: 1.4em;
        margin-bottom: 15px;
    }
	.hp-section-1 .caption .cta-btns-holder {
		margin-top: 20px;
		gap: 0;
		flex-wrap: wrap;
	}
	.hp-section-1 a.cta-button {
		border: 2px solid var(--blue);
		color: #fff;
	}
	.single-approach p {
        padding: 0 20px;
		font-size: 12px;
    }
}

/* methodology (Technology) section 1 */
.methodology-section-1 .caption {
	position: absolute;
	width: 1240px;
	max-width: calc(100% - 40px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center
}
.title-eyebrow {
	font-weight: 700;
    font-size: 17px;
    line-height: 1.1em;
    margin-bottom: 5px;
}
.methodology-section-1 .section-title {
	font-weight: 700;
	font-size: 90px;
	line-height: 1.15em;
	color: #fff;
	margin: 0 0 40px 0;
}
.methodology-section-1 .section-intro {
	font-weight: 400;
	font-size: 24px;
	line-height: 36px;
	padding-left: 100px;
    padding-right: 100px;
	margin: 0;
}

/* methodology (Technology) section 2 */
.methodology-section-2 {
	background-color: var(--blue);
	/* padding-top: 14vh; */
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.methodology-section-2 > .caption {
	position: relative;
	color: #fff;
	text-align: center;
	width: 620px;
    margin: -40px auto 20px auto;
	max-width: 100%;
    padding-left: 15px;
    padding-right: 25px;
}
.methodology-section-2 .caption .section-title {
	font-weight: 700;
	font-size: 60px;
	line-height: 64px;
	letter-spacing: -1.2px;
	margin: 0 0 40px 0px;
}
.methodology-section-2 .caption .title-eyebrow {
	font-weight: 700;
	font-size: 17px;
	line-height: 1.1em;
	margin-bottom: 5px;
}
.methodology-section-2 .caption .section-intro {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5em;
	margin-bottom: 0;
}
.toolbox-list-wrapper {
	display: flex;
	padding: 0 100px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.single-toolbox {
    padding: 0 1.6vw;
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
	width: 16.6666%;
}
.single-toolbox img {
	width: 164px;
	margin-bottom: 36px;
    background-color: var(--blue);
    border-radius: 50%;
}
.single-toolbox p {
	text-align: center;
	font-size: 20px;
	line-height: 1.2em;
	color: #fff;
}
.subpage-activator {
	position: absolute;
	right: 38px;
    bottom: 38px;
	cursor: pointer;
}
.subpage-activator img {
	width: 96px;
}
.full-height {
	height: 100vh;
}
.half-height {
	height: 50vh;
}
.just-swiper {
	position: absolute;
	right: 20px;
	bottom: 100px;
	width: 600px;
}

/* swiper subsections */
.subpage-swiper {
    position: absolute;
    right: -100vw;
    width: 100vw;
    height: 100%;
    background-color: pink;
    top: 0px;
    transition: all 1s ease;
    z-index: 100; 
    overflow: hidden;
}
.subpage-main-container {
	height: 100vh;
}
.page-subpage-swiper {
	height: 100%;
}
.fly-in {
    transition: all 1s ease;
    right: 0px;
}
.subpage-swiper .swiper {
    width: 100%;
    height: 100%;
}
.subpage-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 0px;
    box-sizing: border-box;
}
.inner-swiper-slide {
    width: 100%;
    height: 100%;
	background-repeat: no-repeat;
}
.subsection-number-1 .inner-swiper-slide {
	background-position-x: 80%;
    background-position-y: center;
	background-size: auto 90%;
}
.subsection-number-2 .inner-swiper-slide {
	background-position-x: calc(100% - 68px);
    background-position-y: center;
    background-size: auto 65%;
}
.subsection-number-3 .inner-swiper-slide {
	background-position-x: right;
}
.subsection-number-4 .inner-swiper-slide {
	background-position-x: right;
    background-position-y: bottom;
    background-size: auto 92%;
}
.subsection-number-5 .inner-swiper-slide {
	background-position-x: 80%;
    background-position-y: center;
}
.subsection-number-6 .inner-swiper-slide {
	background-position-x: 95%;
    background-position-y: center;
    background-size: auto 72%;
}
.parent-section-elements {
	display: flex;
    justify-content: start;
    margin-top: 60px;
    margin-left: 160px;
    width: 600px;
    flex-direction: column;
    align-items: start;
	display: none;
}
.parent-title-eyebrow {
	font-weight: 700;
    font-size: 17px;
    line-height: 1.1em;
    margin-bottom: 5px;
}
.parent-section-title {
	font-weight: 700;
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -1.2px;
    margin: 0px 0px 40px;
}
.parent-section-elements {
	color: #fff;
}
.caption.subsection-caption {
	left: 160px;
    top: 50%;
    transform: translateY(-50%);
	width: 600px;
	text-align: left;
	padding: 0px;
}
.caption.subsection-caption h2 {
	font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -1.2px;
    margin: 0px 0px 40px;
}
.caption.subsection-caption p {
	margin-bottom: 40px;
}
.caption.subsection-caption ul {
	margin: 0;
	padding: 0 0 0 30px;
	color: #fff;
	list-style: none;
}
.caption.subsection-caption ul li {
	margin-bottom: 5px;
	position: relative;
    padding-left: 15px;
}
.caption.subsection-caption ul li:before {
    content: '•';
    position: absolute;
    left: 0;
}
.subsections-bullet-nav {
    position: absolute;
    right: 100px;
    bottom: 60px;
}
.subpage-swiper .swiper-pagination {
    bottom: 50px;
    right: 50%;
	display: block;
}
.custom-pagination {
    position: absolute;
    right: 70px;
    z-index: 99;
    display: flex;
    gap: 40px;
	bottom: 15px;
}
.custom-pagination-image-wrapper {
    display: inline-block;
}
.custom-pagination-text {
    color: #fff;
    max-width: 100px;
	font-size: 14px;
	line-height: 1.4em;
}
 /* png to white brightness(0) invert(1) */
 /* png to black brightness(0) invert(0) */
.custom-pagination-image {
	filter: brightness(0) invert(1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	max-height: 36px;
}
.custom-pagination-bullet {
    text-align: center;
    cursor: pointer;
}
.custom-pagination-image-wrapper {
    display: inline-block;
    width: 90px;
    height: 90px;
    position: relative;
    margin-bottom: 10px;
    border: 4px solid #fff;
    border-radius: 50%;
}
.custom-pagination-bullet-active .custom-pagination-image-wrapper {
	background-color: #fff;
}
@media only screen and (min-width: 1025px) {
	.toolbox-swiper .custom-pagination.slide-3-is-active .custom-pagination-image {
		filter: brightness(0) invert(0);
	}
	/* png to blue */
	.toolbox-swiper .custom-pagination .custom-pagination-bullet-active .custom-pagination-image {
		filter: invert(53%) sepia(24%) saturate(3291%) hue-rotate(174deg) brightness(92%) contrast(94%);
	}
	.toolbox-swiper .custom-pagination.slide-3-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
		background-color: #000;
	}
	.toolbox-swiper .custom-pagination.slide-3-is-active .custom-pagination-image-wrapper {
		border: 4px solid #000;
	}
	.toolbox-swiper .custom-pagination.slide-3-is-active .custom-pagination-text {
		color: #000;
	}
}
.toolbox-swiper .subsection-number-3 .caption.subsection-caption h2,
.toolbox-swiper .subsection-number-3 .caption.subsection-caption p,
.toolbox-swiper .subsection-number-3 .caption.subsection-caption ul {
	color: var(--gray);
}
.toolbox-swiper .subsection-number-3 .parent-section-elements {
    color: var(--gray);
}
/* methodology (Technology)  section 3 */
.methodology-section-3 {
	background-color: var(--blue);
}
.methodology-section-3 .caption {
	width: 600px;
    top: 50%;
    transform: translateY(-50%);
}
.methodology-section-3 .caption .title-eyebrow {
    line-height: 1.1em;
    margin-bottom: 5px;
	color: #fff;
}
.methodology-section-3 .sliding-image-holder {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 45%;
	overflow: hidden;
}
.inner-sliding-image {
	position: relative;
	overflow: hidden;
}
.methodology-section-3 .sliding-image {
	max-height: 69vh;
	max-width: unset;
}
@keyframes slideLeftRight {
    0% { left: 0; }
    50% { left: -75%; }
    100% { left: 0; }
}
.inner-sliding-image.slide-now .sliding-image {
	position: relative;
    animation: slideLeftRight 16s infinite linear;
}

/* methodology (Technology)  section 4 */
.methodology-section-4 .caption {
	width: 710px;
}
.methodology-section-4 .title-eyebrow {
	color: #fff;
}
/* toolbox - subpage */
.subpage-swiper.fixed-swiper {
	right: 0px;
}
/*
.this-is-child-page .site-header .site-branding {
	opacity: 0;
	transition: opacity .2s ease;
	display: none;
}
*/
/* Technology responsive */
@media only screen and (max-width: 1680px) {
	.methodology-section-1 .section-title,
	.parent-section-title,
	.caption.subsection-caption h2,
	.methodology-section-2 .caption .section-title {
		font-size: 50px;
        line-height: 60px;
	}
	.toolbox-swiper .subsection-number-1 .inner-swiper-slide {
		background-size: auto 76%;
	}
	.toolbox-swiper .subsection-number-3 .inner-swiper-slide ,
	.toolbox-swiper .subsection-number-4 .inner-swiper-slide ,
	.toolbox-swiper .subsection-number-5 .inner-swiper-slide  {
		background-size: auto 68%;
	}
	.toolbox-swiper .subsection-number-6 .inner-swiper-slide  {
		background-size: auto 60%;
	}
	.caption.subsection-caption {
		left: 120px;
	}
	.parent-section-elements {
		margin-left: 120px;
	}
	.contact-form-section .caption,
	.contact-form-section .contact-form-holder {
        width: 50%;
		padding-top: 120px;
    }
	.contact-form-section .section-container {
		display: flex;
	}
}
@media only screen and (max-width: 1440px) {
	.single-toolbox img {
		width: 115px;
	}
	.subsection-number-1 .inner-swiper-slide {
		background-position-x: 100%;
        background-position-y: 50%;
        background-size: auto 80%;
	}
	.methodology-section-3 .sliding-image-holder {
		width: 44%;
	}
	.methodology-section-3 .sliding-image {
		max-height: 400px;
	}
	.subpage-activator {
		right: 35px;
		bottom: 35px;
	}
	.subsection-number-3 .inner-swiper-slide { 
		background-size: auto 68%;
	}
	.subsection-number-4 .inner-swiper-slide {
		background-size: auto 78%;
	}
	.subsection-number-5 .inner-swiper-slide {
		background-size: auto 60%;
	}
	.subsection-number-6 .inner-swiper-slide {
		background-size: auto 58%;
	}
}

@media screen and (max-width: 1280px) and (max-height: 1024px) {
	.contact-form-section .section-container {
        flex-direction: column;
		padding-left: 30px;
        padding-right: 30px;
		padding-top: 88px;
    }
	.contact-form-section .section-container .caption h2 {
        font-size: 28px;
        line-height: 1.2em;
        margin-bottom: 10px;
    }
	.contact-form-section .caption {
		width: 100%;
		padding-top: 30px;
	}
	.contact-form-section .contact-form-holder {
		padding-top: 0px;
		width: 100%;
	}
	.subsection-number-2 .toolbox-swiper .inner-swiper-slide {
		background-position-x: calc(100% - 68px);
		background-position-y: center;
		background-size: auto 42%;
	}
	.single-technology-section.methodology-section-2 .subsection-number-3 .inner-swiper-slide, .single-technology-section.methodology-section-2 .subsection-number-4 .inner-swiper-slide, .single-technology-section.methodology-section-2 .subsection-number-5 .inner-swiper-slide {
        background-size: auto 42%;
    }
	.single-technology-section.methodology-section-2 .subsection-number-4 .inner-swiper-slide {
		background-position-y: center;
	}
	.single-technology-section.methodology-section-2 .subsection-number-5 .inner-swiper-slide {
		background-position-x: right;
	}
	.single-technology-section.methodology-section-2 .subsection-number-6 .inner-swiper-slide {
        background-size: auto 42%;
    }
}
@media only screen and (max-width: 1240px) {
	.parent-title-eyebrow {
		font-size: 15px;
	}
	.parent-section-title {
		font-weight: 700;
		font-size: 50px;
		line-height: 56px;
	}
	.caption.subsection-caption h2 {
		font-size: 50px;
		line-height: 56px;
		margin-bottom: 20px;
		margin: 0px 0px 20px;
	}
	.caption.subsection-caption p,
	.caption.subsection-caption ul {
		margin-bottom: 16px;
		font-size: 18px;
	}
	.methodology-section-3 .sliding-image-holder {
        width: 40%;
    }
	.methodology-section-3 .caption {
		width: 50%;
	}
	.methodology-section-3 .sliding-image {
        max-height: 372px;
    }
}
.caption p.mobile-parent-title {
	margin-bottom: 4px;
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.toolbox-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: auto 60%;
    }
	.toolbox-swiper .subsection-number-3 .inner-swiper-slide {
		background-size: auto 50%;
	}
	.toolbox-swiper .subsection-number-4 .inner-swiper-slide {
		background-size: auto 45%;
	}
	.toolbox-swiper .subsection-number-5 .inner-swiper-slide {
		background-size: auto 45%;
	}
	.toolbox-swiper .subsection-number-6 .inner-swiper-slide {
        background-size: auto 40%;
    }
}
@media only screen and (max-width: 1024px) {
	.this-is-child-page .site-header .site-branding {
		opacity: 1;
	}
	.methodology-section-1 .caption .section-title  {
		font-size: 40px;
		line-height: 48px;
	}
	.toolbox-list-wrapper {
		padding: 0 30px;
		margin-top: 50px;
	}
	.single-toolbox p {
		font-size: 18px;
	}
	.methodology-section-2 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.methodology-section-2 > .caption {
		margin-bottom: 0px;
	}
	.parent-section-elements {
		display: none;
	}
	.caption.subsection-caption .mobile-parent-title {
		margin-bottom: 0px;
		display: block;
	}
	.caption.subsection-caption {
		left: 40px;
		max-width: calc(100% - 40px);
        top: unset;
        bottom: 160px;
        transform: none;
	}
	.subsection-number-1 .inner-swiper-slide {
		background-position-x: right;
        background-position-y: 32%;
        background-size: auto 80%;
    }
	.subsection-number-2 .inner-swiper-slide {
        background-position-x: 100%;
        background-position-y: 12%;
        background-size: auto 55%;
    }
	.subsection-number-3 .inner-swiper-slide {
        background-size: auto 46%;
    }
	.subsection-number-4 .inner-swiper-slide {
        background-size: auto 60%;
        background-position-y: center;
    }
	.subsection-number-5 .inner-swiper-slide {
        background-size: auto 48%;
        background-position-y: 20%;
    }
	.subsection-number-6 .inner-swiper-slide {
        background-size: auto 44%;
        background-position-y: 22%;
    }
	.custom-pagination {
		position: absolute;
		right: 0;
		gap: 10px;
		width: 100%;
		padding: 10px;
		justify-content: space-around;
		background-color: #000;
		bottom: 0px;
	}
	.page-ios .custom-pagination {
		bottom: 40px;
	}
	.page-android .custom-pagination {
		bottom: 100px;
	}
	.custom-pagination-image-wrapper {
		margin-bottom: 0px;
		width: 70px;
		height: 70px;
	}
	.custom-pagination-text {
		display: none;
	}
	.custom-pagination.slide-3-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
		background-color: #fff;
	}
	.custom-pagination.slide-3-is-active .custom-pagination-image {
		filter: brightness(0) invert(1);
	}
	.custom-pagination.slide-3-is-active .custom-pagination-image-wrapper {
		border: 4px solid #ffffff;
	}
	.custom-pagination.slide-3-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
		background-color: #ffffff;
	}
	.custom-pagination .custom-pagination-bullet-active .custom-pagination-image {
		filter: invert(53%) sepia(24%) saturate(3291%) hue-rotate(174deg) brightness(92%) contrast(94%);
	}
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.contact-form-section .section-container {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 70px;
    }
	.contact-form-section .caption, .contact-form-section .contact-form-holder {
        width: 100%;
        padding-top: 120px;
    }
}
/* iPad Air - Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 834px) and (orientation: portrait) {
	.toolbox-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: auto 60%;
    }
	.toolbox-swiper .subsection-number-2 .inner-swiper-slide {
        background-position-x: 100%;
        background-position-y: 12%;
        background-size: auto 55%;
    }
	.toolbox-swiper .subsection-number-3 .inner-swiper-slide {
        background-size: auto 50%;
    }
	.toolbox-swiper .subsection-number-4 .inner-swiper-slide {
        background-size: auto 45%;
    }
	.toolbox-swiper .subsection-number-5 .inner-swiper-slide {
        background-size: auto 45%;
    }
	.toolbox-swiper .subsection-number-6 .inner-swiper-slide {
        background-size: auto 40%;
    }
}

.mobile-label {
	display: none;
}
@media only screen and (max-width: 768px) {
	.single-technology-section .caption {
		width: calc(100% - 40px);
		padding: 30px 15px;
	}
	.caption.subsection-caption h2 {
		font-size: 40px;
		line-height: 46px;
	}
	.methodology-section-1 .caption .section-title  {
		font-size: 40px;
		line-height: 46px;
	}
	.single-technology-section .caption .section-intro {
		font-size: 20px;
		line-height: 28px;
	}
	.methodology-section-1 .section-intro {
		padding-left: 0px;
		padding-right: 0px;
	}
	.methodology-section-2 {
		/* padding-top: 70px; */
	}
	.methodology-section-2 > .caption {
		margin-bottom: 0px;
		padding-top: 0px;
        padding-bottom: 24px;
	}
	.methodology-section-2 .caption .section-title {
		margin: 0 0 10px 0px;
		font-size: 40px;
		line-height: 48px;
	}
	.toolbox-list-wrapper {
        padding: 0 10px;
		margin-top: 12px;
		justify-content: center;
    }
	.single-toolbox {
		padding: 0 10px;
		width: 33.3333%;
		margin-bottom: 30px;
	}
	.single-toolbox img {
		margin-bottom: 14px;
	}
	.single-toolbox p {
        font-size: 14px;
        line-height: 18px;
    }
	.subpage-activator {
        right: 20px;
        bottom: 20px;
		text-align: center;
    }
	.subpage-activator img {
		width: 75px;
	}
	.mobile-label {
		display: block;
		margin-bottom: 3px;
        text-align: center;
        color: #fff;
        font-size: 13px;
	}
	.subsection-number-1 .inner-swiper-slide {
		background-position-x: 200%;
        background-position-y: 0;
        background-size: 88% auto;
    }
	.subsection-number-2 .inner-swiper-slide {
        background-position-x: 100%;
        background-position-y: 7%;
        background-size: 90% auto;
    }
	.subsection-number-3 .inner-swiper-slide {
        background-size: 94% auto;
        background-position-y: 20%;
    }
	.subsection-number-4 .inner-swiper-slide {
        background-size: 104% auto;
        background-position-y: 30%;
    }
	.subsection-number-5 .inner-swiper-slide {
        background-size: 95% auto;
        background-position-y: 20%;
    }
	.subsection-number-6 .inner-swiper-slide {
        background-size: 95% auto;
        background-position-y: 22%;
    }
	.custom-pagination-image-wrapper {
		border: 2px solid #fff;
	}
	.custom-pagination.slide-3-is-active .custom-pagination-image-wrapper {
        border: 2px solid #ffffff;
    }
	.caption.subsection-caption {
		bottom: 130px;
	}
	.single-technology-section.methodology-section-3 .caption {
		width: 100%;
        padding: 30px 20px;
        top: 250px;
        text-align: center;
	}
	.methodology-section-3 .sliding-image-holder {
        width: 100%;
		transform: translateY(-20%);
    }
	.contact-form-section .section-container {
		padding-left: 15px;
        padding-right: 15px;
	}
}
@media only screen and (max-width: 475px) {
	.caption.subsection-caption {
		bottom: 105px;
	}
	.caption.subsection-caption h2,
	.parent-section-title {
		font-size: 38px;
        line-height: 44px;
	}
	.parent-section-elements {
        margin-top: 90px;
        margin-left: 15px;
        max-width: calc(100% - 40px);
    }
	.caption.subsection-caption {
		left: 15px;
	}
	.single-toolbox img {
        width: 60px;
    }
	.custom-pagination-image-wrapper {
		width: 58px;
		height: 58px;
	}
	.custom-pagination-image {
		max-height: 24px;
	}
	.single-technology-section .caption .section-intro {
        font-size: 16px;
        line-height: 20px;
    }
	.methodology-section-2 > .caption {
		margin-top: -30px;
	}
	.subpage-activator img {
        width: 46px;
    }
	.caption.subsection-caption p,
	.caption.subsection-caption ul,
	.caption p, 
	.caption ul	{
		margin-bottom: 8px;
		font-size: 16px;
        line-height: 20px;
	}
	.contact-form-section .caption {
        width: 100%;
        padding: 0px;
    }
	.custom-pagination {
		padding: 8px;
		gap: 6px;
	}
	.custom-pagination-image {
        max-height: 20px;
    }
	.custom-pagination-image-wrapper {
        width: 46px;
        height: 46px;
    }
	.toolbox-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: 97% auto;
    }
	.subsection-number-2 .inner-swiper-slide {
        background-position-x: 100%;
        background-position-y: 10%;
        background-size: 97% auto;
    }
	.single-technology-section.methodology-section-2 .toolbox-swiper .subsection-number-4 .inner-swiper-slide {
        background-position-y: 10vh;
    }
	.single-technology-section.methodology-section-2 .toolbox-swiper .subsection-number-5 {
        background-position-x: right;
    }
	.single-technology-section.methodology-section-2 .subsection-number-6 .inner-swiper-slide {
        background-size: 93% auto;
    }
	.single-technology-section.methodology-section-2 .toolbox-swiper .subsection-number-3 .inner-swiper-slide,
	.single-technology-section.methodology-section-2 .toolbox-swiper .subsection-number-4 .inner-swiper-slide,
	.single-technology-section.methodology-section-2 .toolbox-swiper .subsection-number-5 .inner-swiper-slide,
	.toolbox-subpage .toolbox-swiper .subsection-number-3 .inner-swiper-slide,
	.toolbox-subpage .toolbox-swiper .subsection-number-4 .inner-swiper-slide,
	.toolbox-subpage .toolbox-swiper .subsection-number-5 .inner-swiper-slide,
	.toolbox-subpage .toolbox-swiper .subsection-number-6 .inner-swiper-slide {
        background-size: 95% auto;
    }
	.methodology-section-3 .sliding-image {
		max-height: 240px;
	}
	@keyframes slideLeftRight {
		0% { left: 0; }
		50% { left: -55%; }
		100% { left: 10%; }
	}
	.inner-sliding-image.slide-now .sliding-image {
		animation: slideLeftRight 8s infinite linear;
	}
	.methodology-section-3 .sliding-image-holder {
        width: 100%;
        transform: none;
        top: unset;
        bottom: 20px;
    }
}
/* Methodology page section 1 */
.single-methodology-section-1 {
	background-position: center;
}
.methodology-section-2.single-methodology-section-2  {
	justify-content: unset;
}
.methodology-section-2.single-methodology-section-2 .caption {
	margin: 0px auto;
    padding-top: 100px;
    position: relative;
    max-width: 1200px;
    text-align: center;
    color: #fff;
}
.pain-points-wrapper {
	padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
.swiper-pagination.pp-swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
	top: unset;
    transform: none;
}
.swiper-pagination.pp-swiper-pagination .swiper-pagination-bullet {
	background: transparent;
    border: 1px solid #fff;
}
.swiper-pagination.pp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
    border: 1px solid #fff;
}
.pain-points-wrapper .swiper-slide {
	background: none;
	flex-direction: column;
	justify-content: start;
    align-items: start;
    margin-bottom: 30px;
    color: #fff;
}
.swiper.pp-swiper {
	height: auto;
}
.pain-points-wrapper .swiper-slide h3 {
	text-align: left;
	font-size: 32px;
	line-height: 1.4em;
	font-weight: 600;
}
.pain-points-wrapper .swiper-slide p {
	font-size: 18px;
	text-align: left;
	font-weight: 300;
}
.methodology-section-2.single-methodology-section-2 .caption .section-intro,
.methodology-section-2.single-methodology-section-2 .inner-outro p {
	font-weight: 300;
    font-size: 24px;
    line-height: 1.5em;
    margin-bottom: 0;
}
.outro-wrapper {
	color: #fff;
	margin-top: 30px;
    display: flex;
    justify-content: center;
}
.inner-outro {
	max-width: 1000px;
    text-align: center;
}
/* Methodology page section 2 */

/* Methodology page section 3 */
.flyin-layer-rel {
	position: absolute;
    top: 50%;
    width: 500px;
    opacity: 0;
    transform: translate(80vw, -50%);
	transition: all 0.7s ease;
}
.flyin-layer-rel.flying-in-as-bg {
	transform: translate(55vw, -50%);
	opacity: 1;
	transition: all 0.7s ease;
}
.methodology-page-subsection-1 .inner-swiper-slide {
	background-position-x: right;
	background-position-y: 20px;
	background-size: auto 90%;
}
@media only screen and (min-width: 1025px) {
	.discover-swiper .custom-pagination.slide-2-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
		background-color: #000;
	}
	.discover-swiper .custom-pagination.slide-2-is-active .custom-pagination-image {
		filter: brightness(0) invert(0);
	}
	.discover-swiper .custom-pagination .custom-pagination-bullet-active .custom-pagination-image {
		filter: invert(53%) sepia(24%) saturate(3291%) hue-rotate(174deg) brightness(92%) contrast(94%);
	}
	.discover-swiper .custom-pagination.slide-2-is-active .custom-pagination-image-wrapper {
		border: 4px solid #000;
	}
	.discover-swiper .custom-pagination.slide-2-is-active .custom-pagination-text {
		color: #000;
	}
}
.discover-swiper .subsection-number-2 .caption.subsection-caption h2,
.discover-swiper .subsection-number-2 .caption.subsection-caption p,
.discover-swiper .subsection-number-2 .caption.subsection-caption ul {
	color: var(--gray);
}
.discover-swiper .subsection-number-2 .parent-section-elements {
    color: var(--gray);
}
/* Methodology page section 4 */
.single-methodology-section-4.methodology-section-4 .caption {
    width: 600px;
    top: 50%;
    transform: translateY(-50%);
}
.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption {
	width: 1000px;
}
.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
	background-position-x: right;
    background-position-y: 20%;
    background-size: auto 65%;
}
.define-swiper .custom-pagination .custom-pagination-bullet-active .custom-pagination-image {
    filter: invert(53%) sepia(24%) saturate(3291%) hue-rotate(174deg) brightness(92%) contrast(94%);
}
.define-swiper .custom-pagination-image {
	max-height: 48px;
}
.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption ul {
	-webkit-column-count: 2;
	-moz-column-count: 2;  
	column-count: 2;
}
.single-methodology-section-4.methodology-section-4 .subsection-number-2 .inner-swiper-slide {
	background-position-x: right;
    background-position-y: top; 
    background-size: auto 100%;
}
.single-methodology-section-4.methodology-section-4 .subsection-number-3 .inner-swiper-slide {
	background-position-x: right;
    background-position-y: top; 
    background-size: auto 100%;
}
/* Methodology page section 5 */
.methodology-section-5.single-methodology-section-5 .caption {
	top: 50%;
    transform: translateY(-50%);
    width: 740px;
}
.methodology-section-5.single-methodology-section-5 .caption .title-eyebrow {
	color: #fff;
}
/* Methodology page section 6 */

/* Methodology page responsive */
@media only screen and (max-width: 1800px) {
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption {
		max-width: 700px;
		transform: translateY(-50%);
	}
	.methodology-section-3.single-methodology-section-3 .subsection-number-2 .inner-swiper-slide {
		background-size: auto 46%;
	}
	.methodology-section-3.single-methodology-section-3 .subsection-number-3 .inner-swiper-slide {
		background-position-x: right;
		background-size: auto 100%;
	}
}
@media only screen and (max-width: 1680px) {
	.methodology-section-3.single-methodology-section-3 .subsection-number-2 .inner-swiper-slide {
        background-size: auto 40%;
    }
}
@media screen and (max-width: 1280px) and (max-height: 1024px) {
	.methodology-page-subsection-1 .inner-swiper-slide {
		background-position-y: 70px;
		background-size: auto 50%;
	}
	.methodology-section-3.single-methodology-section-3 .subsection-number-2 .inner-swiper-slide {
        background-size: auto 32%;
        background-position-y: 120px;
    }
	.methodology-section-3.single-methodology-section-3 .subsection-number-3 .inner-swiper-slide {
        background-position-x: calc(100% + 48%);
        background-size: auto 100%;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
		background-position-x: right;
		background-position-y: 20%;
		background-size: auto 50%;
	}
	.single-methodology-section-4.methodology-section-4 .subsection-number-2 .inner-swiper-slide {
		background-position-x: right;
		background-position-y: center;
		background-size: auto 71%;
	}
	.single-methodology-section-4.methodology-section-4 .subsection-number-3 .inner-swiper-slide {
		background-size: auto 70%;
	}
	.methodology-section-3.single-methodology-section-3 .flyin-layer-rel {
		transform: translate(49vw, -50%);
		width: 40%;
	}
	.single-methodology-section-4.methodology-section-4 .caption {
		width: 40%;
	}
}
@media only screen and (max-width: 1240px) {
	.pain-points-wrapper .swiper-slide {
		align-items: center;
	}
	.pain-points-wrapper .swiper-slide p {
		text-align: center;
	}
	.pain-points-wrapper .swiper-slide h3 {
		text-align: center;
	}
	.methodology-page-subsection-1 .inner-swiper-slide {
        background-position-y: 70px;
        background-size: auto 50%;
    }
	.methodology-section-3.single-methodology-section-3 .subsection-number-3 .inner-swiper-slide {
        background-position-x: right;
		background-size: auto 46%;
        background-position-y: top;
    }
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.methodology-section-2.single-methodology-section-2 {
		justify-content: center;
	}
	.single-methodology-section-3 .flyin-layer-rel {
		transform: translate(66vw, -50%);
	}
	.single-methodology-section-3 .flyin-layer-rel.flyin-layer-rel.flying-in-as-bg {
		transform: translate(50vw, -50%);
	}
	.single-methodology-section-4 .flyin-layer-rel {
		transform: translate(52vw, -50%);
		transition: all 0.7s ease;
		width: 40%;
	}
	.single-methodology-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(55vw, -50%);
	}
	.single-methodology-section-3.methodology-section-3 .caption {
		width: 600px;
		top: unset;
		transform: none;
		bottom: 160px;
	}
	.methodology-section-3.single-methodology-section-3 .subsection-number-3 .inner-swiper-slide {
        background-position-x: right;
		background-size: auto 46%;
        background-position-y: top;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
        background-position-x: right;
        background-position-y: 10%;
        background-size: auto 30%;
    }
	.single-methodology-section-4.methodology-section-4 .caption {
		top: 68%;
		transform: translateY(-50%);
	}
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption {
        max-width: 700px;
        transform: none;
        top: unset;
    }
	.single-methodology-section-4.methodology-section-4 .caption {
		width: 600px;
		top: unset;
		transform: none;
		bottom: 160px;
	}
	.single-methodology-section-4.methodology-section-4 .subsection-number-2 .inner-swiper-slide {
		background-size: auto 62%;
		background-position: center top;
	}
	.single-methodology-section-4.methodology-section-4 .subsection-number-3 .inner-swiper-slide {
		background-size: auto 62%;
	}
}
@media only screen and (max-width: 1024px) {
	.methodology-section-2.single-methodology-section-2 .caption {
	    padding-top: 120px;
		margin-bottom: 0px;
	}	
	.pain-points-wrapper {
		padding-left: 15px;
		padding-right: 15px;
		max-width: 100%;
		margin-bottom: 10px;
	}
}
/* iPad Air - Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 834px) and (orientation: portrait) {
	.methodology-section-2.single-methodology-section-2 {
		justify-content: center;
	}
	.single-methodology-section-3 .flyin-layer-rel.flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.single-methodology-section-3 .flyin-layer-rel.flyin-layer-rel.flying-in-as-bg {
		transform: translate(36vw, -78%);
    }
	.single-methodology-section-3.methodology-section-3 .caption {
        width: 600px;
        top: unset;
        transform: none;
        bottom: 160px;
    }
	.single-methodology-section-4 .flyin-layer-rel.flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.single-methodology-section-4 .flyin-layer-rel.flyin-layer-rel.flying-in-as-bg {
		transform: translate(36vw, -78%);
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption,
	.single-methodology-section-4.methodology-section-4 .caption {
        width: 100%;
        top: unset;
        transform: none;
        bottom: 160px;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
        background-position-x: right;
        background-position-y: 10%;
        background-size: auto 30%;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-2 .inner-swiper-slide {
        background-size: auto 62%;
		background-position: center top;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-3 .inner-swiper-slide {
        background-size: auto 62%;
    }
}
/* iPad Mini - Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {
	.single-methodology-section-3 .flyin-layer-rel.flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.single-methodology-section-3 .flyin-layer-rel.flyin-layer-rel.flying-in-as-bg {
		transform: translate(36vw, -78%);
    }
	.single-methodology-section-3.methodology-section-3 .caption {
        width: 600px;
        top: unset;
        transform: none;
        bottom: 160px;
    }
	.single-methodology-section-4 .flyin-layer-rel.flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.single-methodology-section-4 .flyin-layer-rel.flyin-layer-rel.flying-in-as-bg {
		transform: translate(36vw, -78%);
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption,
	.single-methodology-section-4.methodology-section-4 .caption {
        width: 100%;
        top: unset;
        transform: none;
        bottom: 160px;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
        background-position-x: right;
        background-position-y: 10%;
        background-size: auto 30%;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-2 .inner-swiper-slide {
        background-size: auto 62%;
		background-position: center top;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-3 .inner-swiper-slide {
        background-size: auto 62%;
    }
}
@media only screen and (max-width: 768px) {
	.methodology-section-2.single-methodology-section-2 {
		justify-content: center;
	}
	.methodology-section-2.single-methodology-section-2 .caption {
        padding-top: 110px;
        margin-bottom: 0px;
    }
	.methodology-section-2.single-methodology-section-2 .caption .section-intro, .methodology-section-2.single-methodology-section-2 .inner-outro p {
		font-size: 20px;
		line-height: 1.4em;
		margin-bottom: 0;
	}
	.pain-points-wrapper {
		margin-bottom: 0px;
	}
	.pain-points-wrapper .swiper-slide h3 {
        font-size: 26px;
        line-height: 1.3em;
    }
	.methodology-section-5.single-methodology-section-5 {
		background-position: center center;
	}
	
}
@media only screen and (max-width: 475px) {
	.methodology-section-2.single-methodology-section-2 .caption {
        padding-top: 0;
    }
	.pain-points-wrapper .swiper-slide {
		margin-bottom: 10px;
	}
	.pain-points-wrapper .swiper-slide p {
        margin-bottom: 10px;
		text-align: center;
    }
	.methodology-section-3.single-methodology-section-3 .flyin-layer-rel,
	.methodology-section-4.single-methodology-section-4 .flyin-layer-rel {
		transform: translate(20vw, 0%);
        width: 60%;
	}
	.methodology-section-3.single-methodology-section-3 .flyin-layer-rel.flying-in-as-bg,
	.methodology-section-4.single-methodology-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(5vw, 0%);
        width: 90%;
	}
	.single-methodology-section-3 .container > .caption,
	.single-methodology-section-4 .container > .caption {
		width: 100%;
        transform: none;
        top: 80px;
        text-align: center;
	}
	.single-methodology-section-3.methodology-section-3 .subsection-number-1 .caption,
	.single-methodology-section-3.methodology-section-3 .subsection-number-2 .caption,
	.single-methodology-section-3.methodology-section-3 .subsection-number-3 .caption,
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .caption,
	.single-methodology-section-4.methodology-section-4 .subsection-number-2 .caption,
	.single-methodology-section-4.methodology-section-4 .subsection-number-3 .caption {
        width: calc(100% - 30px);
		top: unset;
        transform: none;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-2 .inner-swiper-slide,
	.single-methodology-section-4.methodology-section-4 .subsection-number-3 .inner-swiper-slide {
        background-position-x: right;
        background-position-y: 0;
        background-size: 90% auto;
    }
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
		background-position-x: right;
        background-position-y: 0;
        background-size: 275px auto;
	}
	.define-swiper .custom-pagination-image {
		max-height: 30px;
	}
	.methodology-page-subsection-1 .inner-swiper-slide {
        background-position-y: 35px;
        background-size: auto 230px;
    }
	.methodology-section-3.single-methodology-section-3 .subsection-number-2 .inner-swiper-slide {
        background-size: 100% auto;
        background-position-y: 20px;
    }
	.methodology-section-3.single-methodology-section-3 .subsection-number-3 .inner-swiper-slide {
		background-image: url(../images/m_ss3_mobile_b.webp)!important;
		background-size: 50% auto;
	}
}
@media only screen and (max-width: 445px) {
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
        background-position-x: right;
        background-position-y: 0;
        background-size: 210px auto;
    }
}

/* approach page */
.approach-swiper .custom-pagination-image {
	filter: none!important;
}
.approach-swiper .custom-pagination-bullet .custom-pagination-image-wrapper {
	background-color: transparent;
}
@media only screen and (min-width: 1025px) {
	.approach-swiper .custom-pagination.slide-3-is-active .custom-pagination-bullet .custom-pagination-image-wrapper {
		border: 4px solid #000;
		background-color: #000;
	}
}
.approach-swiper .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
    background-color: var(--blue);
}
.approach-swiper .custom-pagination.slide-3-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
	background-color: var(--blue);
	border-color: var(--blue);
}
.approach-swiper .subsection-number-3 .caption.subsection-caption h2,
.approach-swiper .subsection-number-3 .caption.subsection-caption p,
.approach-swiper .subsection-number-3 .caption.subsection-caption ul,
.approach-swiper .subsection-number-3 .parent-section-elements {
	color: var(--gray);
}
.approach-swiper .custom-pagination.slide-3-is-active .custom-pagination-text {
	color: #000;
}
.approach-swiper .subsection-number-1 .inner-swiper-slide {
	background-position-x: 92%;
    background-position-y: center;
    background-size: auto 68%;
}
.approach-swiper .subsection-number-2 .inner-swiper-slide {
    background-position-x: right;
    background-position-y: top;
    background-size: cover;
}
.approach-swiper .subsection-number-3 .inner-swiper-slide {
    background-position-x: calc(100% - 100px);
    background-position-y: 30%;
    background-size: auto 60%;
}
.approach-swiper .subsection-number-4 .inner-swiper-slide {
    background-position-x: right;
    background-position-y: 34%;
    background-size: auto 54%;
}
.approach-swiper .subsection-number-5 .inner-swiper-slide {
    background-position-x: calc(100% - 110px);
    background-position-y: calc(100% - 184px);
    background-size: auto 70%;
}
.approach-section-3 .flyin-layer-rel.flying-in-as-bg {
	transform: translate(62vw, -50%);
    opacity: 1;
    transition: all 0.7s ease;
    width: 38vw;
}
.caption ul {
    margin: 0;
    padding: 0 0 0 30px;
    color: #fff;
}
.approach-section-4 .caption {
	width: 710px;
    top: 50%;
    transform: translateY(-50%);
}
.approach-section-4  .flyin-layer-rel {
	width: 18vw;
}
.approach-section-4 .flyin-layer-rel.flying-in-as-bg {
    transform: translate(59vw, -50%);
    opacity: 1;
    transition: all 0.7s ease;
	width: 36vw;
}
.swiper-invisible {
	opacity: 0!important;
}
/* approach responsive */
@media only screen and (max-width: 1680px) {
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
		background-size: auto 50%;
	}
}
@media only screen and (max-width: 1440px) {
	.approach-swiper .subsection-number-1 .inner-swiper-slide {
		background-size: auto 60%;
	}
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
		background-position-x: calc(100% - 56px);
		background-position-y: 34%;
		background-size: auto 44%;
	}
	.approach-swiper .subsection-number-4 .inner-swiper-slide {
		background-size: auto 40%;
	}
	.approach-swiper .subsection-number-5 .inner-swiper-slide {
		background-size: auto 58%;
	}
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.approach-swiper .subsection-number-2 .inner-swiper-slide {
		background-size: 100% auto;
		background-color: #fc9400;
	}
	.approach-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: auto 50%;
		background-position-y: 25%;
    }
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
		background-size: auto 36%;
    }
	.approach-swiper .subsection-number-4 .inner-swiper-slide {
        background-size: auto 36%;
    }
	.approach-swiper .subsection-number-5 .inner-swiper-slide {
        background-size: auto 50%;
        background-position-y: 120px;
    }
	.approach-section-3 .caption,
	.approach-section-4 .caption {
		width: 100%;
        top: unset;
        transform: none;
        bottom: 160px;
	}
	.approach-section-3 .flyin-layer-rel,
	.approach-section-4 .flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.approach-section-3 .flyin-layer-rel.flying-in-as-bg,
    .approach-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(42vw, -88%);
		width: 57vw;
	}
}
/* iPad Air - Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 834px) and (orientation: portrait) {
	.approach-swiper .subsection-number-2 .inner-swiper-slide {
		background-size: 100% auto;
		background-color: #fc9400;
	}
	.approach-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: auto 45%;
		background-position-y: 22%;
    }
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
		background-size: auto 32%;
    }
	.approach-swiper .subsection-number-4 .inner-swiper-slide {
        background-size: auto 32%;
    }
	.approach-swiper .subsection-number-5 .inner-swiper-slide {
        background-size: auto 45%;
        background-position-y: 120px;
    }
	.approach-section-3 .caption,
	.approach-section-4 .caption {
		width: 50%;
        top: unset;
        transform: none;
        bottom: 160px;
	}
	.approach-section-3 .flyin-layer-rel,
	.approach-section-4 .flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.approach-section-3 .flyin-layer-rel.flying-in-as-bg,
    .approach-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(42vw, -100%);
		width: 57vw;
	}
	.approach-section-3 .caption,
	.approach-section-4 .caption {
		width: 100%;
        top: unset;
        transform: none;
        bottom: 160px;
	}
}
/* iPad Mini - Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {
	.approach-swiper .subsection-number-2 .inner-swiper-slide {
		background-size: 100% auto;
		background-color: #fc9400;
	}
	.approach-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: auto 45%;
		background-position-y: 22%;
    }
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
		background-size: auto 32%;
    }
	.approach-swiper .subsection-number-4 .inner-swiper-slide {
        background-size: auto 32%;
    }
	.approach-swiper .subsection-number-5 .inner-swiper-slide {
        background-size: auto 45%;
        background-position-y: 120px;
    }
	.single-technology-section.methodology-section-3.approach-section-3 .caption,
	.single-technology-section.methodology-section-4.approach-section-4 .caption {
		width: 50%;
        top: unset;
        transform: none;
        bottom: 160px;
	}
	.approach-section-3 .flyin-layer-rel,
	.approach-section-4 .flyin-layer-rel {
		transform: translate(50vw, -50%);
	}
	.approach-section-3 .flyin-layer-rel.flying-in-as-bg,
    .approach-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(42vw, -88%);
		width: 57vw;
	}
	.approach-section-3 .caption,
	.approach-section-4 .caption {
		width: 100%;
        top: unset;
        transform: none;
        bottom: 160px;
	}
}
@media only screen and (max-width: 525px) {
	.approach-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: 110% auto;
        background-position-y: 7vh;
    }
	.approach-swiper .subsection-number-2 .inner-swiper-slide {
		background-position-x: 160%;
		background-position-y: top;
		background-size: 123% auto;
		background-color: #fc9400;
	}
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
        background-position-x: center;
        background-position-y: 10%;
        background-size: 115% auto;
    }
	.approach-swiper .subsection-number-4 .inner-swiper-slide {
        background-size: 100% auto;
        background-position-y: 10vh;
    }
	.approach-swiper .subsection-number-5 .inner-swiper-slide {
        background-size: 100% auto;
        background-position-x: center;
        background-position-y: 10%;
    }
	.single-technology-section.approach-section-3 .caption,
	.single-technology-section.approach-section-4 .caption	{
        width: 100%;
        padding: 30px 20px;
        top: 250px;
        text-align: center;
    }
	.approach-section-3 .flyin-layer-rel,
	.approach-section-4 .flyin-layer-rel {
		transform: translate(10vw, -50%);
		width: 90vw;
	}
	.approach-section-3 .flyin-layer-rel.flying-in-as-bg,
	.approach-section-4 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(5vw, 10%);
        opacity: 1;
        transition: all 0.7s ease;
        width: 90vw;
    }
	.caption ul {
		list-style-position: inside;
		text-align: left;
		padding-left: 0;
	}
	.approach-section-4 .caption ul {
		text-align: center;
	}
}
@media only screen and (max-width: 475px) {
	.single-section .caption .section-intro {
        font-size: 16px;
        line-height: 20px;
    }
}
/* work */
.video-bg-holder {
	postion: relative;
	height: 100vh;
	width: 100vw;
	background-color: #000;
}
.video-background {
	position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: .2;
    transform: translateX(-50%);
}
.work-section-1 .caption {
	position: absolute;
    width: 960px;
    max-width: calc(100% - 40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}
.work-section-1 .caption .section-title {
	font-weight: 900;
    font-size: 90px;
    line-height: 1.15em;
    color: #fff;
    margin: 0 0 40px 0;
	letter-spacing: -1.2px;
}
.work-section-1 .caption .title-eyebrow {
	font-weight: 700;
	font-size: 50px;
	line-height: 64px;
	letter-spacing: -1.2px;
}
.work-section-1 .caption .section-intro {
    font-size: 24px;
    line-height: 36px;
    padding-left: 100px;
    padding-right: 100px;
    margin: 0;
}
.work-swiper .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image {
	filter: invert(53%) sepia(24%) saturate(3291%) hue-rotate(174deg) brightness(92%) contrast(94%);
}
.single-work-section {
	overflow: hidden;
}
.work-slide-3 .mobile-parent-title-holder {
	position: absolute;
	top: 18px;
	left: 100px;
}
.work-slide-3 .mobile-parent-title {
	color: #fff;
	margin-bottom: 0px;
	font-size: 20px;
    line-height: 1.4em;
}
@media only screen and (min-width: 1025px) {
	.single-work-section-num-1 .work-swiper .custom-pagination.slide-2-is-active .custom-pagination-image-wrapper {
		border: 4px solid #000;
	}
	.single-work-section-num-1 .work-swiper .custom-pagination.slide-2-is-active .custom-pagination-bullet .custom-pagination-image {
		filter: brightness(0) invert(0);
	}
	.single-work-section-num-1 .work-swiper .custom-pagination.slide-2-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image {
		filter: invert(53%) sepia(24%) saturate(3291%) hue-rotate(174deg) brightness(92%) contrast(94%);
	}
	.single-work-section-num-1 .work-swiper .custom-pagination.slide-2-is-active .custom-pagination-bullet.custom-pagination-bullet-active .custom-pagination-image-wrapper {
		background-color: #000;
	}
	.single-work-section-num-1 .work-swiper .custom-pagination.slide-2-is-active .custom-pagination-text {
		color: #000;
	}
}
.inner-single-work-section {
	display: flex;
    height: 100vh;
    width: 100vw;
}
.inner-single-work-section .caption-holder {
	width: 50%;
	display: flex;
    align-items: center;
}
.inner-single-work-section .caption-holder .caption {
	position: relative;
	color: #fff;
	padding-left: 120px;
}
.inner-single-work-section .caption-holder .caption .section-title {
	font-weight: 700;
	font-size: 60px;
	line-height: 70px;
	margin-top: 20px;
}
.inner-single-work-section .caption-holder .caption .title-eyebrow {
	font-weight: 700;
	font-size: 17px;
	line-height: 20px;
	display: block;
}
.inner-single-work-section .image-holder {
	width: 50%;
    text-align: right;
}
.inner-single-work-section .image-holder img {
	max-width: unset;
    height: 100%;
}
.parent-section-elements.absolute-positioned {
	position: absolute;
}
.work-swiper .inner-swiper-slide {
	display: flex;
    height: 100vh;
    width: 100vw;
}
.work-swiper .caption.subsection-caption {
	position: relative;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    transform: none;
    left: 0;
    top: 0;
    padding-left: 160px;
    padding-right: 80px;
	flex-direction: column;
    justify-content: center;
}
.work-swiper .inner-swiper-slide .image-holder {
	width: 50%;
    text-align: right;
}
.single-work-section-num-1 .work-slide-2 .parent-section-elements,
.single-work-section-num-1 .work-slide-2 .caption.subsection-caption h2,
.single-work-section-num-1 .work-slide-2 .caption.subsection-caption p {
	color: var(--gray);
}
.single-work-section-num-1 .work-slide-2 .flyin-layer-rel {
    position: absolute;
    top: 50%;
    width: 540px;
    opacity: 0;
    transform: translate(70vw, -50%);
    transition: all 0.7s ease;
}
.single-work-section-num-1 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
    transform: translate(47vw, -50%);
    opacity: 1;
    transition: all 0.7s ease;
    width: unset;
    height: 100vh;
}
.single-work-section-num-2 .work-slide-2 .inner-swiper-slide {
	background-size: 100% auto;
}
.single-work-section-num-2 .work-slide-2 .flyin-layer-rel {
	position: absolute;
    top: 0;
    width: 100vw;
    height: auto;
    opacity: 0;
    transform: translateY(20vh);
    transition: all 0.7s ease;
}
.single-work-section-num-2 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
    transform: translateY(0px);
    opacity: 1;
    transition: all 0.7s ease;
    top: 0;
}
.results-list-holder {
	width: 100vw;
    padding-left: 80px;
    display: flex;
}
.single-result {
	width: 25%;
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30vh;
}
.single-result .result-num {
	font-weight: 700;
    font-size: 90px;
    line-height: 100px;
    letter-spacing: -1.2px;
    margin-bottom: 30px;
}
.single-result .result-title {
	margin-bottom: 0;
    font-size: 30px;
    line-height: 40px;
}
.single-result .result-img {
	width: auto;
    height: 140px;
    max-width: 80%;
    margin-bottom: 40px;
}
/* work responsive */
.flyin-layer-rel img {
	width: 100%;
}
.swiper-slide img.img-mob {
	display: none;
}
@media only screen and (max-width: 1680px) {
	.work-section-1 .caption .section-title {
		font-size: 50px;
		line-height: 60px;
	}
	.work-section-1 .caption .title-eyebrow {
		font-size: 36px;
		line-height: 46px;
	}
	.single-work-section-num-1 .work-slide-2 .flyin-layer-rel {
		transform: translate(48vw, -50%);
	}
	.single-work-section-num-1 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(35vw, -50%);
		opacity: 1;
	}
	.inner-single-work-section .caption-holder .caption {
		padding-left: 40px;
		max-width: 100%;
	}
	.single-result .result-num {
		font-weight: 800;
		font-size: 70px;
		line-height: 80px;
		letter-spacing: -1.2px;
		margin-bottom: 30px;
	}
	.work-swiper .caption.subsection-caption {
		padding-left: 120px;
		padding-right: 60px;
	}
	.single-result .result-img {
		height: 100px;
	}
}
@media only screen and (max-width: 1440px) {
	.single-result .result-num {
        font-weight: 800;
        font-size: 64px;
        line-height: 72px;
    }
	.single-result .result-title {
		margin-bottom: 0;
		font-size: 26px;
		line-height: 32px;
	}
}
@media only screen and (max-width: 1366px) {
	.single-result {
		padding-top: 230px;
	}
	.single-result .result-num {
        font-size: 56px;
        line-height: 62px;
    }
	.single-result .result-title {
        font-size: 20px;
        line-height: 25px;
    }
}
@media only screen and (max-width: 1280px) {
	.single-result .result-img {
        height: 100px;
    }
	.single-result {
        padding-top: 0;
        justify-content: center;
    }
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.work-swiper .caption.subsection-caption {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1194px) and (orientation: portrait) {
	.inner-single-work-section .image-holder {
		width: 40%;
	}
	.inner-single-work-section .caption-holder {
		width: 60%;
	}
}
@media only screen and (max-width: 1024px) {
	.swiper-slide img.img-mob {
		display: block;
	}
	.swiper-slide img.img-desk {
		display: none;
	}
	.work-swiper .inner-swiper-slide {
		display: flex;
		height: 100vh;
		width: 100vw;
		flex-direction: column-reverse;
	}
	.work-swiper .caption.subsection-caption {
		width: 100%;
		height: 50%;
		padding-bottom: 100px;
		padding-left: 30px;
		padding-right: 105px;
		justify-content: start;
		position: relative;
		z-index: 1;
		flex-direction: row;
        max-width: 100%;
	}
	.work-swiper .inner-swiper-slide .image-holder {
		height: 70%;
		width: 100%;
	}
	.inner-work-caption {
		margin-top: -90px;
		display: flex;
        flex-direction: column;
	}
	.work-swiper .inner-swiper-slide .mobile-parent-title {
		line-height: 1.3em;
    }
	.single-work-section-num-1 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(35vw, -82%);
        opacity: 1;
        max-height: 60%;
    }
	.results-list-holder {
		width: 100vw;
		padding-left: 0;
		display: flex;
		flex-wrap: wrap;
		height: 100vh;
	}
	.single-result {
		width: 50%;
		height: 50%;
	}
	.single-result .result-img {
        height: 170px;
    }
	.single-result .result-title {
        font-size: 22px;
        line-height: 27px;
    }
	.single-work-section-num-2 .work-slide-2 .inner-swiper-slide {
		background-size: auto 70%;
		background-position-x: center;
	}
	.single-work-section-num-2 .work-slide-2 .flyin-layer-rel {
		position: absolute;
		top: 0;
		width: 100vw;
		height: auto;
		opacity: 0;
		transform: translate(3vw, 3%);
	}
	.single-work-section-num-2 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(0vw, 0%);
		opacity: 1;
		top: 0;
		height: 100vh;
	}
	.single-work-section-num-2 .swiper-slide.work-slide-2 img.img-desk {
        display: block;
        width: auto;
        height: 70%;
        max-width: unset;
        margin-left: -26%;
    }
	.single-work-section-num-2 .swiper-slide.work-slide-2 img.img-mob {
		display: none;
	}
	.inner-single-work-section .image-holder {
		overflow: hidden;
		padding-left: 20px;
	}
	.inner-single-work-section .caption-holder .caption .section-title {
		font-weight: 700;
		font-size: 40px;
		line-height: 46px;
		margin-top: 8px;
	}
	.work-slide-3 .mobile-parent-title-holder {
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.results-list-holder {
		height: calc(100vh - 105px);
		margin-bottom: 105px;
	}
	.work-section-1 .caption .section-intro {
		padding-left: 50px;
		padding-right: 50px;
	}
	.single-result .result-img {
        height: 110px;
    }
}
@media only screen and (max-width: 525px) {
	.work-section-1 .caption {
		max-width: 100%;
	}
	.work-section-1 .caption .title-eyebrow {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 0;
    }
	.work-section-1 .caption .section-title {
        font-size: 40px;
        line-height: 46px;
    }
	.work-section-1 .caption .section-intro {
		padding-left: 0px;
		padding-right: 0px;
	}
	.inner-single-work-section {
		flex-direction: column;
	}
	.inner-single-work-section .caption-holder {
		width: 100%;
		align-items: center;
		height: auto;
		padding-top: 90px;
		text-align: center;
	}
	.inner-single-work-section .caption-holder .caption {
        padding: 0px 15px;
    }
	.inner-single-work-section .caption-holder .caption .section-title {
        font-size: 32px;
        line-height: 44px;
        margin-top: 2px;
        margin-bottom: 10px;
    }
	.inner-single-work-section .image-holder {
		width: 100%;
		text-align: center;
		padding-left: 0;
	}
	.inner-single-work-section .image-holder img {
		max-width: 100%;
		height: auto;
	}
	.work-swiper .work-slide-1 .inner-swiper-slide .image-holder {
        height: 65%;
        width: 100%;
    }
	.work-swiper .work-slide-1 .caption.subsection-caption {
        width: 100%;
        height: auto;
        padding-bottom: 110px;
        padding-left: 15px;
        justify-content: start;
        position: relative;
        z-index: 1;
        flex-direction: row;
        max-width: 100%;
    }
	.work-swiper .work-slide-2 .caption.subsection-caption {
        height: auto;
        max-width: 100%;
        margin-top: auto;
        padding-bottom: 110px;
        padding-left: 15px;
	}
	.single-work-section-num-1 .work-slide-2 .flyin-layer-rel {
        transform: translate(0vw, -50%);
        width: 100%;
    }
	.single-work-section-num-1 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(0vw, -82%);
        opacity: 1;
        max-height: 60%;
    }
	.single-work-section-num-2 .work-slide-2 .inner-swiper-slide {
        background-size: 100% auto;
        background-position-x: center;
        background-position-y: -30%;
    }
	.single-work-section-num-2 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(0vw, -15%);
        opacity: 1;
        top: 0;
        height: auto;
		width: 100%;
    }
	.single-work-section-num-2 .swiper-slide.work-slide-2 img.img-mob {
        display: block;
    }
	.single-work-section-num-2 .swiper-slide.work-slide-2 img.img-desk {
		display: none;
	}
	.single-result .result-num {
        font-size: 36px;
        line-height: 42px;
    }
	.single-result .result-img {
        height: 70px;
		margin-bottom: 10px;
    }
	.single-result .result-title {
        font-size: 14px;
        line-height: 22px;
    }
	.results-list-holder {
        height: calc(100vh - 70px);
        margin-bottom: 70px;
    }
}
/* about us */
.single-team-slide {
	position: relative;
    overflow: hidden;
    height: 100vh;
    background-position-x: center;
    background-position-y: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.single-team-slide .swiper-caption {
	position: absolute;
    bottom: 70px;
    left: 40px;
    right: 40px;
	color: #fff;
	text-align: left;
}
.single-team-slide .swiper-caption h4 {
	font-weight: 700;
	font-size: 36px;
    line-height: 40px;
	margin-bottom: 10px;
}
.single-team-slide .swiper-caption .job-title {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 26px;
}
.single-team-slide .swiper-caption .tm-desc {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 0px;
}
.swiper-pagination.teammate-swiper-pagination {
	bottom: 20px;
}
.swiper-pagination.teammate-swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff;
}
.swiper-pagination.teammate-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--blue);
    border: 1px solid var(--blue);
}
.about-us-section-3 .flyin-layer-rel {
    transform: translate(70vw, -50%);
}
.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
	transform: translate(48vw, -45%);
    width: auto;
    height: 78vh;
}
.about-us-section-3 .flyin-layer-rel.flying-in-as-bg .flyin-bg-img {
	max-height: 100%;
}
.location-link, .location-link:hover, .location-link:visited {
	color: #fff;
}
.about-us-section-4 .caption {
    width: 800px;
    top: 50%;
    transform: translateY(-50%);
}
.about-us-section-4 .flyin-layer-rel {
    transform: translate(70vw, -50%);
}
.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
	transform: translate(56vw, -50%);
    width: auto;
    height: 70vh;
}
.about-us-section-4 .flyin-layer-rel.flying-in-as-bg .flyin-bg-img {
	max-height: 100%;
}
/* about responsive */
@media only screen and (max-width: 1680px) {
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(52vw, -50%);
	}
}
@media screen and (max-width: 1280px) and (max-height: 1024px) {
	.single-team-slide {
		background-size: auto 100%;
	}
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (orientation: portrait) {
	.about-us-section-1 {
		background-size: auto 101%;
	}
	.single-team-slide {
		background-size: auto 100%;
	}
	.about-us-section-3 .caption {
        left: 0;
        top: unset;
        transform: none;
        bottom: 60px;
    }
	.about-us-section-3 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(-22vw, 0%);
		width: auto;
		height: 50vh;
		top: 16vh;
		left: 38vw;
	}
	.about-us-section-4 .caption {
		width: 100%;
		left: 0;
        top: unset;
        transform: none;
        bottom: 60px;
	}
	.about-us-section-4 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(-21vw, 0%);
		width: auto;
		height: 50vh;
		top: 9vh;
		left: 38vw;
	}
}
/* iPad Air - Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 834px) and (orientation: portrait) {
	.contact-form-section .section-container {
        flex-direction: column;
		padding-left: 30px;
        padding-right: 30px;
		padding-top: 70px;
    }
	.contact-form-section .section-container .caption h2 {
        font-size: 32px;
        line-height: 1.4em;
    }
	.contact-form-section .caption {
		width: 100%;
		padding-top: 170px;
	}
	.contact-form-section .contact-form-holder {
		padding-top: 0px;
		width: 100%;
	}
	.about-us-section-1 {
		background-size: auto 101%;
	}
	.single-team-slide {
		background-size: auto 100%;
	}
	.about-us-section-3 .caption {
        left: 0;
        top: unset;
        transform: none;
        bottom: 60px;
    }
	.about-us-section-3 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(-22vw, 0%);
		width: auto;
		height: 50vh;
		top: 16vh;
		left: 38vw;
	}
	.about-us-section-4 .caption {
		width: 100%;
		left: 0;
        top: unset;
        transform: none;
        bottom: 60px;
	}
	.about-us-section-4 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(-21vw, 0%);
		width: auto;
		height: 50vh;
		top: 9vh;
		left: 38vw;
	}
}
/***** iPad Mini *****/
/* iPad Mini - Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {
	.contact-form-section .section-container {
        flex-direction: column;
		padding-left: 30px;
        padding-right: 30px;
		padding-top: 70px;
    }
	.contact-form-section .section-container .caption h2 {
        font-size: 32px;
        line-height: 1.4em;
    }
	.contact-form-section .caption {
		width: 100%;
		padding-top: 170px;
	}
	.contact-form-section .contact-form-holder {
		padding-top: 0px;
		width: 100%;
	}
	.about-us-section-1 {
		background-size: auto 101%;
	}
	.single-team-slide {
		background-size: auto 100%;
	}
	.about-us-section-3 .caption {
        left: 0;
        top: unset;
        transform: none;
        bottom: 60px;
    }
	.about-us-section-3 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(-22vw, 0%);
		width: auto;
		height: 50vh;
		top: 16vh;
		left: 38vw;
	}
	.about-us-section-4 .caption {
		width: 100%;
		left: 0;
        top: unset;
        transform: none;
        bottom: 60px;
	}
	.about-us-section-4 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(-21vw, 0%);
		width: auto;
		height: 50vh;
		top: 9vh;
		left: 38vw;
	}
}
@media only screen and (max-device-width: 767px) {
	.contact-form-section .section-container {
        flex-direction: column;
		padding-left: 15px;
        padding-right: 15px;
		padding-top: 70px;
    }
	.contact-form-section .section-container .caption h2 {
        font-size: 32px;
        line-height: 1.4em;
    }
	.contact-form-section .caption {
		width: 100%;
		padding-top: 0px;
	}
	.contact-form-section .contact-form-holder {
		padding-top: 0px;
		width: 100%;
	}
	.about-us-section-1 {
		background-size: auto 101%;
	}
	.single-team-slide {
		background-size: auto 100%;
	}
	.about-us-section-3 .caption {
        left: 0;
        top: 80px;
        transform: none;
        width: 100%;
        text-align: center;
    }
	.about-us-section-3 ul {
		text-align: center;
	}
	.about-us-section-3 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(0vw, 0%);
        height: auto;
        top: unset;
        left: 2%;
        bottom: 30px;
        width: 96%;
    }
	.about-us-section-4 .caption {
		left: 0;
        top: 40px;
        transform: none;
        width: 100%;
        text-align: center;
	}
	.about-us-section-4 .flyin-layer-rel {
		transform: translate(0vw, 0%);
		height: 50vh;
	}
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(0vw, 0%);
        height: auto;
        top: unset;
        left: 12%;
        bottom: 20px;
        width: 74%;
	}
}
@media only screen and (max-device-width: 475px) {
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(0vw, 0%);
		height: auto;
		top: unset;
		left: 4%;
		bottom: 20px;
		width: 92%;
	}
	.about-us-section-4 .caption ul {
		text-align: center;
	}
}

/* all responsive */
/* mac book */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
	.hp-section-2 .flyin-img, .hp-section-2 .main-bg-img {
        max-width: 106%;
        min-height: 100vh;
        min-width: 100%;
    }
	.hp-section-5 .flyin-layer-rel img {
		width: auto;
	}
	.contact-form-section .caption {
        width: 100%;
        padding-top: 30px;
    }
	
	/* methodology */
	.methodology-section-2.single-methodology-section-2 .mouse-icon-holder,
	.contact-form-section .mouse-icon-holder {
		display: none;
	}
	
	/* about us */
	.about-us-section-3 .flyin-layer-rel,
	.about-us-section-4 .flyin-layer-rel {
		transform: translate(30vw, -50%);
	}
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(48vw, -45%);
		width: auto;
		height: 78vh;
	}
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
		transform: translate(58vw, -45%);
		width: auto;
		height: 60vh;
	}
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg .flyin-bg-img,
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg .flyin-bg-img {
		max-height: 100%;
		width: auto;
	}
}

@media only screen and (max-width: 525px) {
	.inner-single-work-section .image-holder img {
		margin-left: 0px;
	}
}
@media only screen and (max-width: 425px) {
	.hp-section-2 .caption {
		height: auto;
		top: 68px;
	}
	.flyin-img, .main-bg-img {
        max-width: 100%;
        min-height: 100vh;
        min-width: 100%;
    }
	.hp-section-3 .caption {
        padding: 20px 15px;
    }
	.single-input-holder label {
		display: none;
	}
	.single-input-holder br {
		display: none;
	}
	.methodology-section-2 .caption .section-title {
        margin: 0 0 8px 0px;
        font-size: 30px;
        line-height: 36px;
    }
	.methodology-section-2.single-methodology-section-2 .caption .section-intro, .methodology-section-2.single-methodology-section-2 .inner-outro p {
        font-size: 16px;
        line-height: 1.4em;
        margin-bottom: 10px;
    }
	.pain-points-wrapper .swiper-slide p {
		font-size: 16px;
		font-weight: 300;
		line-height: 1.4em;
	}
	.pain-points-wrapper .swiper-slide h3 {
        font-size: 20px;
        line-height: 1.3em;
        margin-top: 15px;
    }
	.swiper-pagination.pp-swiper-pagination {
		bottom: 0px;
	}
	.caption.subsection-caption h2, .parent-section-title {
        font-size: 30px;
        line-height: 36px;
		margin-bottom: 10px;
    }
	.caption.subsection-caption p, .caption.subsection-caption ul, .caption p, .caption ul {
		padding-left: 0px;
	}
	.single-methodology-section-4.methodology-section-4 .subsection-number-1 .inner-swiper-slide {
        background-position-x: -180%;
	}
	.single-technology-section.methodology-section-2 .subsection-number-6 .inner-swiper-slide {
        background-size: 70% auto;
    }
	.contact-form-section .section-container .caption h2 {
        font-size: 32px;
        line-height: 36px;
    }
	.approach-swiper .subsection-number-1 .inner-swiper-slide {
        background-size: 67% auto;
        background-position-y: 7vh;
    }
	.approach-swiper .subsection-number-3 .inner-swiper-slide {
        background-size: 78% auto;
    }
	.approach-swiper .subsection-number-5 .inner-swiper-slide {
        background-size: 58% auto;
        background-position-x: center;
        background-position-y: 10%;
    }
	.approach-section-3 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(15vw, 20%);
        opacity: 1;
        transition: all 0.7s ease;
        width: 70vw;
    }
	.approach-section-4 .flyin-layer-rel.flying-in-as-bg  {
		transform: translate(20vw, 52%);
        opacity: 1;
        transition: all 0.7s ease;
        width: 60vw;
	}
	.inner-single-work-section .image-holder {
        width: 100%;
        text-align: center;
        padding-left: 0;
        height: 100%;
    }
	.inner-single-work-section .image-holder img {
		height: auto;
        width: 100%;
    }
	.single-work-section-num-1 .work-slide-2 .flyin-layer-rel.flying-in-as-bg {
        transform: translate(16vw, -106%);
        opacity: 1;
        max-height: 50%;
    }
	.about-us-section-3 .flyin-layer-rel.flying-in-as-bg {
        left: 7%;
        bottom: 30px;
        width: 84%;
    }
	.caption h2 {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 0;
    }
	.about-us-section-4 .flyin-layer-rel.flying-in-as-bg {
        left: 13%;
        bottom: 10px;
        width: 74%;
    }
}
@media only screen and (max-width: 400px) {
	.single-result {
        padding-top: 50px;
        padding-bottom: 25px;
    }
	.single-result .result-img {
        height: 60px;
        margin-bottom: 6px;
    }
	.single-result .result-num {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
	.contact-form-section .section-container .caption h2 {
        font-size: 26px;
        line-height: 32px;
    }
}
@media screen and (max-width: 375px), 
       screen and (max-height: 670px) {
	.contact-form-section .section-container .caption h2 {
        font-size: 25px;
        line-height: 30px;
    }
}
@media only screen and (max-width: 325px) {
	.methodology-section-2.single-methodology-section-2 .container {
		margin-top: 20px;
	}
	.methodology-section-2.single-methodology-section-2 .caption {
        padding-bottom: 0px;
    }
	.outro-wrapper {
		margin-top: 20px;
	}
	.methodology-section-2.single-methodology-section-2 .caption .section-title {
        margin: 0 0 1px 0px;
        font-size: 28px;
        line-height: 32px;
    }
	.pain-points-wrapper .swiper-slide p {
		margin-bottom: 0px;
	}
}

.contact-form-holder .wpcf7-response-output {
	border: none;
    width: 100%;
    padding: 0;
    margin: 0;
}
.recaptcha-info {
	font-size: 12px;
}
.recaptcha-info a {
	color: #426f83;
}
.grecaptcha-badge { 
    visibility: hidden;
}

/* contact us */
.site-header.header-contact-us .single-nav-bar {
    background-color: #000;
}
.site-header.header-contact-us .menu-toggle-white-bars .single-nav-bar {
	background-color: #fff;
}
.contact-info-expander {
	position: fixed;
    right: 100px;
    top: 55px;
    z-index: 102;
    font-size: 22px;
    line-height: 1em;
    color: #000;
    cursor: pointer;
	display: none;
	transition: .8s color ease;
}
.contact-info-expander.color-white {
	color: #fff;
	transition: .8s color ease;
}
.header-contact-us .contact-info-expander {
	display: block;
}
.header-contact-us .contact-info-expander.hide {
	display: none;
}
.contact-info-expander span {
	position: relative;
	padding-right: 20px;
}
.contact-info-expander span:after {
	content: '';
	position: absolute;
	right: 0px;
	height: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	background-color: #000;
	transition: .8s background-color ease;
}
.contact-info-expander.color-white span:after {
	background-color: #fff;
	transition: .8s background-color ease;
}
.header-contact-us .custom-logo-link .custom-logo {
	-webkit-filter: invert(100%);
    filter: invert(100%);
}
.contact-us-page {
	padding-top: 170px;
}
.contact-us-container {
	
}
.choose-locations-label {
	
}
.location-selection {
	padding-right: 15px;
}
.single-location-selector {
    cursor: pointer;
    padding: 16px;
    margin-bottom: 20px;
	font-size: 28px;
	background-color: #F7F7F7;
	color: #D9D9D9;
	font-weight: 300;
	position: relative;
	border-radius: 6px;
}
.single-location-selector.active {
    background-color: var(--blue);
    color: #fff;
}
.single-location-selector.active:after {
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -8px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--blue);
}
.single-contact-form {
    display: none;
}
.single-contact-form.active {
    display: block;
}
.single-contact-info {
    display: none;
	padding-left: 40px;
	padding-right: 40px;
	flex-direction: column;
    height: 100%;
	position: relative;
}
.single-contact-info h3 {
	font-weight: 700;
    font-size: 32px;
    line-height: 34px;
    color: #fff;
    margin-bottom: 20px;
}
.map-link {
	margin-bottom: 12px;
	color: var(--blue);
}
.single-contact-info .map-link a,
.single-contact-info .map-link a:hover,
.privacy-link a,
.privacy-link a:hover {
	color: var(--blue);
}
.page-label {
	margin-bottom: 5px;
}
.location-label {
	font-weight: 800;
	font-size: 60px;
	line-height: 64px;
	color: var(--blue);
	margin-bottom: 10px;
}
.contact-us-form-wrapper .wpcf7-form {
	display: flex;
	flex-wrap: wrap;
}
.contact-us-form-wrapper .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
    display: block;
}
.contact-us-form-wrapper .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"],
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"],
.contact-us-form-wrapper .wpcf7-form .right-col textarea {
    max-width: 100%;
    border: 2px solid rgba(59, 163, 214, 0.2);
    border-radius: 4px;
    font-size: 26px;
    line-height: 30px;
    color: #000;
    background: none;
    padding: 16px 20px;
    outline: none !important;
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:hover,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:hover,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:hover {
	border-color: var(--blue);
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea::-webkit-input-placeholder {
  color: #92A0A9;
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea::-moz-placeholder {
  color: #92A0A9;
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:-ms-input-placeholder { 
  color: #92A0A9;
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:-moz-placeholder {
  color: #92A0A9;
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:hover::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:hover::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:hover::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:focus::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:focus::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:focus::-webkit-input-placeholder {
	color: var(--blue);
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:hover::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:hover::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:hover::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:focus::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:focus::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:focus::-moz-placeholder {
	color: var(--blue);
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:hover::-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:hover::-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:hover::-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:focus::-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:focus::-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:focus::-ms-input-placeholder {
	color: var(--blue);
}
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:hover:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:hover:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:hover:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"]:focus:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"]:focus:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .right-col textarea:focus:-moz-placeholder {
	color: var(--blue);
}
.contact-us-form-wrapper .wpcf7-form .right-col textarea {
	height: 316px;
}
.contact-us-form-wrapper .wpcf7-form .wpcf7-submit {
    padding: 26px;
    background-color: var(--blue);
    color: #4A4A4A;
    border-radius: 4px;
    font-size: 26px;
    line-height: 30px;
    width: 100%;
    border: none;
}
.contact-us-form-wrapper .left-col {
	width: 332px;
	padding-right: 15px;
}
.contact-us-form-wrapper .right-col {
	width: calc(100% - 332px);
	padding-left: 15px;
}
.contact-us-form-wrapper .single-input-holder label {
	color: #000;
	font-size: 16px;
}
.contact-us-form-wrapper .submit-form-holder p {
	margin-bottom: 0px;
}
.success-message-container {
	text-align: left;
    padding: 40px 20px;
    max-width: 622px;
    margin: 0 auto;
}
.success-icon {
    margin-bottom: 20px;
}
.message-sent {
    color: var(--blue);
    margin-bottom: 5px;
    font-weight: 800;
    font-size: 60px;
    line-height: 64px;
}
.message-sent-success {
	font-size: 32px;
	line-height: 50px;
	color: #000;
}
.contact-form-holder .message-sent-success {
	color: #fff;
}
.send-another-btn {
    padding: 26px;
    border-radius: 4px;
    font-size: 26px;
    line-height: 30px;
    width: 230px;
}
.contact-us-page .send-another-btn {
	background-color: #fff;
    color: var(--blue);
	border: 2px solid var(--blue);
}
.contact-us-page .send-another-btn:hover {
	color: #fff;
    background-color: var(--blue);
}
.contact-form-holder .send-another-btn {
	background-color: #000;
    color: #fff;
	border: 2px solid var(--blue);
}
.contact-form-holder .send-another-btn:hover {
	background-color: var(--blue);
}
.contact-info-wrapper {
    position: absolute;
    right: -118%;
    top: 0px;
    padding-top: 170px;
    height: 100vh;
	background-color: #000;
	width: 380px;
	transition: all .6s ease;
}
.contact-info-wrapper.show {
    right: 0px;
	transition: all .6s ease;
}
.contact-us-form-wrapper .wpcf7 form .wpcf7-response-output {
	margin: 10px 0 0 0;
    padding: 0;
    border: none;
    font-size: 12px;
    color: #FC9400;
}
.contact-us-form-wrapper .wpcf7-form-control.wpcf7-not-valid {
	border-color: #FC9400!important;
}
.contact-us-form-wrapper .wpcf7-not-valid-tip {
    display: none;
}
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="text"]::-webkit-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="email"]::-webkit-input-placeholder {
  color: #FC9400;
}
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="text"]::-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="email"]::-moz-placeholder {
  color: #FC9400;
}
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="text"]:-ms-input-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="email"]:-ms-input-placeholder { 
  color: #FC9400;
}
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="text"]:-moz-placeholder,
.contact-us-form-wrapper .wpcf7-form .left-col input.wpcf7-not-valid[type="email"]:-moz-placeholder {
  color: #FC9400;
}
.location-leadership {
	padding-bottom: 20px;
    position: absolute;
    bottom: 50px;
}
.location-leadership-title {
	font-size: 18px;
	line-height: 35px;
	color: #92A0A9;
}
.single-leadership {
	margin-bottom: 20px;
}
.single-leadership .avatar-holder {
	position: relative;
    margin-right: 15px;
}
.single-leadership .avatar-holder .avatar-image {
	width: 56px;
    height: 56px;
}
.single-leadership .avatar-holder .linkedin-small {
	position: absolute;
    right: 0;
    bottom: 0;
}
.linkedin-link {
	display: flex;
	align-items: center;
}
.linkedin-link .name-holder p.name {
	font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 0px;
}
.linkedin-link .name-holder p.position {
	font-size: 16px;
    line-height: 21px;
    margin: 0;
    color: #fff;
    font-weight: 300;
}
.page .wpcf7-spinner {
    position: absolute;
}
.fullscreen-container[data-barba-namespace="contact-us-page"] .scroll-track {
	display: none;
}
/* contact us responsive */
@media only screen and (max-width: 1550px) {
    .contact-info-expander {
		top: 34px;
		font-size: 18px;
	}
	.contact-us-page {
		padding-top: 120px;
	}
	.choose-locations-label {
		margin-bottom: 10px;
	}
	.single-location-selector {
		padding: 10px 16px;
		margin-bottom: 10px;
		font-size: 20px;
	}
	.location-label {
		font-size: 44px;
		line-height: 46px;
	}
}
@media only screen and (max-width: 1440px) {
	.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"],
	.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"] {
        height: 60px;
        font-size: 20px;
        width: 100%;
    }
	.contact-us-form-wrapper .wpcf7-form .wpcf7-submit {
        padding: 20px 36px;
        font-size: 20px;
        line-height: 20px;
        width: 100%;
        border: none;
    }
	.contact-us-form-wrapper .wpcf7-form .right-col textarea {
		height: 298px;
		font-size: 20px;
	}
}
@media only screen and (max-width: 768px) {
	.contact-info-expander {
        top: 23px;
    }
	.contact-us-page {
        padding-top: 90px;
    }
	.location-selection {
		width: 100%;
		padding-right: 12px;
        padding-left: 12px;
		display: flex;
        padding-top: 26px;
        position: relative;
		justify-content: space-between;
	}
	.choose-locations-label {
        margin-bottom: 0;
        position: absolute;
        top: 0;
    }
	.single-location-selector {
        padding: 10px 16px;
        margin-bottom: 10px;
        font-size: 16px;
        width: calc(33.333% - 10px);
    }
	.single-location-selector.active:after {
		bottom: -15px;
		top: unset;
		right: 50%;
		transform: rotate(90deg);
	}
	.contact-us-form-wrapper {
		margin-top: 20px;
		width: 100%;
	}
	.contact-us-form-wrapper .left-col {
		width: 50%;
		padding-right: 15px;
	}
	.contact-us-form-wrapper .right-col {
		width: 50%;
		padding-left: 15px;
		padding-right: 5px;
	}
	.success-message-container {
		max-width: 100%;
		justify-content: center;
        display: flex;
        flex-direction: column;
        text-align: center;
	}
	.message-sent {
		font-size: 50px;
		line-height: 55px;
	}
	.message-sent-success {
		font-size: 24px;
		line-height: 30px;
	}
	.send-another-btn {
		padding: 16px 26px;
		font-size: 22px;
		line-height: 22px;
		width: 218px;
        border: 2px solid var(--blue);
        height: 80px;
        margin: 0 auto;
	}
}
@media only screen and (max-width: 475px) {
	.contact-us-page {
        padding-top: 70px;
        padding-bottom: 100px;
    }
	.single-location-selector {
        padding: 5px 10px;
        margin-bottom: 0px;
        font-size: 14px;
        width: calc(33.333% - 3px);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
	.contact-info-wrapper {
		padding-top: 88px;
		height: 100vh;
		width: 100%;
	}
	.single-contact-info {
		padding-left: 0;
		padding-right: 0;
	}
	.contact-us-form-wrapper {
        margin-top: 10px;
        width: 100%;
    }
	.page-label {
		margin-bottom: 0px;
		font-size: 14px;
	}
	.location-label {
        font-size: 30px;
        line-height: 32px;
    }
	.contact-us-form-wrapper .wpcf7-form .left-col input[type="text"],
	.contact-us-form-wrapper .wpcf7-form .left-col input[type="email"] {
        height: 38px;
        font-size: 16px;
        padding: 5px;
    }
	.contact-us-form-wrapper .left-col .single-input-holder p {
		margin-bottom: 5px;
	}
	.contact-us-form-wrapper .recaptcha-info {
		font-size: 12px;
		margin-top: 0;
		text-align: center;
	}
	.contact-us-form-wrapper .recaptcha-info {
		position: absolute;
		bottom: 0px;
		left: 15px;
		right: 15px;
	}
	.contact-us-form-wrapper .wpcf7-form .wpcf7-submit {
        padding: 20px 20px;
        font-size: 20px;
        line-height: 20px;
        position: absolute;
        bottom: 58px;
        left: 15px;
        right: 18px;
        width: auto;
    }
	.contact-us-form-wrapper .left-col {
		width: 100%;
		padding-right: 5px;
	}
	.contact-us-form-wrapper .right-col {
		width: 100%;
		padding-left: 0;
		padding-right: 5px;
	}
	.contact-us-form-wrapper .wpcf7-form .right-col textarea {
        height: 150px !important;
        font-size: 20px;
    }
	.header-contact-us .contact-info-expander.color-white + .site-branding .custom-logo-link > .custom-logo {
		-webkit-filter: invert(0%);
		filter: invert(0%);
	}
	.contact-info-expander {
		right: 86px;
		z-index: 102;
		font-size: 18px;
	}
	.success-message-container {
		padding: 40px 0px;
	}
	.message-sent {
		font-size: 40px;
		line-height: 48px;
	}
	.message-sent-success {
		font-size: 18px;
		line-height: 22px;
	}
}
@media only screen and (max-width: 325px) {
	.location-label {
        font-size: 28px;
    }
}


/* phase 2 - HP S5 Toolkits layers animation */
.fl-holder {
	position: absolute;
	top: 0px;
	right: 30%;
	transition: all .6s ease;
	width: 50%;
	opacity: 0;
}
.fl-holder.show-layer {
	right: 0;
	opacity: 1;
}
.fl-holder.flyin-layer-hps5-1.show-layer {
	transition: all .5s ease;
}
.fl-holder.flyin-layer-hps5-2.show-layer {
	transition: all .9s ease;
}
.fl-holder.flyin-layer-hps5-3.show-layer {
	transition: all 1.2s ease;
}
.fl-holder.flyin-layer-hps5-4.show-layer {
	transition: all .9s ease;
}
.fl-holder.flyin-layer-hps5-5.show-layer {
	transition: all 1.1s ease;
}
.fl-holder.flyin-layer-hps5-6.show-layer {
	transition: all 1.3s ease;
}
.fl-holder.flyin-layer-hps5-7.show-layer {
	transition: all 1.5s ease;
}
.fl-holder.flyin-layer-hps5-8.show-layer {
	transition: all 1.7s ease;
}
@media only screen and (max-width: 768px) {
	.fl-holder {
		width: 95%;
	}
}
@media only screen and (max-width: 475px) {
	.fl-holder {
		width: 135%;
	}
}
/* phase 2 - Methodology S3 Discover layers animation */
.single-methodology-section-3 .fl-holder {
	transition: all .6s ease;
	width: 45%;
	transform: translateY(-50%);
}
.fl-holder.flyin-layer-ms3-1 {
	top: 0%;
	transition: all .8s ease;
}
.fl-holder.flyin-layer-ms3-2 {
	transition: all .5s ease;
	right: -5%;
	top: 50%;
}
.fl-holder.flyin-layer-ms3-3 {
	transition: all .8s ease;
	right: 60%; 
	top: 50%;
}
.fl-holder.flyin-layer-ms3-1.show-layer {
	transition: all .3s ease;
	top: 50%;
	right: 16%;
}
.fl-holder.flyin-layer-ms3-2.show-layer {
	transition: all .5s ease;
	right: 16%;
	top: 50%;
}
.fl-holder.flyin-layer-ms3-3.show-layer {
	transition: all .8s ease;
	right: 16%;
	top: 50%;
}
@media only screen and (max-width: 1280px) {
	.single-methodology-section-3 .fl-holder {
		width: 48%;
	}
	.fl-holder.flyin-layer-ms3-1.show-layer,
	.fl-holder.flyin-layer-ms3-2.show-layer,
	.fl-holder.flyin-layer-ms3-3.show-layer {
		right: 6%;
	}
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 1194px) and (orientation: portrait) {
	.single-methodology-section-3 .fl-holder {
		transition: all .6s ease;
		width: 90%;
		transform: translateY(0);
	}
	.fl-holder.flyin-layer-ms3-1 {
		right: 50%;
		top: 10px;
		transition: all .8s ease;
	}
	.fl-holder.flyin-layer-ms3-2 {
		transition: all .5s ease;
		right: 24%;
		top: 20px;
	}
	.fl-holder.flyin-layer-ms3-3 {
		transition: all .8s ease;
		right: 34%; 
		top: 30px;
	}
	.fl-holder.flyin-layer-ms3-1.show-layer {
		transition: all .3s ease;
		top: 100px;
		right: 5%;
	}
	.fl-holder.flyin-layer-ms3-2.show-layer {
		transition: all .5s ease;
		top: 100px;
		right: 5%;
	}
	.fl-holder.flyin-layer-ms3-3.show-layer {
		transition: all .8s ease;
		top: 100px;
		right: 5%;
	}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {
	.single-methodology-section-3 .fl-holder {
		transition: all .6s ease;
		width: 70%;
		transform: translateY(0);
	}
	.fl-holder.flyin-layer-ms3-1 {
		right: 50%;
		top: 10px;
		transition: all .8s ease;
	}
	.fl-holder.flyin-layer-ms3-2 {
		transition: all .5s ease;
		right: 24%;
		top: 20px;
	}
	.fl-holder.flyin-layer-ms3-3 {
		transition: all .8s ease;
		right: 34%; 
		top: 30px;
	}
	.fl-holder.flyin-layer-ms3-1.show-layer {
		transition: all .3s ease;
		top: 100px;
		right: 15%;
	}
	.fl-holder.flyin-layer-ms3-2.show-layer {
		transition: all .5s ease;
		top: 100px;
		right: 15%;
	}
	.fl-holder.flyin-layer-ms3-3.show-layer {
		transition: all .8s ease;
		top: 100px;
		right: 15%;
	}
}
@media only screen and (max-width: 768px) {
	.single-methodology-section-3 .fl-holder {
        width: 90%;
        top: unset;
		transform: none;
        bottom: 70px;
    }
	.fl-holder.flyin-layer-ms3-3 {
		right: 28%;
	}
}

/* nav header */
.page-nav-header {
	position: fixed;
    right: 100px;
    top: 55px;
    z-index: 0;
    font-size: 22px;
    line-height: 1em;
    color: #fff;
	transition: .8s color ease;
}
.page-nav-header span {
	position: relative;
	padding-right: 20px;
	opacity: 0;
}
.page-nav-header span:after {
	content: '';
	position: absolute;
	right: 0px;
	height: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	background-color: #fff;
	transition: .8s background-color ease;
}
@media only screen and (max-width: 1550px) {
	.page-nav-header {
		top: 34px;
		font-size: 18px;
	}
}
@media only screen and (max-width: 768px) {
	.page-nav-header {
		top: 25px;
	}
}
@media only screen and (max-width: 475px) {
	.page-nav-header {
		right: 86px;
		top: 27px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 375px) {
	.page-template-work.this-is-child-page .page-nav-header {
		font-size: 11px;
		top: 21px;
	}
	.page-template-work.this-is-child-page .page-nav-header span {
		width: 145px;
		display: inline-block;
		text-align: right;
	}
}