:root {
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #2f4a70;
  --color-secondary: #3fc6a3;
  --color-red: #9a0c0c;
  --color-gray: #d9d9d9;
  --color-text: #323232;
  --color-bg-white: var(--color-white);
  --color-bg-yellow: #f4f5ee;
  --color-bg-gray: #f5f6f8;
  --color-placeholder: var(--color-neutral-800);
  --font-sans-serif: "SF Pro Display", sans-serif;
  --font-sans-serif-header: var(--font-sans-serif);
  --font-serif: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --base-background-color: var(--color-white);
  --base-font-family: var(--font-sans-serif);
  --base-font-size: 2rem;
  --base-line-height: 1.5;
  --base-text-color: var(--color-text);
  --base-min-width: 320px;
  --btn-fz: 2rem;
  --btn-ff: var(--font-sans-serif);
  --btn-pd: 0.5em 3.5em;
  --btn-height: 2.6em;
  --btn-rd: 0;
  --btn-bg: var(--color-secondary);
  --btn-color: var(--color-white);
  --form-fz: 1.6rem;
  --form-ff: var(--font-sans-serif);
  --form-bg: var(--color-white);
  --form-bc: rgba(50, 50, 50, 0.2);
  --form-pd: 0.875em;
  --form-br: 0;
  --gap: 10px;
  --base-link-color: inherit;
  --hs-h1: 7rem;
  --hs-h2: 5rem;
  --hs-h3: 2.4rem;
  --hs-h4: 2.2rem;
  --hs-h5: 2rem;
  --hs-h6: 1.6rem;
  --st-1: 3rem;
  --st-2: 2rem;
  --st-3: 1.6rem;
  --st-4: 1.6rem;
  --p-xl: 2rem;
  --p-l: 1.8rem;
  --p-m: 1.6rem;
  --p-s: 1.4rem;
  --p-xs: 1.2rem;
  --container: 1100px;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--base-text-color);
  background: var(--base-background-color);
  font: var(--base-font-size)/var(--base-line-height) var(--base-font-family);
  min-width: var(--base-min-width);
  font-weight: 400;
  overflow-anchor: none;
}

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

.gm-style img {
  max-width: none;
}
@font-face {
  font-family: "SF Pro Display";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/SF-Pro-Display-Light.otf") format("opentype");
}
@font-face {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/SF-Pro-Display-Regular.otf") format("opentype");
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  margin: 0;
  font-family: var(--font-sans-serif-header);
  letter-spacing: 0.02em;
  line-height: 1.05;
}
h1:not(:last-child),
.h1:not(:last-child),
h2:not(:last-child),
.h2:not(:last-child),
h3:not(:last-child),
.h3:not(:last-child),
h4:not(:last-child),
.h4:not(:last-child),
h5:not(:last-child),
.h5:not(:last-child),
h6:not(:last-child),
.h6:not(:last-child),
.h:not(:last-child) {
  margin-bottom: 2.4rem;
}

h1,
.h1 {
  font-size: var(--hs-h1);
}

h2,
.h2 {
  font-size: var(--hs-h2);
}

h3,
.h3 {
  font-size: var(--hs-h3);
}

h4,
.h4 {
  font-size: var(--hs-h4);
}

h5,
.h5 {
  font-size: var(--hs-h5);
}

h6,
.h6 {
  font-size: var(--hs-h6);
}

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 1.25em;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 700 !important;
}

.lt {
  font-weight: 300 !important;
}

.rg {
  font-weight: 400 !important;
}

.md {
  font-weight: 500 !important;
}

.sbd {
  font-weight: 600 !important;
}

.bd {
  font-weight: 700 !important;
}

.under {
  text-decoration: underline;
}

.ttu {
  text-transform: uppercase;
}

.tar {
  text-align: right;
}

small {
  font-size: 1.2rem;
}

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

.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  font-size: var(--base-font-size);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.link:hover {
  text-decoration: none;
}
.link .icon {
  --i-size: 2rem;
}
.link > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.link > *:not(:last-child) {
  margin-right: 0.8rem;
}

.st-1 {
  font-size: var(--st-1);
  line-height: 1.3;
  font-weight: 300;
}
.st-2 {
  font-size: var(--st-2);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}
