/*
	Theme Name: Ventula
	Description: Custom theme for Ventula
	Version: 1.0.0
	Author: Directio Forward (@direction4ward)
	Author URI: https://directionforward.com
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/


:root {
	/*--blue: #003DF8;*/
	--blue: #1A4CE5;
	--darkblue: #091934;
	--lightblue: #1AFCFC;
	--softblue: #EDF1F5;
	--black: #091934;
	--grey: #D1D1D1;
	--darkgrey: #707070;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
    font-family: 'foundersgrotesk_light', Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
	line-height: 24px;
	color: var(--black);
	overscroll-behavior: none;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}
.clear:after {
    clear:both;
}
.clear {
    zoom:1;
}
img {
	max-width:100%;
	vertical-align:middle;
}
a {
	color: inherit;
}
a:hover {

}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus,
select:focus,
textarea:focus {
	outline:0;
}

#debug {
	background-color: rgba(255, 255, 255, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	margin: 0;
	padding: 0;
	text-align: center;
	display: none;
}
#debug div {
	max-width: 480px;
    top: 50%;
    left: 50%;
    position: relative;
	transform: translate(-50%, -50%);
	padding: 2em;
	background-color: var(--darkblue);
	color: white;
	font-family: 'foundersgrotesk_light';
	font-weight: normal;
	font-size: 24px;
	line-height: 1.1;
	border-radius: 8px;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 1712px;
	width: 95%;
	margin: 0 auto;
	position: relative;
	height: 100%;
}
/* header */
.header {
	position: fixed;
	top: 0;
	right: 0;
	width: 98px;
	height: 98px;
	background-color: var(--darkblue);
	z-index: 98;
	cursor: pointer;
	color: white;
}
.header .icon {
	transform-origin: center center;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 62px;
	height: 62px;
	transform: translate(-50%, -50%);
	transition: transform 0.250s ease-in-out;
}
.header.opened .icon {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* logo */
.logo {

}
.logo-img {
	max-width: 196px;
	max-height: 28px;
	width: 100%;
	height: auto;
}
.logo-img.logo-alt {
	max-width: 152px;
	max-height: 22px;
}
.ondemand-img {
	max-width: 131px;
	max-height: 37px;
	width: 100%;
	height: auto;
}
/* nav */
.nav {
	width: 0;
	position: fixed;
	height: 100vh;
	right: 0;
	top: 0;
	background-color: var(--darkblue);
	color: var(--lightblue);
	z-index: 97;
	/*transition: width 0.500s ease-in-out;*/
}
.nav.opened {
	width: 100%;
}
.nav-holder {
	padding: 5em 5% 5em 5%;
	opacity: 0;
	height: 100%;
	/*transition: opacity 0.250s ease-in-out;*/
}
.nav-holder.opened {
	opacity: 1;
}
.nav-holder-inner {
	height: 100%;
	max-width: 900px;
	margin: 0 0 0 auto;
    display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.nav-socials {
	padding-top: 5em;
	display: flex;
	flex-wrap: nowrap;
}
.nav-socials a {
	display: inline-block;
}
.nav-socials img.socials {
	width: 32px;
	height: 32px;
	margin-right: 1em;
}
.nav-socials a:last-of-type img.socials {
	margin-right: 0;
}
.nav-socials img.jobs {
	width: auto;
	height: 32px;
}
.nav-socials img.portal {
	width: auto;
	height: 32px;
}
.nav-socials > div {
	padding-right: 2em;
	margin-right: 2em;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.nav-socials > div:last-of-type {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
	margin-bottom: 0;
}

.nav ul {
	flex-basis: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 50px;
	font-size: clamp(40px, 2.604vw, 50px);
	line-height: 0.92;
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
}
.nav ul > .menu-item {
	flex-basis: 100%;
	margin-bottom: 1em;
}
.nav ul > .menu-item:last-of-type {
	margin-bottom: 0;
}
.nav ul > .menu-item-has-children {
	flex-basis: unset;
}
.nav ul > .menu-item-has-children > a {
	color: white;
	pointer-events: none;
	font-size: 18px;
	text-transform: unset;
	display: block;
    padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nav ul a {
	text-decoration: none;
	text-transform: uppercase;
	color: var(--lightblue);
	opacity: 0.5;
	transition: opacity 0.250s ease-in-out;
	display: block;
}
.nav ul a:hover {
	opacity: 1;
}
.nav ul.sub-menu {
	font-size: 36px;
	font-size: clamp(27px, 1.875vw, 36px);
	display: block;
}
.nav ul.sub-menu .menu-item {
	flex-basis: 100%;
	margin-bottom: 0.25em;
	padding-right: 1em;
}
.nav ul.sub-menu .menu-item:last-of-type {
	margin-bottom: 0;
}



/* sidebar */
.sidebar {

}
/* footer */
.footer {
	background-color: var(--darkblue);
	color: white;
	padding: 2.5em 0 2.5em 0;
}
.footer .copyright {
	font-size: 16px;
	opacity: 0.5;
	margin: 5em 0 0 0;
	line-height: 1.25;
}
.footer .copyright br {
	display: none;
}
.footer a {
	font-size: 32px;
	margin: 0 0 0.25em 0;
	padding-bottom: 0.25em;
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px solid;
}
.footer-holder {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	column-gap: 7.5em;
	width: 100%;

}
.footer-btt {
	margin: 0 0 0 auto;
}
.backtotop {
	width: 92px;
	height: 92px;
	background-color: var(--blue);
	border-radius: 92px;
	text-align: center;
}
.backtotop span {
    width: 46px;
    height: 46px;
    display: block;
    border-radius: 46px;
    background-color: white;
    margin: 0 auto 0 auto;
	position: relative;
	transition: width 0.250s ease-in-out, height 0.250s ease-in-out, border-radius 0.250s ease-in-out;
}
.backtotop img {
	width: 10.5px;
	height: 5.75px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.backtotop:hover span {
	width: 52px;
	height: 52px;
	border-radius: 52px;
}


section * {
	/*outline: 1px solid pink;*/
}


section {
	margin: 0 auto 0 auto;
	padding: 5em 0 5em 0;
}
/*hero*/
section.hero {
	height: 110vh;
	width: 100%;
	position: relative;
}
section.hero.noslides {
	height: auto;
	min-width: calc(5em + 50px + 5em);
	padding: 5em 0 0 0;
}
.hero-holder {
	position: relative;
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}
.hero-logo a {
	display: inline-block;
}
.hero-holder > div {
	flex-basis: 100%;
}
.hero-slider {
	position: absolute;
	height: calc(100% + 1px);
	width: 50%;
	top: 0;
	right: 0;
	z-index: -1;
	display: flex;
	flex-wrap: nowrap;
	column-gap: 2em;
	pointer-events: none;
	overflow: hidden;
}
.hero-json {
	position: absolute;
	bottom: 0;
	left: 100%;
	width: 112px;
	height: 112px;
	transform: translate(0, -50%);
}
.hero-text {

}
.hero-copy {
	max-width: 500px;
	margin-left: 0;
	margin-right: auto;
}
.hero-scroll {
	width: 18px;
	height: 28px;
	display: inline-block;
}
.hero-slider-holder {
	height: 100%;
	flex-basis: 25%;
	overflow: hidden;
}
.hero-slider-holder ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	will-change: transform;
}
.hero-slider-holder ul li {
	border-radius: 20px;
	/*aspect-ratio: 107 / 135;*/
	background-color: var(--grey);
	margin-bottom: 2em;
	box-sizing: border-box;
	overflow: hidden;
}
.hero-slider-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-slider-overlay {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: calc(10vh + 5em);
	background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	z-index: 1;
}



/*team*/
.team-grid-holder {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-columns: repeat(auto-fit, minmax(calc(500px - 5em), 1fr));
	column-gap: 5em;
	row-gap: 5em;
}
.team-grid-member {

}
.team-grid-image {
	position: relative;
	aspect-ratio: 107 / 135;
	margin-bottom: 1.25em;
}
.team-grid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-grid-image img.hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.250s ease-in-out;
}
.team-grid-image:hover img.hover {
	opacity: 1;
}
.team-grid-name {
	color: var(--blue);
}
.team-grid-role {
	
}
.team-grid-rule {
	height: 1px;
	background-color: var(--blue);
	border: none;
	padding: 0;
	margin: 0.5em auto 0.75em auto;
	width: 100%;
}
.team-grid-bio {

}

/*switcher*/
section.switcher_start {
	
}
section.switcher_end {
	padding: 0 0 0 0;
}
.switcher-holder {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: start;
	border: 1px solid var(--black);
	border-radius: 6px;
	padding: 6px;
	column-gap: 6px;
	position: relative;
}
.switcher-holder::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 6px;
	width: var(--lozenge-width, calc(100% - (6px * 2)));
	height: calc(100% - (6px * 2));
	border-radius: 6px;
	background-color: var(--blue);
	z-index: 0;
	transform: translateX(var(--lozenge-left, 0px));
	transition: width 0.250s ease-in-out, transform 0.250s ease-in-out;
}
.home_services-holder .switcher-holder {
	background-color: white;
	border: 1px solid white;
}
.home_services-holder .switcher-holder::after {
	background-color: var(--black);
}
.switcher-holder button {
	z-index: 1;
	padding: 1.25em 2em;
	color: var(--black);
	border-radius: 6px;
    font-family: 'foundersgrotesk_regular';
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.250s ease-in-out;
}
.switcher-holder button.active {
	color: white;
}


/*linkedin*/
.linkedin-holder {
	overflow: hidden;
	position: relative;
	aspect-ratio: 214 / 71;
}
.linkedin-holder > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.linkedin-holder > video,
.linkedin-holder > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.linkedin-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	z-index: 1;
	border-radius: 8px;
	overflow: hidden;
	text-transform: uppercase;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	letter-spacing: 0.05em;
	font-size: 0.75em;
}
.linkedin-box-inner	{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.linkedin-box-typing {
	padding: 1em 2em;
}
.linkedin-box-typed {
	display: inline-block;
}
.linkedin-box-list {
	position: absolute;
	top: 0;
	right: 0;
    visibility: hidden;
    z-index: -10;
    margin: 0;
    padding: 0;
    list-style: none;
	text-transform: uppercase;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	letter-spacing: 0.05em;
	font-size: 0.75em;
}

.linkedin-box-icon {
	background-color: var(--blue);
	padding: 1.25em;
	width: calc(32px + 1.25em + 1.25em);
}
.linkedin-box-icon img {
	width: 32px;
    height: 32px;
    display: block;
}



/*form*/
section.form {
	background-color: var(--blue);
	color: white;
}

/*signup*/
section.signup {

}
.signup-holder {
	display: flex;
	flex-wrap: wrap;
	border-radius: 8px;
	overflow: hidden;
}
section.signup.light .signup-holder {
	background-color: var(--softblue);
}
section.signup.dark .signup-holder {
	background-color: var(--blue);
}
section.signup.left .signup-holder {
	flex-direction: row;
}
section.signup.right .signup-holder {
	flex-direction: row-reverse;
}
.signup-holder > div {
	flex: 1;
}
.signup-holder-content {

}
.signup-holder-spacer {
    padding: 5em;
}
.signup-holder-image {

}
.signup-holder-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.signup-holder h2 {
	margin-bottom: 0.25em;
	font-size: 50px;
	font-size: clamp(40px, 2.604vw, 50px);
	line-height: 0.92;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}
section.signup.light h2,
section.signup.light p {
	color: var(--black);
}
section.signup.light h2 strong {
	color: var(--blue);
}
section.signup.dark h2,
section.signup.dark h2 strong,
section.signup.dark p {
	color: white;
}
.signup-holder form {
	margin: 5vb auto 0 auto;
}
section.signup p strong,
section.signup p b {
	font-family: 'foundersgrotesk_regular';
}

/*revealer*/
section.revealer {

}
.revealer-holder {
	width: 70%;
	max-width: 1242px;
	margin: 0 auto 0 0;
}
.revealer-text {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 54px;
	font-size: clamp(29px, 2.8125vw, 54px);
	line-height: 1;
	font-kerning: none; 
	text-rendering: optimizeSpeed;
}

/*wysiwyg*/
section.wysiwyg {

}
.wysiwyg-holder {
	display: grid;
	grid-template-columns: 30% 50%;
	justify-content: space-between;
}
.wysiwyg-images-1 {
	grid-area: 1 / 1 / 2 / 2;
}
.wysiwyg-content {
	grid-area: 1 / 2 / 3 / 3;
}
.wysiwyg-images-2 {
	grid-area: 2 / 1 / 3 / 2;
}
.wysiwyg-images-1 img {
	width: 100%;
	height: auto;
}
.wysiwyg-images-1 {

}
.wysiwyg-images-2 {

}
.wysiwyg-images-holder {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2em;
	width: 100%;
    height: 100%;
    align-content: center;
}
.wysiwyg-images-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.wysiwyg-related {
	color: var(--blue);
	margin: 2.5em auto 0 auto;
}


blockquote {
	border: none;
	margin: 1.5em auto 0.5em auto;
	font-size: 40px;
	font-size: clamp(26px, 2.083vw, 40px);
	line-height: 1;
	color: var(--blue);
	text-transform: uppercase;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	position: relative;
}
blockquote p:before {
    content: "\201C";
    position: absolute;
    transform: translateX(-100%);
}
blockquote p:after {
	content: "\201D";
	position: absolute;
}
blockquote p {
	margin: 0;
}
cite {
	font-style: normal;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	line-height: 1.5;
	color: var(--blue);
	text-transform: uppercase;
	display: block;
	margin: 0 auto 5em auto;
	letter-spacing: 0.05em;
}
.wysiwyg-content ul {
	list-style: none;
	margin: 0 0 1em 0;
	padding: 0;
}
.wysiwyg-content ul li {
	padding: 0 0 0.75em 0;
	margin: 0 0 0.75em 0;
	border-bottom: 1px solid var(--darkgrey);
}
.wysiwyg-content a.button {
	display: inline-block;
	background-color: white;
	color: var(--blue);
	padding: 1.25em 6em 1.25em 2em;
	border-radius: 10px;
	border: 1px solid var(--blue);
	text-decoration: none;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 1em 1em 0 0;
	transition: color 0.250s ease-in-out, background-color 0.250s ease-in-out;
	position: relative;
}
.wysiwyg-content a.button:hover {
	background-color: var(--blue);
	color: white;
}
.wysiwyg-content a.button:after {
	content: '';
	background-size: 12px 12px;
	background-color: var(--blue);
	background-repeat: no-repeat;
	background-position: center center;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	position: absolute;
	right: 2em;
	top: 50%;
    margin-top: -6px;
	transition: background-color 0.250s ease-in-out;
}
.wysiwyg-content a.button:hover:after {
	background-color: white;
}
.wysiwyg-content a.related {
	display: inline-block;
	background-color: var(--blue);
	color: white;
	padding: 1.25em 6em 1.25em 2em;
	border-radius: 10px;
	border: 1px solid var(--blue);
	text-decoration: none;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 1em 1em 0 0;
	transition: border 0.250s ease-in-out, background-color 0.250s ease-in-out;
	position: relative;
}
.wysiwyg-content a.related.basic:after {
	content: '';
	background-size: 12px 12px;
	background-color: white;
	background-repeat: no-repeat;
	background-position: center center;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	position: absolute;
	right: 2em;
	top: 50%;
    margin-top: -6px;
}
.wysiwyg-content a.related svg {
	position: absolute;
	right: 2em;
	width: 26px;
	height: 26px;
	fill: #ffffff;
}
.wysiwyg-content a.related:hover {
	background-color: #0734BC;
	border: 1px solid #0734BC;
}


/*testimonial*/
section.testimonial {
	padding: 5em 0 0 0;
}
.testimonial-holder {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	border-bottom: 1px solid var(--grey);
	padding-bottom: 5em;
}
section.home_testimonial .testimonial-holder {
	border-bottom: none;
	padding-bottom: 0;
}
section.testimonial:nth-of-type(odd) .testimonial-holder {
	flex-direction: row;
}
section.testimonial:nth-of-type(even) .testimonial-holder {
	flex-direction: row-reverse;
}
.testimonial-content {
	flex-basis: 30%;
	display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.testimonial-content h2 {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 40px;
	font-size: clamp(26px, 2.083vw, 40px);
	line-height: 1;
	margin: 0 0 1em 0;
	text-transform: uppercase;
}
.testimonial-logo {
	height: 40px;
	width: auto;
	display: block;
}
.testimonial-image {
	background-color: var(--grey);
	flex-basis: 50%;
	position: relative;
}
.testimonial-image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-image button {
	width: 120px;
	height: 120px;
	border-radius: 120px;
	position: absolute;
	z-index: 1;
	background-color: var(--blue);
	border: 5px solid white;
	top: 50%;
	left: -60px;
	margin-top: -60px;
	transition: width 0.250s ease-in-out, height 0.250s ease-in-out, margin-top 0.250s ease-in-out, left 0.250s ease-in-out;
}
.testimonial-image button:hover {
	width: 140px;
	height: 140px;
	margin-top: -70px;
	left: -70px;
}
.testimonial-image button img {
	width: 25px;
	height: auto;
	transform-origin: center center;
	transform: rotate(0deg);
	transition: transform 0.250s ease-in-out;
}


/*blockout*/
section.blockout {
	background-color: var(--blue);
	color: white;
	padding: 0 0 0 0;
	margin-top: -1px;
	position: relative;
}
section.blockout .wrapper {
	position: unset;
}
.blockout-holder {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.blockout-content {
	flex-basis: 30%;
	display: flex;
    flex-wrap: wrap;
    align-content: space-between;
	padding: 5em 0 5em 0;
}
.blockout-content h1 {
	flex-basis: 100%;
	margin-bottom: calc(5em - 92px);
}
.blockout-image {
	flex-basis: 50%;
}
.blockout-image img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    right: 0;
    position: absolute;
	opacity: 0.5;
	mix-blend-mode: multiply;
}
.scrolltoform {
	width: 92px;
	height: 92px;
	background-color: #0035D9;
	border-radius: 92px;
	text-align: center;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}
.scrolltoform span {
    width: 46px;
    height: 46px;
    display: block;
    border-radius: 46px;
    background-color: white;
    margin: 0 auto 0 auto;
	position: relative;
	transition: width 0.250s ease-in-out, height 0.250s ease-in-out, border-radius 0.250s ease-in-out;
}
.scrolltoform img {
	width: 10.5px;
	height: 5.75px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(-1);
}
.scrolltoform:hover span {
	width: 52px;
	height: 52px;
	border-radius: 52px;
}

/*home boxes*/
section.home_boxes {

}
section.home_boxes h2 {
	font-size: 50px;
	font-size: clamp(40px, 2.604vw, 50px);
	line-height: 0.92;
	letter-spacing: -0.01em;
	border-bottom: 1px solid var(--darkgrey);
	padding-bottom: 0.25em;
	margin-bottom: 1em;
}
.home_boxes-holder {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(calc(290px + 2.5em), 1fr));
	column-gap: 2.5em;
	row-gap: 2.5em;
}
.home_boxes-box {
	background-color: var(--blue);
	color: white;
	border-radius: 25px;
	padding: 5vb;
	display: flex;
    flex-wrap: wrap;
	align-content: start;
	flex-direction: column;
}
.home_boxes-box h3 {
	font-family: 'foundersgrotesk_light';
	font-weight: normal;
	font-size: 44px;
	font-size: clamp(39px, 2.292vw, 44px);
	line-height: 1;
	margin: 0 0 0.25em 0;
	width: 100%;
}
.home_boxes-box p {
	opacity: 0.7;
	margin-bottom: 2.5em;
	max-width: 90%;
	margin-left: 0;
	margin-right: auto;
	min-height: 5vmax;
}
.home_boxes-box > img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: block;
	margin-bottom: 1.75em;
}
.homeboxeslink {
	margin: auto auto 0 0;
	align-self: end;
	width: auto;
	max-width: 92px;
	height: 92px;
	background-color: white;
	border-radius: 92px;
	text-align: center;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	text-decoration: none;
	color: var(--darkblue);
	transition: max-width 0.250s ease-out;
	overflow: hidden;
}
.homeboxeslink span {
    width: 92px;
    height: 92px;
    border-radius: 46px;
    background-color: var(--blue);
	border: calc(92px / 2 / 2) solid white;
    margin: 0 auto 0 auto;
	position: relative;
	flex: 0 0 auto;
}
.homeboxeslink img {
	height: 10.5px;
	width: 5.75px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 1px;
}
.homeboxeslink i {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	line-height: 1;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	flex: 1 0 auto;
	padding-right: calc(92px / 2);
	opacity: 0;
	transition: opacity 0.250s ease-in-out;
}
.homeboxeslink:hover {
	max-width: 250px;
}
.homeboxeslink:hover i {
	opacity: 1;
}


/*home image*/
section.home_image {

}
.home_image-holder {
	width: 50%;
	max-width: 720px;
	margin: 0 0 0 auto;
	overflow: hidden;
	position: relative;
	aspect-ratio: 3 / 2;
}
.home_image-holder ul {
	will-change: transform;
}
.home_image-holder img {
	width: 100%;
	height: calc(100% + 100px);
	position: absolute;
	object-fit: cover;
}


/*home contact*/
section.home_contact {
	
}
.home_contact-holder {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(calc(290px + 2.5em), 1fr));
	column-gap: 2.5em;
	row-gap: 2.5em;
}
.home_contact-office {
	position: relative;
	background-color: var(--grey);
	aspect-ratio: 1 / 1;
}
.home_contact-office > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.home_contact-details {
	background-color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 1em;
    row-gap: 1em;
    padding: 1em;
	aspect-ratio: 1 / 1;
	align-content: space-between;
	min-width: 290px;
	min-width: 187px;
}
.home_contact-details h2 {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	grid-column: 1 / 3;
	margin: -3% auto 0 auto;
	font-size: 80px;
	font-size: clamp(36px, 4.167vw, 80px);
	line-height: 1;
	white-space: nowrap;
	letter-spacing: -0.01em;
}
.home_contact-details p {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	margin: 0;
	font-size: 16px;
	font-size: clamp(9px, 0.833vw, 16px);
	line-height: 1;
	white-space: nowrap;
	text-align: left;
}
.home_contact-details p.goright {
	text-align: right;
}
.home_contact-image {

}
.home_contact-image ul {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
}
.home_contact-image img {
	height: auto;
}

