/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/*Colors*/
:root {
	--grey: #4C6681;
	--blue: #0E2A47;
	--yellow: #D4A72C;
	--dark: black;
	--gradient: linear-gradient(-175deg, black 12%, #0c243c, #264769);
	--gradientFull: linear-gradient(-165deg, #0c243c 0%, black 40%, #264769);
	--row: 120px;
	--gridLite: 30px;
	--grid: 6vw;
	--gridLg: 12vw;
	--transition: .25s;
	--radius: clamp(18px, 2vw, 25px);
	--gap:  clamp(20px, 3vw, 50px);
}
.blue {
	background: var(--blue);
}
.black {
	background: black;
}
.black *, .blue * {
    color: white;
}
.black p, .blue p {
    font-weight: 300;
}
.black .contour {
	box-shadow: inset 0 0 0 1px white;
}
.whiteBg {
	background: white;
}
.whiteBg * {
	color: black;
}


/*Fonts*/
@font-face {
    font-family: 'Base Neue';
    src: url('/wp-content/themes/generatepress_child/fonts/BaseNeue-Wide.woff2') format('woff2'),
         url('/wp-content/themes/generatepress_child/fonts/BaseNeue-Wide.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Base Neue';
    src: url('/wp-content/themes/generatepress_child/fonts/BaseNeue-WideMedium.woff2') format('woff2'),
         url('/wp-content/themes/generatepress_child/fonts/BaseNeue-WideMedium.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*LOADER/SPLASH*/
.splash.timeout {
    pointer-events: none;
	opacity: 0;
}
.splash {
    position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    -webkit-transition: all .75s ease;
	-moz-transition: all .75s ease;
	-o-transition: all .75s ease;
	transition: all .75s ease;
    transform: scale(1);
    opacity: 1;
    pointer-events: initial;
}
.splash img {
    width: 500px;
	opacity:0;
 	animation: fadein 1s ease both;
    animation-delay: 0.15s;
	display:none;
}


/*Animation : Fade in*/
@-webkit-keyframes fadein {
    100% {
 opacity:1;
}
}
@keyframes fadein {
    100% {
 opacity:1;
}
}
/*Animation : Fade out*/
@-webkit-keyframes fadeout {
    100% {
 opacity:0;
}
}
@keyframes fadeout {
    100% {
 opacity:0;
}
}
.fader {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fader.in-view {
	transition-delay: 0.25s;
	opacity: 1;
	transform: translateY(0);
}


/*COOKIES*/
body .cky-consent-container .cky-consent-bar {
    border-radius: 25px;
    background: #ffffff30 !important;
    backdrop-filter: blur(11px);
    box-shadow: none !important;
    border: 0;
    padding: 40px 30px 30px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid white;
}
body .cky-btn {
    font-size: 13px;
    font-weight: 500;
    color: black !important;
    letter-spacing: unset;
    padding: 7px 35px;
	letter-spacing: 1px;
    max-width: fit-content;
    border: 0 !important;
	text-transform: uppercase;
	font-family: 'Manrope';
	background: white!important;
    transition: var(--transition);
    border-radius: 99px;
}
body .cky-btn-reject {
    background: black !important;
	color: white!important;
}
body .cky-btn:hover{
    background: var(--yellow) !important;
	color: white!important;
	opacity:1!important;
}
body .cky-notice-btn-wrapper {
    justify-content: center;
    align-items: center;
	margin-top:20px;
	padding:0!important;
}
body .cky-notice-des p, body .cky-notice-des a.cky-policy {
    font-size: 13px;
}
body .cky-notice-des p {
    line-height: 1.4;
    padding: 0 15px;
    overflow: hidden;
    color: white !important;
}
body .cky-notice-des {
    overflow: hidden;
}
body .cky-notice .cky-title {
    margin: 0 0 7px 0;
    font-size: 20px;
	display:none;
    font-weight: 400;
}
body .cky-box-bottom-right {
    bottom: var(--gridLite);
    right: var(--gridLite);
}
@media (max-width: 576px) {
body .cky-box-bottom-right {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: calc(100% - 40px);
}
}
@media (max-width: 440px) {
body .cky-notice-des {
	max-height: none;
	padding: 0;
}
body .cky-notice-des p {
    padding: 0;
}
body .cky-notice-des p, body .cky-notice-des a.cky-policy {
    display: block;
}
body .cky-notice-btn-wrapper {
	gap: 8px;
	flex-direction: row-reverse;
}
body .cky-consent-container .cky-consent-bar {
    padding: 20px 30px;
}
}


/*GÉNÉRAL*/
html {
    -webkit-text-size-adjust: 100%!important; /* Prevent font scaling in landscape while allowing user zoom */
}
html.vc_mobile {
	overflow-x:hidden;
}
body .featured-image {
    display: none!important;
}
a {
    color: black;
	transition: var(--transition);
}
body:not(.home) {
    background: var(--gradientFull);
}
body .vc_column_container>.vc_column-inner {
    padding-left: 0;
    padding-right: 0;
}
.inside-article .entry-header {
	display:none;
}
.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
    margin-top: 0;
}
.separate-containers .comments-area, .separate-containers .inside-article, .separate-containers .page-header, .separate-containers .paging-navigation {
    padding: 0;
}
.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .one-container .container, .separate-containers .paging-navigation, .inside-page-header {
    background-color: transparent;
}
.separate-containers .site-main {
    margin: 0;
}
body .grid-container {
    max-width: 100%;
}
body .vc_row {
    margin-left: 0;
    margin-right: 0;
}
body .wrap {
    padding-top: var(--row);
	padding-bottom: var(--row);
	padding-left: var(--grid);
	padding-right: var(--grid);
}
body .row {
    padding-top: var(--row);
	padding-bottom: var(--row);
}
body .grid {
	padding-left: var(--grid);
	padding-right: var(--grid);
}
body .gridLg {
	padding-left: var(--gridLg);
	padding-right: var(--gridLg);
}
body, input, button, a, body #mobmenuright li a, textarea {
	font-family: 'Base Neue';
}
body {
    overflow-x: hidden!important;
}
body, p {
    color: black;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}
.large p {
	font-size: 28px;
}
.sm p, .gfield_consent_label {
	font-size: 13px;
}
p, .gfield_consent_label, .gfield_consent_label a {
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
    margin:0;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}
h1, h2 {
    font-size: 65px;
}
h3 {
    font-size: 45px;
	line-height: 1.1;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 19px;
    line-height: 1.4;
}
h6 {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-bottom: 25px;
}
.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 0!important;
}
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0!important;
}
a.button, .mobmenu-content li a.button, .custom-file-button, body .main-navigation .main-nav ul li.cta a, body .mobmenu-content .cta a, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus, body .gform_wrapper.gravity-theme .gform_footer button, body .gform_wrapper.gravity-theme .gform_footer input, body .gform_wrapper.gravity-theme .gform_page_footer button, body .gform_wrapper.gravity-theme .gform_page_footer input {
    color: white;
    border: 0;
    background: black;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 15px 4vw 14px;
    font-weight: 500;
    margin: 0;
    border-radius: 99px;
    border: 0;
    line-height: normal !important;
    transition: var(--transition);
	font-family: "Manrope", sans-serif;
}
a.button.grey:hover, a.button.white:hover, a.button:hover, .white a.button:hover, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus:hover, body .gform_wrapper.gravity-theme .gform_footer button:hover, body .gform_wrapper.gravity-theme .gform_footer input:hover, body .gform_wrapper.gravity-theme .gform_page_footer button:hover, body .gform_wrapper.gravity-theme .gform_page_footer input:hover, main-navigation .main-nav ul li.cta.white a:hover, body .mobmenu-content .cta.white a:hover, body .white .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
    color: white;
    background-color: var(--yellow);
	box-shadow: none;
}
a.button.grey {
    background-color: var(--grey);
	box-shadow: inset 0 0 0 1px white;
}
a.button.white, .custom-file-button, .mobmenu-content li a.button.white {
    background-color: white;
	color: var(--dark);
}
a.button.yellow {
    background-color: var(--yellow);
	color: white;
}
.book-slidein__buttons a.button:hover {
    background-color: var(--grey)!important;
}
body .strip .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    background: transparent;
    color: white;
}
body .strip .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover, body #services .strip .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
    background: transparent;
    color: white;
}
.white a.button, body .main-navigation .main-nav ul li.cta.white a, body .mobmenu-content .cta.white a, body .white .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    background: white;
    color: black;
}
body .vc_btn3-container {
    margin-bottom: 0;
}
.center {
    text-align:center;
}