.st-2:not(:last-child) {
  margin-bottom: 1rem;
}
.st-3 {
  font-size: var(--st-3);
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.st-4 {
  font-size: var(--st-4);
  line-height: 1;
  font-weight: 300;
}

.t-xl {
  font-size: var(--p-xl);
}
.t-l {
  font-size: var(--p-l);
}
.t-m {
  font-size: var(--p-m);
}
.t-s {
  font-size: var(--p-s);
}
.t-xs {
  font-size: var(--p-xs);
}

.c-primary {
  color: var(--color-primary);
}

.c-second {
  color: var(--color-secondary);
}

.quote {
  position: relative;
  margin: 0;
  padding: 0;
}
.quote blockquote {
  margin: 0;
  padding: 1.5rem;
  padding-left: 3.3rem;
  border-left: 3px solid var(--color-primary);
}

.icon {
  --i-size: 2rem;
  fill: currentColor;
  stroke: currentColor;
  color: inherit;
  width: var(--i-size);
  height: var(--i-size);
  display: inline-block;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-mask-image: none;
  mask-image: none;
}
.icon-chevron--left {
  -webkit-mask-image: url("../images/icons/icon-chevron--left.svg");
  mask-image: url("../images/icons/icon-chevron--left.svg");
}
.icon-chevron--right {
  -webkit-mask-image: url("../images/icons/icon-chevron--right.svg");
  mask-image: url("../images/icons/icon-chevron--right.svg");
}
.icon-chevron--down {
  -webkit-mask-image: url("../images/icons/icon-chevron--up.svg");
  mask-image: url("../images/icons/icon-chevron--up.svg");
}
.icon-chevron--down {
  -webkit-mask-image: url("../images/icons/icon-chevron--down.svg");
  mask-image: url("../images/icons/icon-chevron--down.svg");
}
.icon-coin {
  -webkit-mask-image: url("../images/icons/icon-coin.svg");
  mask-image: url("../images/icons/icon-coin.svg");
}
.icon-facebook {
  -webkit-mask-image: url("../images/icons/icon-facebook.svg");
  mask-image: url("../images/icons/icon-facebook.svg");
}
.icon-twitter {
  -webkit-mask-image: url("../images/icons/icon-twitter.svg");
  mask-image: url("../images/icons/icon-twitter.svg");
}
.icon-linkedin {
  -webkit-mask-image: url("../images/icons/icon-linkedin.svg");
  mask-image: url("../images/icons/icon-linkedin.svg");
}
.icon-file {
  -webkit-mask-image: url("../images/icons/icon-file.svg");
  mask-image: url("../images/icons/icon-file.svg");
}
.icon-jobs {
  -webkit-mask-image: url("../images/icons/icon-jobs.svg");
  mask-image: url("../images/icons/icon-jobs.svg");
}
.icon-location {
  -webkit-mask-image: url("../images/icons/icon-location.svg");
  mask-image: url("../images/icons/icon-location.svg");
}
.icon-search {
  -webkit-mask-image: url("../images/icons/icon-search.svg");
  mask-image: url("../images/icons/icon-search.svg");
}
.icon-phone {
  -webkit-mask-image: url("../images/icons/icon-phone.svg");
  mask-image: url("../images/icons/icon-phone.svg");
}
.icon-mail {
  -webkit-mask-image: url("../images/icons/icon-mail.svg");
  mask-image: url("../images/icons/icon-mail.svg");
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  color: inherit;
}
.logo picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
}
.logo img {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.logo:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-mask-image: url("../images/logo.svg");
  mask-image: url("../images/logo.svg");
  opacity: 0;
  visibility: hidden;
}

.image {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
}
.image picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  min-height: 100%;
  height: auto;
  z-index: 1;
}
.image img {
  width: 100%;
}
.image--block-title picture {
  justify-content: flex-start;
}
.image--block-title img {
  object-fit: contain;
  width: auto;
  max-height: 11.5rem;
}

.image--cover {
  min-height: 100%;
  height: auto;
}
.image--cover img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image--shape-1 {
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/decor/mask-2-circles.svg");
  mask-image: url("../images/decor/mask-2-circles.svg");
}
.image--shape-2 {
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/decor/mask-2-circles-1.svg");
  mask-image: url("../images/decor/mask-2-circles-1.svg");
}
.image--1-1 picture {
  padding-top: 100%;
}
.image--3-2 picture {
  padding-top: 66.66%;
}
.image--3-4 picture {
  padding-top: 75%;
}
.image--4-5 picture {
  padding-top: 120%;
}
.image--16-9 picture {
  padding-top: 56.25%;
}

.form {
  position: relative;
}
.form_field:not(:last-child) {
  margin-bottom: 3rem;
}
.form_field-actions {
  text-align: center;
}
.form .button {
  text-transform: uppercase;
  font-weight: 500;
}
.form .button-side {
  text-align: right;
}
.form .error-message {
  position: absolute;
  left: var(--gap);
  width: 100%;
  top: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: red;
}

label {
  position: relative;
  display: block;
  margin-bottom: 0.8rem;
  font-size: var(--p-l);
}