/*home team*/
section.home_team {
	overflow: hidden;
}
.home_team-holder {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	align-items: start;
	padding-bottom: 5em;
}
.home_team-holder h2 {
	font-size: 100px;
	font-size: clamp(60px, 5.208vw, 100px);
	line-height: 1;
	letter-spacing: -0.01em;
	margin: 0;
}
.home_team-holder a {
	text-decoration: none;
	position: relative;
	display: inline-block;
	margin-right: 112px;
	white-space: nowrap;
}
.home_team-holder a img {
	height: 50%;
    width: auto;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
	max-height: calc(1em / 2);
}
.home_team-holder span {
	overflow: hidden;
    display: inline-block;
    position: relative;
	color: transparent;
}
.home_team-holder span::before {
	color: var(--blue);
	content: attr(data-label);
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all linear 0.250s;
}
.home_team-holder span::after {
	color: var(--blue);
	content: attr(data-label);
	position: absolute;
    bottom: -1em;
    left: 0;
    width: 100%;
    transition: all linear 0.250s;
}
.home_team-holder a:hover span::before {
    top: -1em;
}
.home_team-holder a:hover span::after {
	bottom: 0;
}
.home_team-slider {

}
.home_team-slider .slick-list {
	overflow: visible;
}
.home_team-slide {
	padding-right: 2.5em;
}
.home_team-slide h3 {
	color: var(--blue);
}
.home_team-image {
	aspect-ratio: 107 / 135;
	margin-bottom: 1em;
}
.home_team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*home logos*/
section.home_logos {
	
}
.home_logos-holder {
	background-color: var(--softblue);
	border-radius: 8px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	column-gap: 10%;
	overflow: hidden;
}
.home_logos-content {
	/*padding: 5em 0 5em 5em;*/
	padding: 5vb 0 5vb 5vb;
	flex: 0 0 auto;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home_logos-text {
    flex-basis: 100%;
}
.home_services-text h2,
.home_logos-text h2 {
	font-size: 50px;
	line-height: 0.92;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}
.home_logos-text p {
	font-size: 24px;
	font-size: clamp(18px, 1.25vw, 24px);
	line-height: 1.16;
}
.home_logos-logos {
	flex: 1 1 auto;
	position: relative;
}
.home_logos-logos button {
	width: 120px;
	height: 120px;
	border-radius: 120px;
	position: absolute;
	z-index: 1;
	background-color: var(--blue);
	top: 50%;
	left: -60px;
	margin-top: -60px;
	transition: width 0.250s ease-in-out, height 0.250s ease-in-out, margin-top 0.250s ease-in-out, left 0.250s ease-in-out;
}
.home_logos-logos button:hover {
	width: 140px;
	height: 140px;
	margin-top: -70px;
	left: -70px;
}
.home_logos-logos button img {
	width: 25px;
	height: 25px;
	transform-origin: center center;
	transform: rotate(0deg);
	transition: transform 0.250s ease-in-out;
}
.home_logos-logo-holder {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background-color: rgba(00, 61, 248, 0.25);
	border-left: 1px solid transparent;
}
.home_logos-logo {
    display: flex;
    align-items: center;
	aspect-ratio: 1 / 1;
	background-color: var(--softblue);
}
.home_logos-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	max-width: 180px;
	max-height: 40px;
}
.home_logos-logo img:not(:first-of-type) {
	display: none;
}
.logoboxeslink {
	margin: 2.5em 0 auto 0;
	width: auto;
	max-width: 92px;
	height: 92px;
	background-color: var(--blue);
	border-radius: 92px;
	text-align: center;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	text-decoration: none;
	color: var(--darkblue);
	transition: max-width 0.250s ease-out;
	overflow: hidden;
}
.logoboxeslink span {
    width: 92px;
    height: 92px;
    border-radius: 46px;
    background-color: white;
	border: calc(92px / 2 / 2) solid var(--blue);
    margin: 0 auto 0 auto;
	position: relative;
	flex: 0 0 auto;
}
.logoboxeslink img {
	height: 10.5px;
	width: 5.75px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 1px;
}
.logoboxeslink i {
	color: white;
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	line-height: 1;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	flex: 1 0 auto;
	padding-right: calc(92px / 2);
	opacity: 0;
	transition: opacity 0.250s ease-in-out;
}
.logoboxeslink:hover {
	max-width: 250px;
}
.logoboxeslink:hover i {
	opacity: 1;
}