/*TEXT SCROLL*/
@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}
.orb {
    width: auto;
    height: 8vw;
    background: transparent!important;
    border-radius: 0;
    display: inline-block;
    margin: 0 2vw;
    float: left;
    transition: all .2s ease-out;
    font-size: 6vw;
    line-height: 1.3;
    text-transform: none;
    font-weight: 600;
    color: white;
    color: black;
    -webkit-text-stroke-color: inherit;
    -webkit-text-fill-color: rgba(0,0,0,0);
    -webkit-text-stroke-width: 3px;
	font-family: 'Playfair Display', serif;
}
.orb.full {
    -webkit-text-fill-color: rgb(0 19 43);
}
.orb.dot {
    opacity: 1;
}
.marquee--inner {
    display: block;
    width: 225%;
    margin: 0;
    height: 9vw;
    position: absolute;
    animation: marquee 22s linear infinite;
}
.marquee {
    height: 9vw;
    width: 100%;
    border: 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto -1vw;
}


/*HOME*/
#hero {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#hero .vc_col-sm-12 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100vh;
    width: 100%;
}
#hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    background: linear-gradient(27deg, black, transparent);
    opacity: 0.75;
}
#hero *:not(.vc_btn3) {
    color: white;
}
#hero .vc_column_container>.vc_column-inner {
    padding:0;
}
#hero .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    margin: 30px 0 0;
}
.description-section p {
	max-width: 1000px;
	margin: 0 auto;
}
/*Industries*/
.industries-grid {
    display: grid;
    grid-template-columns: 12% 26% 15% 29% 18%;
    grid-template-rows: 300px 300px 260px;
    position: relative;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}