input[type=text],
input[type=email],
textarea,
select {
  -webkit-appearance: none;
          appearance: none;
  position: relative;
  background: var(--form-bg);
  font-family: var(--form-ff);
  font-size: var(--form-fz);
  padding: var(--form-pd);
  border-radius: 0;
  border: 1px solid rgba(50, 50, 50, 0.2);
  width: 100%;
  min-height: 4rem;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  outline: none;
}
input[type=text]:-webkit-autofill,
input[type=email]:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 10rem white inset !important;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: var(--color-text);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  opacity: 1;
  color: var(--color-text);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: var(--color-text);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: var(--color-text);
}
input[type=text].placeholder,
input[type=email].placeholder,
textarea.placeholder,
select.placeholder {
  color: var(--color-text);
}
input[type=text].error,
input[type=email].error,
textarea.error,
select.error {
  color: red;
  border-color: var(--color-red);
}
input[type=text]:hover, input[type=text]:focus, input[type=text]:valid,
input[type=email]:hover,
input[type=email]:focus,
input[type=email]:valid,
textarea:hover,
textarea:focus,
textarea:valid,
select:hover,
select:focus,
select:valid {
  border-color: rgba(50, 50, 50, 0.2);
}
input[type=text].no-req:hover, input[type=text].no-req:focus, input[type=text].no-req.valid,
input[type=email].no-req:hover,
input[type=email].no-req:focus,
input[type=email].no-req.valid,
textarea.no-req:hover,
textarea.no-req:focus,
textarea.no-req.valid,
select.no-req:hover,
select.no-req:focus,
select.no-req.valid {
  border-color: rgba(50, 50, 50, 0.2);
}

textarea {
  min-height: 10rem;
  resize: none;
}

.drop-zone {
  max-width: 100%;
  height: 14rem;
  padding: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: var(--p-m);
  cursor: pointer;
  background: #fff;
  color: rgba(50, 50, 50, 0.4);
  border: 2px dashed rgba(50, 50, 50, 0.2);
  border-radius: 0;
}
.drop-zone .icon {
  margin-bottom: 1.4rem;
  color: var(--color-text);
}
.drop-zone .green {
  color: var(--color-secondary);
}
.drop-zone--over {
  border-style: solid;
}
.drop-zone__input {
  display: none;
}
.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}
.drop-zone__thumb:after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

body {
  position: relative;
  width: 100%;
}
body .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 1440px auto;
  background-position: top center;
  opacity: 0.04;
}

.wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.content {
  flex: 1;
  z-index: 0;
}

.container {
  position: relative;
  padding: 0 var(--gap);
}
.container-fluid {
  padding: 0 var(--gap);
}

.row {
  margin: 0 calc(-1 * var(--gap));
}
.row > div {
  padding: 0 var(--gap);
}

.m-minus--left {
  margin-left: calc(-1 * var(--gap));
}
.m-minus--right {
  margin-right: calc(-1 * var(--gap));
}

.sc {
  --sc-pd: 8rem 0;
  --sc-bg: transparent;
  position: relative;
  width: 100%;
  padding: var(--sc-pd);
  background: var(--sc-bg);
}
.sc .container,
.sc .container-fluid {
  position: relative;
  z-index: 1;
}
.sc .row {
  margin-bottom: -4rem;
}
.sc .row > div {
  margin-bottom: 4rem;
}
.sc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.sc ul li {
  position: relative;
  width: 100%;
  padding-left: 4.5rem;
}
.sc ul li:not(:last-child) {
  margin-bottom: 1.6rem;
}
.sc ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background: transparent;
  border: 1px solid var(--color-secondary);
}
.sc_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
}
.sc_bg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero {
  --sc-pd: 13rem 0 3rem 0;
  --sc-bg: var(--color-gray);
}
.hero-home {
  height: calc(var(--vh, 1vh) * 100);
  padding: 0;
  display: flex;
  align-items: center;
  align-content: center;
}
.hero-home .sc_text {
  text-align: center;
  color: var(--color-white);
}
.hero-default {
  height: 55rem;
}
.hero-about .sc_bg {
  background-position: center bottom;
}
.hero-services .sc_bg {
  background-position: center bottom;
}
.hero_slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.hero_slider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 38.91%);
  z-index: 1;
}

.hero .swiper-container {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.hero .swiper-slide .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero .swiper-pagination {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}
.hero .swiper-pagination_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.hero .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 100%;
  background: none;
  opacity: 1;
  border: 1px solid transparent;
  font-size: 1.6rem;
  color: var(--color-white);
  transition: border 0.15s ease-in-out;
}
.hero .swiper-pagination-bullet-active {
  border-color: rgba(255, 255, 255, 0.7);
}