/*home testimonial*/
section.home_testimonial {

}
.testimonial-link h2 {
	font-family: 'foundersgrotesk_light';
	font-size: 100px;
	font-size: clamp(60px, 5.208vw, 100px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0;
	text-transform: unset;
}
.testimonial-link a {
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	display: inline-block;
	top: 0.25em;
}
.testimonial-link a img {
	height: 50%;
    width: auto;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
	max-height: calc(1em / 2);
}
.testimonial-link a span {
	overflow: hidden;
    display: inline-block;
    position: relative;
	color: transparent;
}
.testimonial-link a span::before {
	color: var(--blue);
	content: attr(data-label);
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.200s ease-in-out;
}
.testimonial-link a span::after {
	color: var(--blue);
	content: attr(data-label);
	position: absolute;
    bottom: -1em;
    left: 0;
    width: 100%;
    transition: all 0.200s ease-in-out;
}
.testimonial-link a:hover span::before {
    top: -1em;
}
.testimonial-link a:hover span::after {
	bottom: 0;
}
.home_testimonial-quote:not(:first-of-type) {
	display: none;
}
.home_testimonial-image {
	width: 100%;
	height: 100%;
}
.home_testimonial-image:not(:first-of-type) {
	display: none;
}

/*home services*/
section.home_services {
	background-color: var(--blue);
	color: white;
}
.home_services-holder {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 10%;

}
.home_services-text {
	/*padding: 5em 0 5em 5em;*/
	padding: 5vb 0 5vb 5vb;
	flex: 0 0 auto;
}
.home_services-services {
	flex: 1 1 auto;
	/*padding: 5em;*/
	padding: 5vb;
}
.home_services-service i:not(:first-of-type) {
	display: none;
}
.home_services-services p {
	font-size: 24px;
	line-height: 1.16;
	text-transform: none;
	margin: 3em auto 0.25em 0;
	max-width: 75%;
}
.home_services-list {

}
.home_services-list {
	list-style: none;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	font-size: 50px;
	font-size: clamp(25px, 2.604vw, 50px);
	line-height: 0.92;
}
.home_services-list li {
	text-transform: uppercase;
	position: relative;
	padding: 0.5em 0 0.5em 0;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}
.home_services-list li i {
	font-style: normal;
}
.home_services-list li .spanspacer {
	visibility: hidden !important;
	opacity: 1 !important;
}
.home_services-list li.home_services-contact {
	padding: 0 0 0 0;
	display: flex;
}
.home_services-list li:first-of-type {
	padding-top: 0;
}
.home_services-list li:not(.home_services-contact) {
	border-bottom: 1px solid white;
}
.home_services-list li > span {
	font-family: monospace;
	min-width: 100px;
	font-size: 14px;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
	margin-top: 6px;
	margin-left: -3px;
}
.home_services-contact a {
	text-decoration: none;
}
.home_services-contact a span {
	overflow: hidden;
    display: inline-block;
    position: relative;
    color: transparent;
}
.home_services-contact a span::before {
    color: white;
    content: attr(data-label);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.200s ease-in-out;
}
.home_services-contact a span::after {
    color: white;
    content: attr(data-label);
    position: absolute;
    bottom: -1.16em;
    left: 0;
    width: 100%;
    transition: all 0.200s ease-in-out;
}
.home_services-contact a:hover span::before {
	top: -1.16em;
}
.home_services-contact a:hover span::after {
	bottom: 0;
}

/*------------------------------------*\
    BUTTONS
\*------------------------------------*/

button {
	border: none;
	background: none;
	cursor: pointer;
	appearance: none;
	padding: 0;
	margin: 0;
}
.hero-button {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.05em;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	border-radius: 6px;
	padding: 1.4em 2em;
	margin: 2em 0 2em 0;
	min-width: 320px;
}
button.blue {
	color: var(--blue);
	border: 1px solid var(--blue);
}







/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    FORMS
\*------------------------------------*/

.gform_validation_errors,
.gform_required_legend,
.gfield--type-honeypot,
.grecaptcha-badge,
.gfield.hidden_label > label,
.gfield.hidden_label > legend {
	display: none !important;
}

.gfield_validation_message {
	color: #ff9999;
}
#gform_2 .gfield_validation_message {
	margin-top: -1em;
    margin-bottom: 1em;
}