.industry-item {
    position: relative;
    padding: 22px;
    display: flex;
	transition: var(--transition);
    align-items: flex-end;
}
.industry-item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
}
.industry-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}
.industry-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}
.industry-item:nth-child(4) {
    grid-column: 5;
    grid-row: 1;
}
.industry-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}
.industry-item:nth-child(6) {
    grid-column: 4;
    grid-row: 2;
}
.industry-item:nth-child(7) {
    grid-column: 5;
    grid-row: 2;
}
.industry-item::before {
    content: '';
    position: absolute;
    left: -4px;
    bottom: -4px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    z-index: 2;
	transform: scale(1);
	transition: 0.4s;
}
.industry-title {
    color: white;
	text-transform: uppercase;
    font-size: clamp(20px,1.6vw,30px);
    line-height: 1.1;
    font-weight: 400;
	cursor: default;
	padding-bottom:0px;
}
.industry-item:hover .industry-title {
    color: var(--yellow);
	padding-bottom:5px;
}
.industry-item:hover::before {
    background: var(--yellow);
	transform: scale(1.5);
}
.industries-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right,transparent 12%,white 12%,white calc(12% + 1px),transparent calc(12% + 1px)),
        linear-gradient(to right,transparent 38%,white 38%,white calc(38% + 1px),transparent calc(38% + 1px)),
        linear-gradient(to right,transparent 53%,white 53%,white calc(53% + 1px),transparent calc(53% + 1px)),
        linear-gradient(to right,transparent 82%,white 82%,white calc(82% + 1px),transparent calc(82% + 1px)),
        linear-gradient(to bottom,transparent 300px,white 300px,white 301px,transparent 301px),
        linear-gradient(to bottom,transparent 600px,white 600px,white 601px,transparent 601px);
}
.industries-grid.fader .industry-title {
    opacity: 0;
    transform: translateY(20px);
	transition: var(--transition);
}
.industries-grid.fader.in-view .industry-title {
    opacity: 1;
    transform: translateY(0);
}
.industries-grid.fader.in-view .industry-item:nth-child(1) .industry-title {
    transition-delay: .15s;
}
.industries-grid.fader.in-view .industry-item:nth-child(2) .industry-title {
    transition-delay: .3s;
}
.industries-grid.fader.in-view .industry-item:nth-child(3) .industry-title {
    transition-delay: .45s;
}
.industries-grid.fader.in-view .industry-item:nth-child(4) .industry-title {
    transition-delay: .6s;
}
.industries-grid.fader.in-view .industry-item:nth-child(5) .industry-title {
    transition-delay: .75s;
}
.industries-grid.fader.in-view .industry-item:nth-child(6) .industry-title {
    transition-delay: .9s;
}
.industries-grid.fader.in-view .industry-item:nth-child(7) .industry-title {
    transition-delay: 1.05s;
}
.industries-grid.fader.animation-done .industry-title {
    transition-delay: 0s!important;
}
/*Steps*/
.steps-section {
	background: var(--gradient);
}
.steps-section > .wrap {
    padding-bottom: 0;
}
.description p {
    max-width: 600px;
	margin: 35px auto 0;
}
.steps-section * {
	color: white;
}
.steps {
    --steps-line-color: rgba(255, 255, 255, .8);
    position: relative;
    overflow: hidden;
    padding: 0 0 var(--row);
	margin-top: var(--row);
}
.steps-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--steps-line-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}
.steps.is-visible .steps-line {
    transform: scaleY(1);
}
.step-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.step-content {
    width: 100%;
    max-width: 620px;
}
.step-left .step-content {
    grid-column: 1;
    justify-self: end;
    padding: clamp(30px, 4vw, 50px) clamp(180px, 18vw, 280px) clamp(30px, 4vw, 50px) 0;
    text-align: right;
}
.step-right .step-content {
    grid-column: 2;
    justify-self: start;
    padding: clamp(15px, 2vw, 30px) 0 clamp(15px, 2vw, 30px) clamp(180px, 18vw, 280px);
    text-align: left;
}
.step-branch {
    position: absolute;
    top: 50%;
    width: clamp(140px, 18vw, 250px);
    height: 1px;
    background: var(--steps-line-color);
    transform: scaleX(0);
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
.step-content h4 {
    margin: 0 0 20px;
}
.step-description > *:last-child {
    margin-bottom: 0;
}
.step-left .step-branch {
    right: 50%;
    transform-origin: right;
}
.step-right .step-branch {
    left: 50%;
    transform-origin: left;
}
.step-item.is-visible .step-branch {
    transform: scaleX(1);
}
.step-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--steps-line-color);
    border-radius: 50%;
    background: var(--grey);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.5);
    transition: opacity .4s ease .35s, transform .7s cubic-bezier(.22, 1, .36, 1) .35s;
}
.step-plus span {
    display: block;
    font-size: 36px;
    font-weight: 200;
	transform: translateX(1px);
    line-height: 1;
}
.step-item.is-visible .step-plus {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/*MIMIC*/
#mimic {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
sup {
    bottom: 4px;
    font-size: 60%;
    font-weight: 600;
}
.tags > div > div > .wpb_wrapper {
	display:flex;
	gap: 0;
}
.tag {
    width: fit-content;
    border: 1px solid;
    border-radius: 99px;
    font-size: 14px;
	margin-bottom: 35px!important;
}
.tag.center {
    margin-left: auto;
	margin-right: auto;
}
.tag p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 8px 30px;
    line-height: 1;
}
.boxes::before, .boxes::after {
    display: none !important;
}
.boxes {
    display: flex;
    gap: var(--gap);
    margin-top: 50px;
}
.boxes > div {
    border-radius: var(--radius);
    padding: clamp(30px, 5vw, 80px);
    padding-top: clamp(100px, 15vw, 200px);
}
.boxes h6 {
    padding-top: 10px;
}
/*Why*/
.why-tabs {
    display: flex;
    align-items: center;
    padding: 80px 0 30px;
}
.why-tabs > div {
    border-right: 1px solid;
    padding: clamp(25px, 3.5vw, 50px);
}
.why-tabs > div:last-child {
    border-right: 0;
}
/*Logo*/
.logo-section {
    background: linear-gradient(0deg, black 11.156vw, transparent 11.15vw);
}
.logo-section img {
	width:100vw;
}
/*Value*/
.value-section::before, .value-section::after {
    display: none !important;
}
body .value-section {
    padding-top: 0;
    display: flex;
    gap: clamp(25px, 5vw, 75px);
}
.value-section > div {
    margin-top: -3.5vw;
}
.customer-value {
    border-top: 1px solid white;
    margin-top: 80px;
}
.customer-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 80px);
    padding: 1.68vw 0;
    border-bottom: 1px solid white;
    transition-property: opacity, transform, background-color, padding;
    transition-duration: .6s, .6s, .35s, .35s;
    transition-timing-function: ease;
}
.customer-value-row:hover {
    padding-left: clamp(15px, 1.5vw, 30px);
    padding-right: clamp(15px, 1.5vw, 30px);
    background: var(--yellow);
}
.customer-value-row h5 {
    margin: 0;
    flex: 1;
}
.customer-value-subtitle {
    width: min(42%, 420px);
    text-align: right;
}
.customer-value-subtitle > * {
    margin: 0;
}
/*Start now*/
.start-section .description p {
    max-width: 390px;
	padding-bottom:60px;
}