.about {
  --sc-bg: var(--color-bg-white);
  --sc-pd: 7rem 0 14rem 0;
}
.about .sc_text {
  color: var(--color-te);
}
.about .sc_text h1 {
  color: var(--color-primary);
}
.about .sc_text h1:not(:last-child) {
  margin-bottom: 5.5rem;
}

.default {
  --sc-pd: 8rem 0;
  --sc-bg: var(--color-bg-white);
}
.default:not(:last-child) {
  --sc-pd: 8rem 0 14rem 0;
}
.default.approach {
  --sc-bg: var(--color-bg-gray);
}
.default.sustainability {
  --sc-bg: var(--color-bg-gray);
}
.default.search {
  --sc-bg: var(--color-bg-yellow);
}
.default.talent {
  --sc-bg: var(--color-bg-gray);
}
.default.investment {
  --sc-bg: var(--color-bg-yellow);
}
.default.facility {
  --sc-bg: var(--color-bg-gray);
}
.default.proptech {
  --sc-bg: var(--color-bg-yellow);
}
.default .row {
  align-items: flex-start;
  align-content: flex-start;
}
.default .sc_text h1,
.default .sc_text h2,
.default .sc_text h3 {
  color: var(--color-primary);
}
.default .sc_text h2:not(:last-child),
.default .sc_text h3:not(:last-child),
.default .sc_text .st-1:not(:last-child) {
  margin-bottom: 2.5rem;
}
.default .sc_text .st-2:not(:last-child),
.default .sc_text .st-3:not(:last-child) {
  margin-bottom: 2.5rem;
}
.default .sc_text ul:not(:last-child) {
  margin-bottom: 2.5rem;
}
.default .sc_text p a {
  color: var(--color-secondary);
  text-decoration: underline !important;
}
.default .image {
  min-width: calc( 100% + (var(--vw) - var(--container)) / 2 - var(--container) / 12 + var(--gap) );
}
.default .image-side {
  display: flex;
  justify-content: flex-end;
}
.default .image-side .image {
  margin-left: auto;
  margin-right: calc(var(--container) / 12);
}
.default .image-side:nth-child(2n) {
  justify-content: flex-start;
}
.default .image-side:nth-child(2n) .image {
  margin-right: 0;
  margin-left: calc(var(--container) / 12);
}
.default .image-side:nth-child(1), .default .image-side:nth-child(2) {
  margin-top: -14rem;
}

.services {
  --sc-pd: 8rem 0 14rem 0;
}
.services .row:not(:last-child) {
  margin-bottom: 2rem;
}
.services .sc_text h1 {
  color: var(--color-primary);
}
.services-item {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  background: var(--color-bg-gray);
}
.services-item > * {
  position: relative;
}
.services-item > *:not(:last-child) {
  padding-bottom: 2rem;
}
.services-item_icon {
  color: var(--color-secondary);
  position: relative;
}
.services-item_icon picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  height: 5rem;
  width: 5rem;
}
.services-item_text {
  flex: 1;
}
.services-item .link {
  font-size: var(--p-s);
  color: var(--color-primary);
}
.services-item .link .icon {
  --i-size: 1.5rem;
}

.industry {
  --sc-pd: 8rem 0 14rem 0;
}
.industry .row:not(:last-child) {
  margin-bottom: 2rem;
}
.industry .sc_text h1 {
  color: var(--color-primary);
}
.industry-item {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--color-bg-gray);
  font-size: var(--p-l);
  padding-right: 1rem;
}
.industry-item > * {
  position: relative;
}
.industry-item > *:not(:last-child) {
  padding-bottom: 2rem;
}
.industry-item_icon {
  color: var(--color-secondary);
  position: relative;
}
.industry-item_icon picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  height: 5rem;
  width: 5rem;
}
.industry-item_text {
  margin-top: auto;
}
.industry-item .link {
  font-size: var(--p-s);
  color: var(--color-primary);
}
.industry-item .link .icon {
  --i-size: 1.5rem;
}

.team {
  --sc-pd: 0;
}
.team .sc_text h1 {
  color: var(--color-primary);
}
.team .sc_text h1:not(:last-child) {
  margin-bottom: 0.8rem;
}
.team .sc_text:not(:last-child) {
  margin-bottom: 3rem;
}
.team_block {
  padding: 6.5rem 0;
}
.team_block-head {
  padding-bottom: 11rem;
}
.team_block-leadership {
  background: var(--color-bg-yellow);
  padding-top: 0;
}
.team_block-leadership .row > div {
  margin-top: -6.5rem;
}
.team-member .image {
  width: 25rem;
}
.team-member > *:not(:last-child) {
  margin-bottom: 2rem;
}
.team-member .line {
  display: flex;
  align-items: center;
  align-content: center;
  color: var(--color-primary);
}
.team-member .line > *:not(:last-child) {
  margin-right: 2rem;
}
.team-member .socials {
  position: relative;
  display: flex;
}
.team-member .socials .icon {
  --i-size: 2.2rem !important;
}
.team-member h3 {
  margin-bottom: 0;
}
.team-member_contacts .icon {
  color: var(--color-primary);
}
.team-member_description {
  font-size: var(--p-m);
}