form {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-transform: uppercase;
}
form .gfield_html {
	text-transform: none;
}
form small {
	display: block;
	font-size: 0.9em;
	line-height: 1;
	opacity: 0.7;
	letter-spacing: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

input,
select,
textarea {
	background-color: transparent;
	border: none;
	padding: 0 0 1em 0;
	margin: 0 auto 1em auto;
	width: 100%;
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	transition: border 0.250s ease-in-out;
}
#gform_2 input,
#gform_2 select,
#gform_2 textarea {
	background-color: white;
    padding: calc(2em - 1px) 2em calc(2em - 1px) 2em;
	color: var(--black);
	border-bottom: unset;
	border-radius: 10px;
}
input:focus,
select:focus,
textarea:focus {
	border-bottom: 1px solid rgba(255, 255, 255, 1);
}
textarea {
	resize: none;
	height: calc(1.5em + 1em);
}
legend,
label {
	display: block;
    margin: 0 0 0.5em 0;
}
input[type="submit"] {
	background-color: var(--darkblue);
	color: white;
	height: calc(100% - 1em + 2px);
    padding: 1em 2em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: left;
	border-radius: 10px;
	border: none;
	background-image: url('img/submit.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 2em) center;
	background-size: auto 1.5em;
	transition: border 0.250s ease-in-out;
}
#gform_2 input[type="submit"] {
	background-color: var(--darkblue);
	color: white;
}