/*PRICING*/
body .pricing-section {
    padding-top:  var(--row);
}
.pricing-section * {
	color: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(15px, 1.5vw, 25px);
    align-items: start;
    padding-top: var(--row);
}
.pricing-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    position: relative;
}
.pricing-featured-label {
    position: absolute;
	top:-30px;
	left: 0;
	right:0;
}
.pricing-featured-label span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}
.pricing-card {
    position: relative;
    display: flex;
    padding: clamp(16px, 2vw, 32px);
    flex-direction: column;
    border: 1px solid currentColor;
    border-radius: 25px;
    margin-bottom: clamp(15px, 1.5vw, 25px);
}
.pricing-card--white {
    border-color: white;
    background: white;
    color: black;
}
.pricing-card--white * {
    color: black;
}
.pricing-card--black {
    border-color: rgba(255, 255, 255, .8);
    background: black;
    color: white;
}
.pricing-card--blue {
    border-color: var(--blue);
    background: var(--blue);
    color: white;
}
.pricing-seat {
    display: flex;
    justify-content: flex-end;
}
.pricing-seat span {
    display: inline-flex;
    min-width: 100px;
    padding: 7px 20px 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 99px;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-card__head {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid currentColor;
}
.pricing-card h4 {
    margin: 0 0 5px;
}
.pricing-subtitle p {
    margin: 0;
    text-transform: uppercase;
}
.pricing-features {
    display: flex;
    padding-top: 20px;
    flex-direction: column;
    gap: 12px;
}
.pricing-features p {
    position: relative;
    margin: 0;
    padding-left: 12px;
    line-height: 1.2;
}
.pricing-features p::before {
    content: '•';
    position: absolute;
    top: 0;
    left: 0;
}
.pricing-item a.button {
    width: 100%;
    background: white;
	text-align:center;
    color: black;
}
.pricing-item a.button:hover {
    background: var(--yellow);
    color: white;
}


/*JOBS*/
.join-section {
    background-repeat: no-repeat;
    background-size: 45vw;
    background-position: 45vw;
    height: 100vh;
    display: flex;
    align-items: center;
}
.join-section h3 strong {
    color: var(--yellow);
}
.join-section p {
    padding: 25px 0 40px;
}
.jobs-footer {
	display:none;
	margin-top: 60px;
}
.jobs-header h5 {
    padding-top: 5px;
}
.jobs-header > div > div > .wpb_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.jobs-listing {
    border-top: 1px solid black;
    margin-top: 80px;
}
.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid black;
    color: inherit;
    text-decoration: none;
    text-align: left;
    transition: var(--transition);
}
.job-item:hover {
    background: var(--yellow);
    color: white;
    padding: 30px;
}
.job-item:hover .job-plus {
    border-color: white;
	background: white;
}
.job-item:hover .job-plus:before, .job-item:hover .job-plus:after {
    background:var(--yellow);
}
.job-content h4 {
    margin:0 0 5px;
}
.job-description {
	font-family: 'Manrope';
    font-size:13px;
    line-height:1.8;
    letter-spacing:.04em;
}
.job-plus{
    position:relative;
    flex:0 0 52px;
    width:52px;
    height:52px;
    border:1px solid black;
    border-radius:50%;
}
.job-plus:before,
.job-plus:after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:30px;
    height:1px;
    background:black;
    transform:translate(-50%,-50%);
}
.job-plus:after{
    transform:translate(-50%,-50%) rotate(90deg);
}
body #join .gform_wrapper.gravity-theme .gfield input.large, body #join .gform_wrapper.gravity-theme input[type="text"], body #join .gform_wrapper.gravity-theme input[type="email"], body #join .gform_wrapper.gravity-theme input[type="tel"], body #join .gform_wrapper.gravity-theme .gfield select.large, body #join .gform_wrapper.gravity-theme .gfield textarea.large {
	border-color: white;
	color: white;
}
body #join .gform_wrapper.gravity-theme .ginput_container_consent input, body #join .gform_wrapper.gravity-theme .gfield-choice-input {
	border-color: white;
}
body #join .gform_wrapper.gravity-theme .ginput_container_consent input:checked, body #join .gform_wrapper.gravity-theme .gfield-choice-input:checked {
    background: white !important;
    border-color: white;
    box-shadow: inset 0 0 0 2px var(--blue);
}
#join .gform-body {
    margin-top: 50px;
}
#join .gform-body option {
    color: black;
}
#join .gform_wrapper.gravity-theme .gfield_required {
    display: inline-block;
    color: white;
    font-size: 1em;
    padding-inline-start: 2px;
    font-weight: 100;
}
#join .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 25px;
}
body #join .gform_wrapper.gravity-theme .gfield_error label:not(.custom-file-button) {
    color: white;
}
#field_3_13 .ginput_container_fileupload {
    position:relative;
}
#field_3_13 input[type="file"] {
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
}
#field_3_13 .gform_fileupload_rules {
    display:none;
}
.custom-file-upload {
    width:100%;
    min-height:85px;
    padding:16px 22px;
    border:1px solid #fff;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.custom-file-info {
    display:flex;
    flex-direction:column;
    line-height:1.25;
}
.custom-file-info * {
    font-family: 'Manrope';
}
.custom-file-type {
    font-size:16px;
}
.custom-file-name {
    font-size:13px;
    opacity:1;
}
.custom-file-button:hover {
	opacity: 0.75;
}
@media(max-width:767px){
    .custom-file-upload{
        align-items:flex-start;
        flex-direction:column;
    }
    .custom-file-button{
        width:100%;
        min-width:0;
    }
}
.our-value-section h3 {
	max-width: 1000px;
}
.value-boxes::before, .value-boxes::after {
    display: none!important;
}
.value-boxes {
    margin-top: 80px;
    display: flex;
    gap: 30px;
}
.value-boxes > div {
    padding: 50px;
    min-height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 25px;
}
.value-boxes h6 {
    padding-top: 15px;
    padding-bottom: 0;
}
.gfield_radio {
    display: flex;
    gap: 10px;
}
.gchoice {
    width: fit-content;
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 99px;
    font-family: 'Manrope';
}
.gform_wrapper.gravity-theme .gfield-choice-input+label {
    max-width: fit-content!important;
}

/*POLICY*/
.policy {
	padding-top: var(--row);
}
.policy ul * {
	font-family: 'Manrope';
}
.policy * {
	color: white;
}
.policy h4 {
    padding: 30px 0 10px;
}
.policy .wpb_wrapper h4:first-child {
    padding-top:0;
}


/*GFORM*/
.gfield_consent_label a {
	border-bottom:1px solid;
}
.gfield_consent_label a:hover, .gfield_consent_label a:focus, .gfield_consent_label a:active {
    color: var(--yellow);
}
body .gform_wrapper.gravity-theme .gform_footer input {
	background: var(--yellow);
	color: 	white;
}
body .gform_wrapper.gravity-theme .gform_footer input:hover {
	background: var(--grey);
	color: 	white;
}
body .gform_wrapper.gravity-theme .gfield_error label {
    color: black;
}
body .gform_required_legend,
body .gform_wrapper.gravity-theme .gfield_required {
    display: none;
}
body .gform_wrapper.gravity-theme .ginput_container_consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
	max-width: 350px;
    line-height: 1.35;
}
body .gform_wrapper.gravity-theme .ginput_container_consent input, body .gform_wrapper.gravity-theme .gfield-choice-input {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    min-height: 0;
    margin: 3px 0 0;
    padding: 0;
    border: 1px solid black;
    border-radius: 50% !important;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
body .gform_wrapper.gravity-theme .gfield-choice-input {
    margin-top:5px;
}
body .gform_wrapper.gravity-theme .ginput_container_consent input:checked, body .gform_wrapper.gravity-theme .gfield-choice-input:checked {
    background: black !important;
    border-color: black;
    box-shadow: inset 0 0 0 2px white;
}
body .gform_wrapper.gravity-theme .gfield {
    margin: 0;
}
body .gform_wrapper.gravity-theme .gfield--width-full {
    grid-column: 1 / -1;
}
body .gform_wrapper.gravity-theme .gfield input.large, body .gform_wrapper.gravity-theme input[type="text"], body .gform_wrapper.gravity-theme input[type="email"], body .gform_wrapper.gravity-theme input[type="tel"], body .gform_wrapper.gravity-theme .gfield select.large, body .gform_wrapper.gravity-theme .gfield textarea.large {
    width: 100%;
    max-width: none;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid black;
    border-radius: 99px !important;
    background: transparent;
    color: black;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: left;
    text-transform: none;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    font-family: 'Manrope';
}
body .gform_wrapper.gravity-theme input::placeholder,
body .gform_wrapper.gravity-theme textarea::placeholder {
    font-size: 14px;
	color: black;
	font-family: 'Base Neue';
    font-weight: 700;
	letter-spacing: 0.5px;
    opacity: 1;
	text-transform: uppercase;
}
body .gform_wrapper.gravity-theme .gfield select.large {
	text-transform: none;
}
body .gform_wrapper.gravity-theme .gfield textarea.large {
    height: 122px;
    min-height: 122px;
    padding-top: 18px;
    border-radius: 16px !important;
    resize: none;
}
body .gform_wrapper.gravity-theme input:not(type=[checkbox]):hover,
body .gform_wrapper.gravity-theme select:hover,
body .gform_wrapper.gravity-theme textarea:hover {
    background: var(--grey) !important;
    border-color: white;
}
body .gform_wrapper.gravity-theme input:not(type=[checkbox]):focus,
body .gform_wrapper.gravity-theme select:focus,
body .gform_wrapper.gravity-theme textarea:focus {
    background: var(--yellow);
	color: white;
    outline: none;
}
body .gform_wrapper.gravity-theme select {
    background-image: none;
}
body .gform_wrapper.gravity-theme .ginput_container_select {
    position: relative;
}
body .gform_wrapper.gravity-theme .ginput_container_select::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 22px;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-53%);
}
body .gform_wrapper.gravity-theme .gfield_checkbox {
    margin-top: 0;
}
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
body .gform_wrapper.gravity-theme .gfield_checkbox input {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    min-height: 0;
    margin-top: 2px;
    padding: 0;
    border: 1px solid black;
    border-radius: 50% !important;
    appearance: none;
}
body .gform_wrapper.gravity-theme .gfield_checkbox input:checked {
    box-shadow: inset 0 0 0 3px white;
    background: black !important;
}
body .gform_wrapper.gravity-theme .gfield_checkbox label {
    max-width: 340px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}