.opportunities .sc_text {
  color: var(--color-text);
}
.opportunities .sc_text h1 {
  color: var(--color-primary);
}
.opportunities .sc_text h1:not(:last-child) {
  margin-bottom: 3rem;
}
.opportunities .sc_text .st-1:not(:last-child) {
  margin-bottom: 2.7rem;
}
.opportunities_form {
  position: relative;
  padding: 4.5rem 3.5rem;
  background: var(--color-bg-gray);
}

.contact .sc_text {
  color: var(--color-text);
}
.contact .sc_text h1 {
  color: var(--color-primary);
}
.contact .sc_text h1:not(:last-child) {
  margin-bottom: 3rem;
}
.contact .sc_text .st-1 .icon {
  --i-size: 2rem;
  margin-right: 1rem;
  color: var(--color-secondary);
}
.contact .sc_text .st-1:not(:last-child) {
  margin-bottom: 2rem;
}
.contact_item:not(:last-child) {
  margin-bottom: 6rem;
}
.contact_item p {
  position: relative;
  display: flex;
}
.contact_item p:not(:last-child) {
  margin-bottom: 1em;
}
.contact_item p .title {
  position: relative;
  display: inline-block;
  margin-right: 2rem;
  width: 10rem;
  min-width: 10rem;
}
.contact_item p .text {
  position: relative;
  display: inline-block;
  flex: 1;
  max-width: 27.5rem;
}
.contact_form {
  position: relative;
  padding: 4.5rem 3.5rem;
  background: var(--color-bg-gray);
}

.jobs {
  --sc-pd: 0 0 8rem 0;
  --sc-bg: var(--color-bg-gray);
}
.jobs_search {
  transform: translateY(-3.5rem);
  margin-bottom: 1.5rem;
}
.jobs_search .form {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(50, 50, 50, 0.2);
  display: flex;
}
.jobs_search .form input,
.jobs_search .form select,
.jobs_search .form button {
  height: 7rem;
}
.jobs_search .form_field {
  position: relative;
  margin: 0;
  flex: 1;
}
.jobs_search .form_field:nth-child(1):after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: calc(100% - 0.8rem);
  margin: auto 0;
  width: 0.1rem;
  background: rgba(50, 50, 50, 0.2);
}
.jobs_search .form_field-actions {
  flex: none;
  width: 20rem;
  min-width: 20rem;
}
.jobs_search .search {
  background: url("../images/icons/icon-search.svg"), #fff;
  background-repeat: no-repeat;
  background-position: center left 2rem;
  background-size: 1.8rem auto;
  padding-left: 5rem;
  border: none;
}
.jobs_search .location {
  background: url("../images/icons/icon-location.svg"), #fff;
  background-repeat: no-repeat;
  background-position: center left 2rem;
  background-size: 1.8rem auto;
  padding-left: 5rem;
  border: none;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
          appearance: none;
}
.jobs_items {
  margin-bottom: 5rem;
}
.jobs-item {
  position: relative;
  padding: 3rem;
  background: #ffffff;
  border: 1px solid rgba(50, 50, 50, 0.2);
}
.jobs-item:not(:last-child) {
  margin-bottom: 2rem;
}
.jobs-item_head {
  position: relative;
}
.jobs-item_head:not(:last-child) {
  padding-bottom: 2.7rem;
  margin-bottom: 2.7rem;
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
}
.jobs-item_body {
  position: relative;
  font-size: var(--p-m);
}
.jobs-item_body:not(:last-child) {
  padding-bottom: 2.7rem;
}
.jobs-item_footer {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: -2rem;
}
.jobs-item_footer > * {
  margin-bottom: 2rem !important;
}
.jobs-item_footer .actions {
  flex: 1;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--color-primary);
}
.jobs-item_footer .actions a {
  text-decoration: underline;
}
.jobs-item_footer .actions > *:not(:last-child) {
  margin-right: 4rem;
}
.jobs-item .tags {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin: -1rem;
  font-size: var(--p-s);
}
.jobs-item .tags > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 3.6rem;
  padding: 1rem 3rem;
  margin: 1rem;
  font-weight: 700;
  background: var(--color-bg-gray);
  color: var(--color-primary);
}
.jobs-item h3, .jobs-item h1 {
  margin-bottom: 0.2rem;
  color: var(--color-primary);
}
.jobs-item .where-when {
  position: relative;
  display: block;
  font-size: var(--p-m);
  margin-bottom: 2.7rem;
}
.jobs-item .where-when > * {
  position: relative;
  display: inline-block;
}
.jobs-item .info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -4rem;
}
.jobs-item .info:not(:last-child) {
  margin-bottom: 2rem;
}
.jobs-item .info .icon {
  --i-size: 2.4rem;
  color: var(--color-secondary);
}
.jobs-item .info .text {
  color: var(--color-text);
}
.jobs-item .info .text small {
  font-weight: 400;
  font-size: var(--p-m);
}
.jobs-item .info > * {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 1rem 4rem;
}
.jobs-item .info > * > *:not(:last-child) {
  margin-right: 1rem;
}
.jobs-item_block {
  position: relative;
}
.jobs-item_block h3:not(:last-child) {
  margin-bottom: 2rem;
}
.jobs-item_block:not(:last-child) {
  margin-bottom: 7rem;
}
.jobs-single .jobs-item {
  border: none;
  padding: 0;
  background: transparent;
}
.jobs-single .jobs-item .info {
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
}
.jobs-single .jobs-item_head {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}