.gfield {
	/*outline: 1px solid pink;*/
}
.gform_fields {
	width: 100%;
    display: grid;
	column-gap: 2.5em;
	row-gap: 2.5em;
}
#gform_2 .gform_fields {
	column-gap: 1em;
	row-gap: 0;
}
.gfield_checkbox {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	transition: border-bottom 0.250s ease-in-out;
}
.gfield_checkbox:hover {
	border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.gchoice {
	display: flex;
	flex-direction: row-reverse;
    flex-wrap: nowrap;
	opacity: 0.5;
	transition: opacity 0.250s ease-in-out;
}
.gchoice:hover {
	opacity: 1;
}
.gchoice label {
	padding-right: 0.75em;
}

input[type="checkbox"] {
	width: 20px;
	height: 20px;
	appearance: none;
	border-radius: 20px;
	border: 1px solid white;
	position: relative;
	cursor: pointer;
}
input[type="checkbox"]:checked {
	background-color: white;
}

#field_2_7 {
	grid-area: auto;
}
#field_2_6 {
	grid-area: auto;
}
#field_2_3 {
	grid-area: auto;
}
#field_2_8 {
	grid-area: auto;
	order: 999999;
}
#gform_2 #field_submit {
	grid-area: auto;
}

#field_1_3 {
	grid-area: 2 / 1 / 2 / 1;
}
#field_1_6 {
	grid-area: 2 / 2 / 2 / 2;
}
#field_1_5 {
	grid-area: 2 / 3 / 2 / 3;
}
#field_1_8 {
	grid-area: 2 / 4 / 2 / 4;
}
#field_1_7 {
	grid-area: 3 / 1 / 3 / 4;
}
#field_1_9 {
	grid-area: 1 / 1 / 1 / 4;
	order: 999999;
	margin-top: -2.5em;
}
#field_submit {
	grid-area: 3 / 4 / 3 / 4;
}