body .gform_wrapper.gravity-theme .gform_footer {
    margin: clamp(35px, 5vw, 55px) 0 0;
    padding: 0;
}
body .gform_wrapper .gform_validation_errors,
body .gform_wrapper.gravity-theme .description,
body .gform_wrapper.gravity-theme .gsection_description,
body .gform_wrapper.gravity-theme .instruction {
    display: none !important;
}
body .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    margin-top: 0;
    padding: 5px 24px 0 !important;
    border: 0;
    background: transparent;
    color: #cb3e3e;
    font-size: 8px !important;
    font-weight: 600;
    letter-spacing: .5px !important;
    text-transform: uppercase;
}
body .ginput_container_textarea {
    margin-bottom: -7px;
}
body img.gform_ajax_spinner {
    margin: 5px 0 0 10px;
}
body .gform_confirmation_message {
    padding: 25px;
    color: black;
    font-weight: 600;
}
body .gform_wrapper.gravity-theme .gform_footer, body .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 30px 0 0;
    padding: 0;
    justify-content: flex-start;
}


/*HEADER*/
.site-header, .nav-align-center .inside-navigation, .inside-header, .main-navigation {
    height: auto;
}
.main-navigation .inside-navigation, .inside-header, .main-navigation, .site-logo, .main-navigation .main-nav ul li a, .main-navigation li, .main-title a {
    transition: var(--transition);
}
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    right: 0;
    margin: 0;
    background: transparent;
    z-index: 999;
	padding: var(--gridLite);
}
body .inside-header {
    display: flex;
    align-items: center;
    padding: 0;
    padding: 20px !important;
    background: #ffffff47;
    backdrop-filter: blur(11px);
    border-radius: 99px;
    flex-direction: row !important;
    justify-content: space-between !important;
}
body .site-header.over-light .inside-header {
    background: #00000047;
}
body .main-navigation {
    background-color: transparent;
}
body .main-navigation * {
    font-family: "Manrope", sans-serif;
}
.nav-align-center .inside-navigation {
    justify-content: center;
}
body .main-navigation li {
    padding: 0;
}
body .site-logo img {
    width: 195px;
    transition: var(--transition);
    padding-left: 10px;
}
.main-navigation {
}
.header-aligned-center:not([class*=nav-float-]) .inside-header>:not(:first-child) {
    margin: 0;
}
body:not(.home) .main-navigation .main-nav ul li[class*="current-menu-"] > a {
    border-bottom: 1px solid;
    padding-top: 2px;
}
body .main-navigation .main-nav ul li[class*="current-menu-"] > a {
    color: white;
    background-color: transparent;
}
body .main-navigation .main-nav ul li a {
    color: white;
    padding-left: 0px;
    padding-right: 0;
    margin: 0 3vw;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: normal;
}
body .main-navigation .main-nav ul li.cta {
    margin-left:40px;
}
body .main-navigation .main-nav ul li.cta i, .cta i {
    padding-right: 6px;
}
body .main-navigation .main-nav ul li[class*="current-menu-"]:hover > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a {
    color: var(--yellow);
    background-color: transparent;
}