.index-page .footer {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: var(--btn-pd);
  height: var(--btn-height);
  font-family: var(--btn-ff);
  font-size: var(--btn-fz);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 1px solid var(--btn-bg);
  text-transform: none;
  text-decoration: none !important;
  border-radius: var(--btn-rd);
  transition: all 0.3s ease-in-out;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
}
.button > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
  min-width: max-content;
}
.button > *:not(:last-child) {
  margin-right: 0.5rem;
}
.button .icon {
  transition: transform 0.3s ease-in-out;
}
.button .icon-play {
  --i-size: 1.7rem;
}
.button.bordered {
  background: transparent;
  color: var(--btn-bg);
}
.button.bordered:hover {
  background: var(--btn-bg);
  color: var(--btn-color);
}
.button--small {
  --btn-fz: 1.4rem;
  --btn-height: 2.285714286em;
}
.button--big {
  --btn-fz: 1.6rem;
  --btn-height: 3.75em;
  min-width: 10em;
  border-radius: 10rem;
}
.button--yellow {
  --btn-color: var(--color-primary-dark);
  --btn-bg: var(--color-primary-light);
}
.button--black {
  --btn-color: var(--color-white);
  --btn-bg: var(--color-black);
}
.button--white {
  --btn-color: var(--color-dark);
  --btn-bg: var(--color-white);
}
.button:hover {
  filter: brightness(1.25);
}
.button:hover .icon:last-child {
  transform: translateX(0.5rem);
}

.header {
  --h-pos: fixed;
  --h-bg: var(--color-white);
  --h-pd: 2.9rem 0;
  --h-pd-scroll: 2.9rem 0;
  --h-color: var(--color-primary-dark);
  --h-z: 10;
  position: var(--h-pos);
  padding: var(--h-pd);
  color: var(--h-color);
  z-index: var(--h-z);
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
}
.header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--h-bg);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
  display: flex;
  align-items: center;
  align-content: center;
}
.header .logo {
  color: inherit;
  max-width: 26rem;
}
.header_nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex: 1;
  padding: 0 3rem;
}

.header_actions {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
}
.header_actions > *:not(:last-child) {
  margin-right: 2rem;
}
.header_actions .menu-button {
  z-index: 2;
  margin: 0;
}

.header.scrolled {
  --h-pd: var(--h-pd-scroll);
  --h-bg: var(--color-white);
  transition: padding 0.3s ease-in-out, height 0.3s ease-in-out;
}
.header.scrolled:after {
  transition: all 0.3s ease-in-out;
  transform: translateY(-3.2rem);
}
.header.scrolled:before {
  opacity: 1;
}

.header-transition .header {
  transition: color 0.3s ease-in-out;
}
.header-transition .header_nav {
  transition: all 0.4s ease-in-out;
}

.menu-open {
  overflow: hidden;
}
.menu-open .header_nav {
  left: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-open .header {
  --h-color: var(--color-primary-dark);
  --h-bg: var(--color-white);
}
.menu-open .header:before {
  opacity: 1;
}
.menu-open .header .button {
  background: transparent;
  color: var(--btn-bg);
}

.footer {
  --f-color: var(--color-white);
  --f-bg: var(--color-primary);
  --f-pd: 0;
  --f-z: 1;
  --f-fz: var(--p-m);
  position: relative;
  z-index: 2;
  display: block;
  padding: var(--f-pd);
  background: var(--f-bg);
  font-size: var(--f-fz);
  color: var(--f-color);
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.footer .row {
  margin-bottom: -4rem;
}
.footer .row > div {
  margin-bottom: 4rem;
}
.footer .row:not(:last-child) {
  margin-bottom: 0;
}
.footer a {
  transition: color 0.3s ease-in-out;
}
.footer a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}
.footer .logo img {
  opacity: 0;
}
.footer .logo:after {
  opacity: 1;
  visibility: visible;
}
.footer .socials {
  color: inherit;
  justify-content: flex-end;
}
.footer_block {
  position: relative;
  width: 100%;
}
.footer_block-top .container {
  padding: 7rem var(--gap);
}
.footer_block-top .container:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 2 * var(--gap));
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_block-bottom .container {
  padding: 3.5rem var(--gap) 4rem var(--gap);
}