.ginput_complex {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1em;
}

::-webkit-input-placeholder { /* Safari */
	color: white;
	opacity: 0.5;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
::-moz-placeholder { /* Firefox 19+ */
	color: white;
	opacity: 0.5;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
::placeholder { /* Chrome/Opera */
	color: white;
	opacity: 0.5;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
#gform_2 ::-webkit-input-placeholder { /* Safari */
	color: var(--black);
}
#gform_2 ::-moz-placeholder { /* Firefox 19+ */
	color: var(--black);
}
#gform_2 ::placeholder { /* Chrome/Opera */
	color: var(--black);
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
    font-family: 'foundersgrotesk_light';
    src: url('fonts/foundersgrotesk-light.woff2') format('woff2'),
         url('fonts/foundersgrotesk-light.woff') format('woff'),
         url('fonts/foundersgrotesk-light.ttf') format('truetype'),
		 url('fonts/foundersgrotesk-light.otf') format('opentype'),
         url('fonts/foundersgrotesk-light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'foundersgrotesk_regular';
	src: url('fonts/foundersgrotesk-regular.woff2') format('woff2'),
		 url('fonts/foundersgrotesk-regular.woff') format('woff'),
		 url('fonts/foundersgrotesk-regular.ttf') format('truetype'),
		 url('fonts/foundersgrotesk-regular.otf') format('opentype'),
		 url('fonts/foundersgrotesk-regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'foundersgrotesk_medium';
	src: url('fonts/foundersgrotesk-medium.woff2') format('woff2'),
		 url('fonts/foundersgrotesk-medium.woff') format('woff'),
		 url('fonts/foundersgrotesk-medium.ttf') format('truetype'),
		 url('fonts/foundersgrotesk-medium.otf') format('opentype'),
		 url('fonts/foundersgrotesk-medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

h1 {
	font-family: 'foundersgrotesk_light';
	font-weight: normal;
	font-size: 50px;
	font-size: clamp(40px, 2.604vw, 50px);
	line-height: 0.92;
	text-transform: uppercase;
	position: relative;
	margin: 0 0 0.5em 0;
	display: inline-block;
}
h1 b,
h1 strong {
	display: block;
	font-family: 'foundersgrotesk_medium';
	font-weight: normal;
}
section.hero h1 b,
section.hero h1 strong {
	color: var(--blue);
}
h2 {
	font-family: 'foundersgrotesk_light';
	font-weight: normal;
	font-size: 30px;
	line-height: 32px;
	margin: 0 0 2em 0;
}
h2 b,
h2 strong {
	display: block;
	font-family: 'foundersgrotesk_medium';
	font-weight: normal;
}
section.home_services h2 b,
section.home_services h2 strong {
	display: unset;
}
section.home_logos h2 b,
section.home_logos h2 strong {
	color: var(--blue);
	display: unset;
}
h3 {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 30px;
	line-height: 32px;
	text-transform: uppercase;
	margin: 0 0 0.1em 0;
}
h4 {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	margin: 0 0 0.2em 0;
}
h5 {

}
h6 {
	font-family: 'foundersgrotesk_regular';
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0 0 0 0;
	letter-spacing: 0.05em;

}


p {
	margin: 0 0 1em 0;
}
p strong,
p b {
	font-family: 'foundersgrotesk_medium';
	font-weight: normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

.mobile-title {
	display: none;
}

@media only screen and (max-width: 1280px) {
	.signup-holder-spacer {
		padding: 2.5em;
	}
	
}
@media only screen and (max-width: 820px) {
	.wrapper {
		width: 90%;
	}
	section {
		padding: 2em 0 2em 0;
	}
	section.hero {
		height: 100svh;
		padding: 2em 0 0 0;
	}
	section.testimonial {
		padding: 2em 0 0 0;
	}

	.signup-holder > div {
		flex-basis: 100%;
	}
	.signup-holder-spacer {
		padding: 1em;
	}
	.signup-holder h2 {
		font-size: clamp(30px, 8vw, 40px);
	}

	.header {
		height: 96px;
		width: 96px;
		background-color: transparent;
	}
	.header .icon {
		width: 40px;
		height: 40px;
	}

	.mobile-title {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 calc(1em + 96px) 0 1em; 
        background-color: var(--blue);
        color: white;
        display: block;
        height: 96px;
        line-height: 96px;
		z-index: 97;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.0);
		transition: box-shadow 0.250s ease-in-out;
	}
	.mobile-title.scrolled {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	}

	.nav-holder {
		padding: 2.5em 5% 2.5em 5%;
		height: calc(100% - 2.5em - 2.5em);
	}
	.nav ul > .menu-item {
		margin-bottom: 0.5em;
	}
	.nav-socials {
		flex-wrap: wrap;
		padding-top: 2.5em;
	}
	.nav-socials > div {
        flex-basis: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        margin-bottom: 1em;
	}

	.ondemand-img {
		display: none;
	}
	.hero-logo {
		visibility: hidden;
	}
	.hero-slider {
		width: 125%;
		gap: 1em;
		left: -12.5%;
		height: 50%;
	}
	.hero-slider-holder ul li {
		margin-bottom: 1em;
	}
	.hero-holder {
		width: 100%;
		align-content: space-around;
	}
	.hero-spacer {
		order: 1;
	}
	.hero-text {
		order: 2;
	}
	.hero-json {
		width: 90px;
		height: 90px;
		left: unset;
        right: 0;
	}


	.home_image-holder {
		width: 100%;
		max-width: 100%;
	}

	.logoboxeslink,
	.homeboxeslink {
		max-width: unset;
	}
	.logoboxeslink i,
	.homeboxeslink i {
		opacity: unset;
	}


	.home_logos-holder {
		flex-wrap: wrap;
	}
	.home_logos-content,
	.home_logos-logos {
		width: 100%;
		padding: 1em;
	}
	.home_logos-logos {
		position: unset;
	}
	.home_logos-logo-holder {
		grid-template-columns: repeat(1, 1fr);
		border-left: none;
	}
	.home_logos-logo {
		aspect-ratio: 21 / 9;
	}
	.home_logos-contact {
		display: none;
	}
	.home_logos-text p {
		margin-bottom: 0;
		width: calc(100% - 1em - 92px);
		max-width: 360px;
	}
	.home_logos-text p br {
		display: none;
	}
	.home_logos-logos button {
		width: 92px;
		height: 92px;
		border-radius: 92px;
		left: unset;
		right: 1em;
		margin-top: 0;
		top: calc(1em + (50px * 0.92 * 2) + 0.5em);
	}
	.home_logos-logos button:hover {
		width: 92px;
		height: 92px;
		margin-top: 0;
		left: unset;
	}

	
	.home_services-holder {
		flex-wrap: wrap;
	}
	.home_services-text,
	.home_services-services {
		width: 100%;
		padding: 1em;
	}
	.home_services-list li i {
		letter-spacing: -0.015em;
	}
	.home_services-list li > span {
		flex-basis: 100%;
		margin-bottom: 0.5em;
		font-size: 12px;
	}
	.home_services-list li.home_services-contact .spanspacer {
		display: none;
	}
	.switcher-holder {
		width: 100%;
	}

	.home_team-holder {
		flex-wrap: wrap;
		padding-bottom: 2.5em;
	}
	.home_team-holder a {
		border-bottom: 3px solid var(--blue);
		margin-right: unset;
	}
	.home_team-holder a:hover span::before {
    	top: unset;
	}
	.home_team-holder a:hover span::after {
		bottom: unset;
	}
	.team-grid-holder {
		gap: 2.5em;
	}
	#team-json {
		display: none;
	}

	.revealer-holder {
		width: 100%;
	}

	.testimonial-holder {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		padding-bottom: 2em;
		position: relative;
	}
	.testimonial-link {
		margin-top: 2.5em;
	}
	.testimonial-link a {
		border-bottom: 3px solid var(--blue);
	}
	.testimonial-link a:hover span::before {
		top: unset;
	}
	.testimonial-link a:hover span::after {
		bottom: unset;
	}
	.testimonial-content,
	.testimonial-image {
		flex-basis: 100%;
		margin-bottom: 1em;
	}
	.testimonial-image {
		position: unset;
	}
	.testimonial-image button {
		left: unset;
		bottom: calc(60px + 2.5em + 1em + 3px + 3px + 0.25em);
		top: unset;
		width: 92px;
		height: 92px;
		border-radius: 92px;
		right: 0;
		border: none;
		margin-top: 0;
	}
	.testimonial-image button:hover {
		width: 92px;
		height: 92px;
		margin-top: 0;
		left: unset;
	}


	.home_contact-holder {
		gap: 1em;
	}
	.home_contact-details {
		padding: 1vb;
	}

	.linkedin-holder {
		aspect-ratio: 75 / 91;
	}
	.linkedin-box-typing {
		padding: 1em;
	}
	.linkedin-box-icon {
		padding: 1em;
		width: calc(27px + 1em + 1em)
	}
	.linkedin-box-icon img {
		width: 27px;
		height: 27px;
	}

	.team-grid-holder {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}

	.blockout-holder {
		display: block;
	}
	.blockout-image {
		position: relative;
		aspect-ratio: 4 / 3;
		width: 100vw;
        left: -5vw;
	}
	.blockout-content {
		padding: 2.5em 0 2.5em 0;
	}
	.blockout-content h1 {
		margin-bottom: 1.25em;
	}
	.blockout-image img {
		width: 100%;
	}
	.scrolltoform {
		width: 72px;
		height: 72px;
	}
	.scrolltoform span {
		width: 36px;
		height: 36px;
	}

	.wysiwyg-holder {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
	.wysiwyg-holder > div {
		grid-area: unset !important;
		margin-bottom: 1em;
	}
	section.switcher_end .wysiwyg-holder > div {
		margin-bottom: 0;
	}
	.wysiwyg-content a.button,
	.wysiwyg-content a.related {
		width: 100%;
		margin-right: 0;
	}
	.wysiwyg-images-holder {
		gap: 1em;
	}



	.gfield {
		grid-area: unset !important;
	}

	button {
		width: 100%;
	}
	input[type="submit"] {
		height: auto;
		padding: 2em 2em;
	}

	.footer-holder {
		column-gap: 2.5em;
	}
	.footer .copyright {
		margin-top: 2.5em;
	}
	.footer .copyright br {
		display: unset;
	}
	.footer-btt {
		flex-basis: auto;
		order: 2;
	}
	.footer-contacts {
		margin-top: 1em;
		order: 3;
	}



	h1 {
		display: block;
	}
	cite {	
		margin-bottom: 2em;
	}

}



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

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