/* POPUP */
.book-slidein {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear .6s;
}
.book-slidein.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.book-slidein__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 28%);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity .3s ease, backdrop-filter .3s ease;
}
.book-slidein.is-open .book-slidein__backdrop {
    opacity: 1;
}
.book-slidein__panel {
    position: absolute;
    top: 0;
    right: 0;
	width: max(750px, 40vw);
    height: 100%;
    padding: clamp(70px, 8vw, 130px) clamp(40px, 7vw, 110px);
    background: white;
    color: black;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.book-slidein.is-open .book-slidein__panel {
    transform: translateX(0);
}
.book-slidein__close {
    position: absolute;
    top: clamp(20px, 2vw, 35px);
    right: clamp(20px, 2vw, 35px);
    z-index: 4;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: black;
    font-size: 40px;
    cursor: pointer;
}
.book-slidein__close:hover, .book-slidein__close:focus {
    background: transparent;
	color: var(--yellow);
}
.book-slidein__close:focus {
    color: black
}
.book-slidein__close i {
    font-weight: 100;
}
.book-slidein__intro,
.book-slidein__form {
    position: absolute;
    inset: 0;
    padding: clamp(70px, 8vw, 130px) clamp(40px, 7vw, 110px);
    overflow-y: auto;
}
.book-slidein__intro {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.book-slidein__form {
    z-index: 2;
    background: white;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}
.book-slidein__form.is-active {
    transform: translateX(0);
}
.book-slidein__tags,
.book-slidein__buttons {
    display: flex;
    justify-content: center;
    gap: 0;
}
.book-slidein__tags .tag p {
    margin: 0;
}
.book-slidein__subtitle {
    margin: 35px 0 50px;
}
.book-slidein__buttons {
    gap: 8px;
}


/*FOOTER*/
body:not(.page-id-751) .site-footer {
	background: var(--gradient);
}
.site-footer * {
	color: white;
}
body .footer-widgets-container {
    padding-top: clamp(150px, 28vw, 450px);
    padding-bottom: 50px;
}
.footer-widgets-container, .inside-site-info {
	padding-left: var(--gridLite);
	padding-right: var(--gridLite);
}
.site-info, .footer-widgets {
    background-color: transparent;
}
.inside-footer-widgets {
    align-items: flex-end;
}
.footer-widget-1 p {
    text-transform: uppercase;
    margin-top: 20px;
	max-width:600px;
}
.footer-widget-2 {
    text-align: right;
}
body .site-footer .footer-widgets-container .inside-footer-widgets {
    margin-left: 0;
}
body .site-footer .footer-widgets-container .inner-padding {
    padding: 0;
}
.site-info {
    z-index: 9;
    position: relative;
}
.site-footer .copyright-bar {
    display:none;
}
.site-footer .widget_media_image img {
    width: 180px;
}
.footer-bar .textwidget p:last-child {
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
body .inside-site-info {
	border-top: 1px solid white;
    padding: 30px 0px;
}
body .footer-bar-align-center .footer-bar {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 var(--gridLite);
    align-items: center;
    gap: 20px;
}


/***************************/
/***************************/
/***************************/
/*RESPONSIVE*/
/***************************/
/***************************/
/***************************/


@media only screen and (max-width: 1440px) {
body, p {
    font-size: 16px;
}
.sm p, .gfield_consent_label {
	font-size: 13px;
}
h1, h2 {
    font-size: 55px;
}
h3 {
    font-size: 40px;
	line-height: 1.1;
}
h4, .large p {
    font-size: 24px;
}
h5 {
    font-size: 18px;
    line-height: 1.4;
}
h6 {
    font-size: 14px;
}
a.button, .mobmenu-content li a.button, .custom-file-button, body .main-navigation .main-nav ul li.cta a, body .mobmenu-content .cta a, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus, body .gform_wrapper.gravity-theme .gform_footer button, body .gform_wrapper.gravity-theme .gform_footer input, body .gform_wrapper.gravity-theme .gform_page_footer button, body .gform_wrapper.gravity-theme .gform_page_footer input {
    font-size: 14px;
}
body .main-navigation .main-nav ul li a {
    font-size: 14px;
    margin: 0 2.35vw;
}
body .site-logo img {
    width: 184px;
    padding-left: 8px;
}
}


@media only screen and (max-width: 1240px) {
.pricing-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
}


@media only screen and (max-width: 1024px) {
/*FULLSCREEN MENU/HEADER*/
body.show-nav-right .mobmenu-panel.show-panel {
	z-index: 3000000;
}
body.mob-menu-overlay, body.mob-menu-slideout, body.mob-menu-slideout-over, body.mob-menu-slideout-top {
    padding-top: 0!important;
}
body #mobmenuright li.menu-soumission a, body #mobmenuright li.menu-soumission a:hover {
    margin-left: 0;
    background: white!important;
    color: var(--blue)!important;
    margin: 0 auto;
}
html.mob-menu-no-scroll {
    overflow: auto;
}
body .site-header {
	display: block !important;
}
body .mobmenu-right-alignment.show-panel {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
body .mobmenu-right-alignment {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
body .mob-menu-header-holder {
    top: 36px;
    right: 50px;
    display: block;
    z-index: 9999;
    position: fixed;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .mobmenul-container, body .mobmenur-container {
    position: relative;
    top: 0;
    margin: 0!important;
    right: auto;
    display: flex;
    align-items: center;
}
body.mob-menu-slideout-over .mobmenu-right-alignment {
    right: 0;
	height: 100vh;
	height: 100svh;
    height: 100dvh;
    background: black;
    width: 100%;
    transition: transform .8s cubic-bezier(.76,0,.24,1) .3s;
    left: 0;
}
body.show-nav-right.mob-menu-slideout-over .mobmenu-right-alignment {
	transition: transform .8s cubic-bezier(.76,0,.24,1);
}
body .mobmenur-container i {
    transition: .3s;
    padding: 0;
    border-radius: 50px;
    text-align: center;
}
body[data-color="dark"] .mob-icon-menu::before {
	color: var(--blue);
}
body[data-color="white"] .mob-icon-menu::before {
	color: white;
}
body.show-nav-right .mobmenu-overlay {
    background: transparent;
}
.mobmenu-right-panel .mob-cancel-button {
    display: block !important;
}
body .mob-icon-menu:before, body .mob-icon-cancel-1:before  {
	font-weight: 100;
	font-family: "Font Awesome 6 Sharp" !important;
	content: "\f0c9";
	content: "\f7a4";
	position: relative;
	font-size: 28px;
	color: white;
	background: transparent;
	border: 1px solid;
	border-radius: 99px;
	width: auto;
	margin: 0;
	text-align: center;
	opacity: 1;
	transition: .3s;
	top: 0;
	left: 0;
	line-height: 1;
	padding: 0;
	margin: 0;
}
body .mob-icon-cancel-1:before {
	content: "\f00d";
	color: white;
}
body .mobmenur-container i, body .mob-icon-menu:before, body .mob-icon-cancel-1:before {
    height: 48px;
	line-height: 48px;
}
body .mob-menu-header-holder, body .mobmenur-container i, body .mob-icon-menu:before, body .mob-icon-cancel-1:before {
    width: 48px;
}
body .mobmenu-right-panel li, body .rightmbottom, body .rightmtop {
	padding-left: 0;
	padding-right: 0;
}
body .mobmenu-right-panel .mobmenu-right-bt, .mobmenu-right-panel .mobmenu-right-bt {
	right: 50px;
	top: 50px;
}
body .mobmenu-content #mobmenuright > li > a:hover, body .mobmenu-content #mobmenuright li:hover, body .mobmenu-content #mobmenuright li:hover {
    background: transparent;
}
body .mobmenu-content>div {
    width:100%;
}
body #mobmenuright {
	margin-bottom: 25px;
}
body #mobmenuright li a {
	line-height: 1;
	display: block;
	text-decoration: none;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 24px;
	color: white !important;
	transition: .3s;
	text-align: left;
	margin: 0;
	max-width: 100%;
	position: relative;
	z-index: 999;
	padding: 25px 0;
	text-align: center;
}
body #mobmenuright li a:hover {
    color: white!important;
}
body #mobmenuright li a img {
    width: 17px;
    margin-left: 10px;
	transition:.3s;
	transform: rotate(0deg);
}
body #mobmenuright li a:hover img {
    transform: rotate(90deg);
}
body #mobmenuright li.beigeBg a, body #mobmenuright li.goldBg a {
    width: fit-content;
}
body #mobmenuright .contact-item {
    position: relative !important;
    right: auto;
    bottom: auto;
    z-index: 999;
}
body #mobmenuright .beigeBg, body #mobmenuright .contact-item {
    border-radius: 99px;
    width: 75vw;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 40px;
}
body #mobmenuright .beigeBg {
	margin-top: 80px;
}
body #mobmenuright li.beigeBg a, body #mobmenuright li.goldBg a {
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 1;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
	border:0;
	border-radius:99px;
}
body #mobmenuright li.beigeBg a, body #mobmenuright li.beigeBg:hover a {
    color: var(--blue)!important;
    background: var(--beige)!important;
}
 body #mobmenuright li.goldBg a, body #mobmenuright li.goldBg:hover a {
    background: var(--gold)!important;
}
body #mobmenuright li.current-menu-item.arrow a {
    color: white !important;
}
body .rightmtop {
	position: fixed;
	top: 53px;
	left: 58px;
	z-index: 999999;
}
body .rightmtop img {
    width: 175px;
}
body .mobmenu-content {
	margin-top: 0;
	z-index: 1;
	height: 100%;
	overflow: auto;
	display: flex;
	padding: 0 var(--grid);
	align-items: center;
	align-content: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	animation: fadeout 1s ease both;
}
body.show-nav-right .mobmenu-content {
	opacity:0;
	animation: fadein 1s ease both;
    animation-delay: 0.5s;
}
body .mobmenu-content .rightmtop, body .mobmenu-content .rightmtop li, body .mobmenu-content .rightmtop li a {
    padding: 0;
    margin: 0;
}
body .mobmenu-content .rightmtop li a img {
    position: absolute;
    left: 23px;
    top: 30px;
    width: 55px;
}
body .rightmbottom {
    margin: 0;
    width: 100%;
    padding: 0;
    position: relative;
}
.widget ul li {
    margin-bottom: 0;
}
body #custom_html-5, body .mobmenu-content li#text-2{
    width: 100%;
}
body .mobmenu-content p {
    margin: 0;
    padding-top: 58px;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.5;
}
body .mobmenu-content li#nav_menu-2 a {
    display: block;
    letter-spacing: 0;
    line-height: 0.9;
    text-decoration: none;
    font-size: 38px;
    color: white;
    margin: 4vh 0;
    padding: 0;
    font-weight: 200;
}
body .mobmenu-content li#nav_menu-2 li:first-child a {
    margin-top:0;
}
body .mobmenu-content .widget {
    padding-bottom: 0px;
    padding: 0;
}
.container.grid-container {
    padding-left: 0;
}
.nav-align-center .main-nav>ul {
    width: 100px;
    margin-right: 60px;
}
.has-inline-mobile-toggle .mobile-menu-control-wrapper {
    display: none!important;
}
/******/
.header-aligned-center:not([class*=nav-float-]) .inside-header>:not(:first-child) {
    margin-right: 65px;
}
.industries-grid{
	grid-template-columns:8% 42% 42% 8%;
	grid-template-rows:none;
	overflow:hidden;
}
.industry-item:nth-child(n){
	grid-row:auto;
	border:0;
}
.industry-item:nth-child(odd){
	grid-column:2;
}
.industry-item:nth-child(even){
	grid-column:3;
}
.industry-item:nth-child(4n+1),
.industry-item:nth-child(4n+2){
	min-height:260px;
}
.industry-item:nth-child(4n+3),
.industry-item:nth-child(4n+4){
	min-height:170px;
}
.industries-grid::before{
	display:block;
	background:
		linear-gradient(to right,transparent 8%,white 8%,white calc(8% + 1px),transparent calc(8% + 1px)),
		linear-gradient(to right,transparent 50%,white 50%,white calc(50% + 1px),transparent calc(50% + 1px)),
		linear-gradient(to right,transparent 92%,white 92%,white calc(92% + 1px),transparent calc(92% + 1px));
}
.industry-item::after{
	content:'';
	position:absolute;
	left:50%;
	bottom:0;
	width:100vw;
	height:1px;
	background:white;
	transform:translateX(-50%);
	pointer-events:none;
}
.industry-item:last-child::after{
	display:none;
}
.step-content h4 br {
    display:none;
}
.boxes {
    flex-direction: column;
}
.boxes > div {
    width: 100%;
}
.book-slidein__panel {
	width: min(75vw, 760px);
}
.join-section {
    background-size: 65vh;
    background-size: calc(var(--vh, 1vh) * 65);
    background-position: center;
    align-items: center;
}
}