.footer_logo {
  max-width: 26rem;
}

.footer_info {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
  font-size: var(--p-xs);
}
.footer_info > * {
  padding: 0 1.5rem;
}

.footer .links {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  align-content: center;
  margin: 0 -1.5rem;
}
.footer .links > li {
  padding: 0 1.5rem;
}
.footer_menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}
.footer_menu-wrap {
  position: relative;
}

.menu {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  min-height: 100%;
  font-size: var(--p-s);
  list-style: none;
  margin: 0 -1.5rem;
  padding: 0;
  line-height: 1;
}
.menu_item {
  position: relative;
  flex: 0 0 auto;
  margin: 0 1.5rem;
  cursor: pointer;
  text-align: center;
}
.menu_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  color: inherit;
  text-decoration: none !important;
  transition: color 0.3s ease-in-out;
  text-transform: capitalize;
  z-index: 1;
  padding: 1rem 0;
  text-transform: uppercase !important;
}
.menu_link:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0.4rem;
  border-bottom: 0.4rem solid var(--color-secondary);
  z-index: -1;
  background-color: var(--color-secondary);
  transform-origin: center;
  transform: scale3d(1, 0, 1);
  transition: background-color, transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.menu_link.active:after {
  transform-origin: center;
  transform: scale3d(1, 1, 1);
}
.menu-button {
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: transform 0.4s ease-in-out 0.2s;
  color: inherit;
  margin-left: auto;
  cursor: pointer;
}
.menu-button .l {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: currentColor;
  border-radius: 0.4rem;
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.menu-button .l-1 {
  transform: translateY(-0.6rem);
  right: 0;
}
.menu-button .l-2 {
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.menu-button .l-3 {
  transform: translateY(0.6rem);
  right: 0;
}
.menu-button.open {
  transform: rotate(-315deg);
  transition: all 0.4s ease-in-out;
  color: var(--color-primary-dark);
}
.menu-button.open .l-1, .menu-button.open .l-3 {
  transform: translateY(0);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
  width: 100%;
}
.menu-button.open .l-2 {
  transform: rotate(-90deg);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}

.submenu {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.submenu_wrap {
  position: absolute;
  left: 0;
  top: calc(100%);
  min-width: max-content;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  border-radius: 1.2rem;
  box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2);
}
.submenu li {
  position: relative;
  width: 100%;
}
.submenu a {
  position: relative;
  display: flex;
  padding: 1.2rem;
  background: var(--color-green);
  width: 100%;
  color: inherit;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
.submenu a:hover, .submenu a.active {
  color: var(--color-primary-light);
}

.socials {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  color: var(--color-primary);
}
.socials .social {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: color 0.3s ease-in-out;
}
.socials .social:not(:last-child) {
  margin-right: 1.5rem;
}
.socials .social .icon {
  --i-size: 1.5rem;
}
.socials .social:hover {
  color: var(--color-secondary);
}

.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  align-content: center;
}
.pagination_wrap {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.pagination_wrap > *:not(:last-child) {
  margin-right: 1.8rem;
}
.pagination-title {
  font-size: var(--p-s);
  font-weight: 600;
}
.pagination_content {
  position: relative;
}
.pagination li {
  width: auto !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.pagination li:before {
  display: none;
}
.pagination li:not(:last-child) {
  margin-right: 0.8rem !important;
}
.pagination li a, .pagination li input {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
}
.pagination li a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #EFF0F2;
}
.pagination li a.disabled {
  pointer-events: none;
}
.pagination li a.disabled .icon {
  opacity: 0.3;
}
.pagination li a .icon {
  --i-size: 1.2rem;
}
.pagination li input {
  padding: 0.2em;
  font-size: var(--p-s);
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(50, 50, 50, 0.2);
}
.pagination li input::-webkit-outer-spin-button, .pagination li input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  min-height: 100%;
}
.card_image {
  position: relative;
  width: 100%;
  height: 17.5rem;
}
.card_image picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.card_image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card_text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  flex: 1;
}
.card_text .button {
  margin-top: auto;
}

.card-nav {
  background: var(--color-neutral-100);
  border-radius: 2rem;
  overflow: hidden;
  color: var(--color-primary-dark);
  font-size: 1.6rem;
}
.card-nav h4 {
  font-weight: 700;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease-in-out;
}
.card-nav .card_text {
  text-align: center;
}
.card-nav .button {
  --btn-pd: 0.5em 1em;
}
.card-nav .button .icon {
  --i-size: 1rem;
}

.spacer {
  position: relative;
  height: 12rem;
  width: 100%;
  background: var(--color-primary-light);
  overflow: hidden;
}
.spacer:before, .spacer:after {
  --w: 15rem;
  content: "";
  position: absolute;
  border-radius: 100%;
  border-style: solid;
  border-color: #fff;
  width: var(--w);
  height: var(--w);
  opacity: 0.33;
}
.spacer:before {
  --w: 28rem;
  border-width: 4.5rem;
  left: -12rem;
  bottom: -20rem;
}
.spacer:after {
  --w: 35rem;
  border-width: 5rem;
  top: -24rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  :root {
    --container: 1100px;
  }
}
@media (max-width: 1299px) {
  :root {
    --container: 1100px;
  }
}
@media (max-width: 1199px) {
  :root {
    --container: 960px;
    --base-font-size: 1.6rem;
    --hs-h1: 6rem;
    --hs-h2: 4rem;
    --hs-h3: 2.2rem;
    --st-1: 2.2rem;
    --st-2: 1.8rem;
    --st-3: 1.6rem;
    --st-4: 1.6rem;
  }
  .sc {
    --sc-pd: 8rem 0;
  }
  .hero {
    --sc-pd: 11rem 0 3rem 0;
  }
  .header {
    height: 8rem;
  }
  .header .logo {
    max-width: 15rem;
  }
  .header_nav {
    position: fixed;
    left: 0;
    top: 0;
    height: calc(var(--vh, 1vh) * 100);
    background: var(--h-bg);
    z-index: -1;
    padding: 12.5rem var(--gap) 6rem var(--gap);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    display: block;
  }
  .header_actions {
    flex: 1;
  }
  .menu {
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: inherit;
    margin: 0;
  }
  .menu_item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .menu_item.open .submenu_wrap {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .menu_item.open .menu_link:after {
    transform-origin: left center;
    transform: scale3d(1, 1, 1);
  }
  .submenu_wrap {
    position: relative;
    text-align: center;
  }
  .submenu a {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  :root {
    --container: 720px;
  }
  .image--block-title img {
    max-height: 7rem;
  }
  .m-minus--left {
    margin-left: 0;
  }
  .m-minus--right {
    margin-right: 0;
  }
  .sc ul li {
    padding-left: 3rem;
  }
  .sc ul li:before {
    width: 1rem;
    height: 1rem;
    top: 0.4rem;
  }
  .hero-default {
    height: 40rem;
  }
  .default .row > div {
    order: 2;
  }
  .default .row > div.image-side {
    order: 1;
  }
  .team_block-leadership .row {
    margin-bottom: -9.5rem;
  }
  .team_block-leadership .row > div {
    margin-bottom: 9.5rem;
  }
}
@media (max-width: 767px) {
  :root {
    --container: 540px;
    --hs-h1: 5rem;
    --hs-h2: 3rem;
    --hs-h3: 2rem;
  }
  .hero-default {
    height: 30rem;
  }
  .jobs_search .form {
    flex-wrap: wrap;
  }
  .jobs_search .form_field {
    width: 100%;
    flex: none;
  }
  .jobs_search .form_field:nth-child(1):after {
    top: auto;
    left: 0;
    margin: 0 auto;
    width: calc(100% - 0.8rem);
    height: 0.1rem;
  }
  .jobs_search .form_field-actions {
    width: 100%;
    min-width: 100%;
  }
  .jobs_search .form_field-actions .button {
    width: 100%;
  }
  .jobs-item_footer .actions {
    justify-content: center;
  }
  .jobs-item_footer .actions > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .jobs-item_footer .actions .button {
    width: 100%;
  }
  .header_actions > *:not(:last-child) {
    margin-right: 1rem;
  }
  .header.scrolled:before {
    box-shadow: none;
  }
  .footer .socials {
    justify-content: flex-start;
  }
  .footer_menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  :root {
    --container: 100%;
  }
}
@media (min-width: 992px) {
  .team {
    --gap: 50px;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding: 0 6.5rem;
  }
  .header_actions > *:nth-last-child(2) {
    margin-right: 0;
  }
  .menu_item:hover .menu_link:after {
    transform-origin: left center;
    transform: scale3d(1, 1, 1);
  }
  .menu-button {
    display: none;
  }
}
@media (min-width: 1230px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}