@media only screen and (max-width: 768px) {
h1, h2 {
    font-size: 45px;
}
h3 {
    font-size: 32px;
	line-height: 1.1;
}
h4, .large p {
    font-size: 22px;
}
h5 {
    font-size: 17px;
}
a.button, .mobmenu-content li a.button, .custom-file-button, body .main-navigation .main-nav ul li.cta a, body .mobmenu-content .cta a, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus, body .gform_wrapper.gravity-theme .gform_footer button, body .gform_wrapper.gravity-theme .gform_footer input, body .gform_wrapper.gravity-theme .gform_page_footer button, body .gform_wrapper.gravity-theme .gform_page_footer input {
	padding-left: 40px;
	padding-right: 40px;
}
body .site-logo img {
    padding-left: 5px;
}
.book-slidein__panel {
	width: 100%;
	padding: 80px 25px 40px;
}
.book-slidein__buttons {
	width: 100%;
	flex-direction: column;
}
.book-slidein__buttons .button {
	width: 100%;
}
.job-item{
	padding:25px 0;
}
.job-plus{
	flex-basis:42px;
	width:42px;
	height:42px;
}
.job-plus:before,
.job-plus:after{
	width:24px;
}
.step-branch {
    display: none;
}
.step-left .step-content {
    padding: 20px 50px 20px 0;
}
.step-right .step-content {
    padding: 20px 0 20px 50px;
}
.step-left:nth-child(2) .step-content {
    padding-top: 60px;
}
.step-left:nth-child(2) .step-plus {
    margin-top: 20px;
}
.step-content h4 {
    margin: 0 0 15px;
    max-width: 200px;
}
.step-left .step-content h4 {
    margin-left: auto;
}
.why-tabs > div {
    border-right: 0;
    border-top: 1px solid;
    text-align: center;
}
.why-tabs > div:last-child {
    border-bottom: 1px solid;
}
.why-tabs {
    padding: 60px 0 0;
	flex-direction: column;
}
body .value-section {
    gap: 50px;
    flex-direction: column-reverse;
}
.value-section {
    padding-top: 35px!important;
}
.value-section > div {
    margin-top: 0;
}
.customer-value {
    margin-top: 60px;
}
.customer-value-row {
    padding: 20px 0;
}
.customer-value-row {
	align-items: flex-start;
	flex-direction: column;
	gap: 7px;
}
.customer-value-subtitle {
	width: 100%;
	text-align: left;
}
.value-section img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}
.inside-footer-widgets {
    align-items: flex-start;
}
.footer-widget-2 {
    text-align: left;
    max-width: 300px;
}
.footer-widget-2 a.button.grey {
    margin-bottom:10px;
}
.pricing-grid {
	row-gap: 80px;
}
}


@media only screen and (max-width: 641px) {
:root {
    --gradient: linear-gradient(-175deg, black 12%, #0c243c, #264769);
    --gradientFull: linear-gradient(-165deg, #0c243c 0%, black 40%, #264769);
    --row: 90px;
    --gridLite: 20px;
    --grid: 20px;
    --gridLg: 10vw;
}
body, p {
    font-size: 15px;
}
h1, h2 {
    font-size: 38px;
}
h3 {
    font-size: 30px;
	line-height: 1.1;
}
h4, .large p {
    font-size: 19px;
}
h6, .tag p {
    font-size: 12px;
}
h2 br, h3 br, h4 br, .large p br, #why p br {
	display:none;
}
#hero .vc_col-sm-12, .join-section {
    height: 100vh!important;
    height: calc(var(--vh, 1vh) * 100)!important;
	padding-bottom: 60px;
}
.industries-grid{
	grid-template-columns:30% 60% 10%;
}
.industry-item:nth-child(n){
	grid-column:2;
	grid-row:auto;
}
.industry-item:nth-child(odd){
	min-height:220px;
}
.industry-item:nth-child(even){
	min-height:128px;
}
.industries-grid::before{
	background:
		linear-gradient(to right,transparent 30%,white 30%,white calc(30% + 1px),transparent calc(30% + 1px)),
		linear-gradient(to right,transparent 90%,white 90%,white calc(90% + 1px),transparent calc(90% + 1px));
}
.industry-item::after{
	left:-50%;
	width:200%;
	transform:none;
}
.industries-grid .industry-title {
    padding-right: 5vw;
}
.industry-item {
	padding:15px;
}
body .mob-menu-header-holder {
	top: 26px;
}
body .gform_wrapper.gravity-theme .gform_fields {
	grid-template-columns: 1fr;
}
body .gform_wrapper.gravity-theme .gfield--width-full {
	grid-column: auto;
}
.header-aligned-center:not([class*=nav-float-]) .inside-header>:not(:first-child) {
	display:none;
}
body .mob-menu-header-holder {
	right: 40px;
	top: 24px;
}
body .rightmtop {
	top: 40px;
	left: 49px;
}
body .mobmenu-right-panel .mobmenu-right-bt, .mobmenu-right-panel .mobmenu-right-bt {
	right: 40px;
	top: 38px;
}
body #mobmenuright li a {
	font-size: 20px;
	padding: 20px;
}
.step-left .step-content {
    padding-right: 35px;
}
.step-right .step-content {
    padding-left: 35px;
}
.step-item.is-visible .step-plus {
    transform: translate(-50%, -200%) scale(1);
}
#mimic .tags > div > div > .wpb_wrapper {
    justify-content: center;
}
#mimic h3, #why h3, .steps-section h3, .start-section h3 {
	text-align: center;
	max-width: 245px;
	margin: 0 auto;
}
.description p, #why p, .start-section .description p {
    max-width: 300px;
}
.start-section .description p {
	padding-bottom: 50px;
}
.description p {
    margin: 30px auto 0;
}
.boxes > div {
    padding: 30px;
}
.footer-bar .textwidget p:last-child {
    font-size: 9px;
    text-align: right;
    width: 200px;
}
.footer-bar .textwidget p strong {
    display:none;
}
.site-footer .widget_media_image img {
    width: 100%;
}
.footer-widget-2 {
    max-width: 100%;
}
body .footer-widgets-container {
    padding-top: var(--row);
    padding-bottom: var(--row);
}
.vc_btn3-container.vc_btn3-inline {
    width:100%;
}
a.button, .mobmenu-content li a.button, .custom-file-button, body .main-navigation .main-nav ul li.cta a, body .mobmenu-content .cta a, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus, body .gform_wrapper.gravity-theme .gform_footer button, body .gform_wrapper.gravity-theme .gform_footer input, body .gform_wrapper.gravity-theme .gform_page_footer button, body .gform_wrapper.gravity-theme .gform_page_footer input {
	width: 100%;
	text-align: center;
}
.book-slidein__tags {
    flex-direction: column;
    align-items: center;
}
.book-slidein__tags .tag:first-child {
    margin-bottom: 5px !important;
}
#book-title {
    padding-top: 20px;
	max-width:300px;
}
.book-slidein__subtitle {
    margin: 20px 0 50px;
}
.book-slidein__form {
    justify-content: flex-start;
}
.book-slidein__intro, .book-slidein__form {
    padding: var(--row) var(--grid);
}
.book-slidein__close:hover, .book-slidein__close:focus {
    color: black;
}
.pricing-card {
    padding: 20px 20px 40px;
}
.pricing-grid {
	row-gap: 60px;
}
.pricing-grid {
	grid-template-columns: 1fr;
}
.pricing-card {
	min-height: 0;
}
.join-section * {
    text-align: center;
}
.join-section h3 {
    padding-top: 20vh;
    padding-top: calc(var(--vh, 1vh) * 20);
}
.jobs-header > div > div > .wpb_wrapper {
    align-items: flex-start;
    flex-direction: column;
}
.jobs-header .vc_btn3-container.vc_btn3-inline {
	display:none;
}
.jobs-footer {
	display:block;
}
.jobs-listing {
    margin-top: 60px;
}
body .gform_wrapper.gravity-theme .gfield_label {
    font-size: 14px;
}
.custom-file-upload {
    padding: 20px;
    gap: 15px;
}
.value-boxes {
    margin-top: 60px;
    gap: 20px;
	flex-direction: column;
}
.value-boxes > div {
    padding: 20px;
    min-height: 225px;
}
}