@charset "UTF-8";
:root {
  --phone: 480px;
  --tablet: 768px;
  --desktop: 980px;
  --widescreen: 1200px;
  --color-white: #fff;
  --color-black: #000;
  --color-green: #00ffa2;
  --color-green-light: #d6df34;
  --color-orange-vivid: #f3ba19;
  --color-grey: #939394;
  --color-grey-light: #797a79;
  --color-grey-light-1: #fafafa;
  --color-grey-light-2: #f4f4f4;
  --color-grey-dark: #4b4b4c;
  --color-blue: #0060a9;
  --color-blue-light: #5da8dd;
  --color-blue-light-1: #EEF2F7;
  --color-red-brick: #8f2c1d;
  --font-sans-serif: "proxima-nova", sans-serif;
  --font-serif: "Times New Roman", Times, Baskerville, Georgia, serif;
  --base-background-color: var(--color-white);
  --base-font-family: var(--font-sans-serif);
  --base-font-size: 1.6rem;
  --base-line-height: 1.5;
  --base-text-color: var(--color-dark-grey);
  --base-min-width: 320px;
  --base-border-radius: 2rem;
  --gap: 15px;
  --btn-color: var(--color-white);
  --btn-bg: var(--color-green);
  --btn-fz: 1.6rem;
  --btn-pd: 1.25em 1.55em;
  --btn-height: 6rem;
  --form-element-padding: 1.125em 0.625em;
  --form-element-fz: 1.6rem;
  --form-element-border-color: var(--color-grey-light);
  --form-element-focus-border-color: var(--color-green-light);
  --form-element-bg-color: transparent;
  --placeholder-color: var(--color-grey-dark);
  --headings-sizes-h1: 6.4rem;
  --headings-sizes-h2: 3.6rem;
  --headings-sizes-h3: 2.4rem;
  --headings-sizes-h4: 2rem;
  --headings-sizes-h5: 1.8rem;
  --headings-sizes-h6: 1.6rem;
}

.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;
}

html {
  font-size: 62.5%;
  overflow-anchor: none;
}

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;
}

h3,
.h3 {
  font-weight: 400;
}

.menu, .footer-menu-title, .button {
  font-weight: 700;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  margin: 0;
}
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: 3rem;
}

h1,
.h1 {
  font-size: var(--headings-sizes-h1);
  line-height: 1.1;
}

h2,
.h2 {
  font-size: var(--headings-sizes-h2);
  line-height: 1.1;
}

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

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

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

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

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 1.5rem;
}

a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--color-green-light);
}

ol {
  margin: 0;
  padding-left: 1.2em;
}
ol li:not(:last-child) {
  margin-bottom: 1.8rem;
}

.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  column-gap: 0.7rem;
  line-height: 1;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  color: var(--color-blue);
  font-weight: 700;
}
.link .icon {
  width: 1rem;
  height: 1rem;
}
.link:hover, .link:focus {
  color: var(--color-green-light);
}

.tac {
  text-align: center;
}

.ttu {
  text-transform: uppercase !important;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

.green {
  color: var(--color-gh-green) !important;
}

.form {
  --c-gap: 1.6rem;
  --r-gap: 2.4rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--c-gap);
  row-gap: var(--r-gap);
}
.form__field {
  position: relative;
  width: 100%;
}
.form__field--half {
  width: calc((100% - var(--c-gap)) / 2);
}
.form__field-buttons {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.form__field > *:not(:last-child) {
  margin-bottom: 1rem;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

label {
  position: relative;
  display: block;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
input[type=date],
textarea {
  width: 100%;
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
  font-size: var(--form-element-fz);
  background-color: var(--form-element-bg-color);
  border-radius: 0;
  border: 0.1rem solid var(--form-element-border-color);
  padding: var(--form-element-padding);
  color: var(--color-grey-dark);
  outline: none;
  height: 6rem;
  transition: all 0.3s ease-in-out;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=date]:focus,
textarea:focus {
  border-color: var(--form-element-focus-border-color);
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color);
}
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=date]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: var(--placeholder-color);
}
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=date]:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--placeholder-color);
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--placeholder-color);
}
input[type=text].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=search].placeholder,
input[type=password].placeholder,
input[type=date].placeholder,
textarea.placeholder {
  color: var(--placeholder-color);
}

.checkbox {
  position: relative;
}
.checkbox label {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.checkbox small {
  font-size: 1rem;
}
.checkbox input {
  position: absolute;
  left: -100%;
}
.checkbox input:checked ~ .checkbox-text:before {
  border-color: var(--color-green-light);
  background: var(--color-green-light);
}
.checkbox-text {
  flex: 1;
  padding-left: 2.5rem;
}
.checkbox-text:before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 0;
  top: 0.45rem;
  border: 0.1rem solid var(--color-grey-light);
  transition: all 0.3s ease-in-out;
}

select {
  border-radius: 0;
  width: 100%;
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
  font-size: var(--form-element-fz);
  background: url("../png/icon-chevron--down-blue.png");
  background-repeat: no-repeat;
  background-size: auto 0.6rem;
  background-position: center right 1rem;
  border-radius: 0;
  border: 0.1rem solid var(--color-blue-light);
  padding: 1.8rem 10rem 1.8rem 1rem;
  color: var(--color-grey-dark);
  outline: none;
  height: 6rem;
  transition: all 0.3s ease-in-out;
}
select:hover {
  cursor: pointer;
}

textarea {
  resize: vertical;
  vertical-align: top;
  resize: none !important;
  min-height: 4.8rem;
  height: auto;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--form-font-family);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 0;
  font-size: var(--btn-fz);
  text-decoration: none;
  outline: none;
  padding: var(--btn-pd);
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border: 0.2rem solid var(--btn-bg);
  transition: all 0.3s ease-in-out;
  height: var(--btn-height);
  text-transform: uppercase;
  column-gap: 1.5rem;
  vertical-align: middle;
  line-height: 1;
  vertical-align: middle;
}
.button .icon {
  width: 1.2rem;
  height: 1.2rem;
}
.button:after {
  display: none !important;
}
.button-text, .button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  z-index: 1;
}
.button.bordered {
  color: var(--btn-bg);
  background-color: transparent;
}
.button.bordered:hover {
  color: var(--btn-color);
  background-color: var(--btn-bg);
}
.button:hover, .button:focus {
  background-color: transparent;
  color: var(--btn-bg);
}
.button-white {
  --btn-bg: var(--color-white);
  --btn-color: var(--color-grey-dark);
}
.button-black {
  --btn-bg: var(--color-black);
  --btn-color: var(--color-white);
}
.button-green-light {
  --btn-bg: var(--color-green-light);
  --btn-color: var(--color-grey-dark);
}
.button-green-light.bordered {
  color: var(--btn-color);
}

#back-top {
  position: absolute;
  top: calc(var(--vh, 1vh) * 100);
}

.back-top {
  width: 4.4rem;
  position: relative;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  row-gap: 1rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: right;
  padding: 0;
  margin-left: var(--gap);
  pointer-events: auto;
  transition: transform 0.3s ease-in-out;
}
.back-top:hover {
  transform: scale(1.1);
}
.back-top .txt {
  position: relative;
  display: block;
  text-align: right;
}
.back-top .icon {
  transform: rotate(90deg);
  width: 4rem;
  height: 3.2rem;
}
.back-top__wrap {
  position: fixed;
  z-index: 7;
  bottom: 8.5rem;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out !important;
  color: var(--color-white);
  mix-blend-mode: difference;
  pointer-events: none;
}
.back-top__wrap.aos-animate {
  opacity: 1;
  visibility: visible;
}
.back-top__wrap .row,
.back-top__wrap .container {
  pointer-events: none;
}

.image {
  position: relative;
  width: 100%;
  height: auto;
}
.image picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.image img {
  width: 100%;
}
.image--cover {
  height: auto;
}
.image--cover picture {
  align-items: center;
  align-content: center;
  height: 100%;
  width: 100%;
}
.image--cover img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image--1-1 picture {
  padding-top: 100%;
}
.image--3-2 picture {
  padding-top: 66.66%;
}
.image--3-2 img {
  width: 100%;
  height: 100%;
}
.image--3-4 picture {
  padding-top: 75%;
}
.image--3-4 img {
  width: 100%;
  height: 100%;
}
.image--4-5 picture {
  padding-top: 120%;
}
.image--4-5 img {
  width: 100%;
  height: 100%;
}
.image--16-9 picture {
  padding-top: 56.25%;
}
.image--16-9 img {
  width: 100%;
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-anchor: none;
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  overflow-anchor: none;
}

.section {
  position: relative;
  width: 100%;
  overflow: hidden;
  overflow-anchor: none;
}
.section:not(.hero) h1, .section:not(.hero) .h1 {
  font-size: 5.6rem;
}
.container {
  position: relative;
  padding: 0 var(--gap);
}
.container-fluid {
  position: relative;
  padding: 0 var(--gap);
  max-width: 1920px;
}

.row {
  margin: 0 calc(-1 * var(--gap));
}
.row > div {
  padding: 0 var(--gap);
}
.row.jcc {
  justify-content: center;
}
.row.jcfe {
  justify-content: flex-end;
}
.row.jcfs {
  justify-content: flex-start;
}
.row.jcsb {
  justify-content: space-between;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 24.5rem;
  transition: width 0.3s ease-in-out;
}
.logo picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  color: currentColor;
}

.header {
  --header-pos: fixed;
  --header-padding: 2rem 0;
  --header-column-gap: 6rem;
  --header-row-gap: 6rem;
  --header-color: var(--color-grey-dark);
  --header-bg: var(--color-white);
  --header-z: 10;
  position: var(--header-pos);
  left: 0;
  top: 0;
  width: 100%;
  padding: var(--header-padding);
  background: var(--header-bg);
  z-index: var(--header-z);
  color: var(--header-color);
  --btn-pd: 1.25em 3.45em;
}
.header .row {
  align-items: center;
  align-content: center;
}
.header__actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  column-gap: calc(var(--header-column-gap) / 2);
}
.header .button .icon {
  width: 3rem;
  height: 3rem;
}
.header__logo-side {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 6rem;
}
.header.scrolled {
  background: var(--color-white);
}

.header-transition .header__nav {
  transition: all 0.4s ease-in-out;
}

.footer {
  --footer-fz: 1.6rem;
  --footer-pd: 5rem 0;
  --footer-color: var(--color-white);
  --footer-bg: var(--color-grey-dark);
  --footer-z: 1;
  font-size: var(--footer-fz);
  padding: var(--footer-pd);
  color: var(--footer-color);
  background: var(--footer-bg);
  z-index: var(--footer-z);
}
.footer a {
  transition: color 0.3s ease-in-out;
}
.footer a:hover {
  color: var(--color-blue-light);
}
.footer .row {
  row-gap: 4rem;
}
.footer .zeuss {
  max-width: 38.5rem;
  margin-bottom: 3rem;
}
.footer .zeuss-wrap p {
  opacity: 0.8;
}
.footer-menu {
  position: relative;
  list-style: none;
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}
.footer-menu-title {
  position: relative;
  text-transform: uppercase;
}
.footer-menu-title:not(:last-child) {
  margin-bottom: 1.5rem;
}
.footer-menu li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer_copy p a {
  color: var(--color-blue-light);
}
.footer__contact {
  font-size: 1.4rem;
  gap: 3rem;
}
.footer__contact p:not(:last-child) {
  margin-bottom: 2rem;
}
.footer .row .row {
  column-gap: 8.1rem;
}
.footer .row .col {
  flex: none;
  width: auto;
}
.footer .row .col:last-child {
  max-width: 45rem;
}

.socials {
  --s-size: 3.4rem;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  column-gap: 2rem;
  row-gap: 1rem;
}
.socials .social {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  width: var(--s-size);
  height: var(--s-size);
  transition: all 0.3s ease-in-out;
}
.socials .social:hover, .socials .social:focus {
  color: var(--color-blue-light);
}

.menu {
  --m-pos: relative;
  --m-fz: 1.6rem;
  --m-color: inherit;
  position: var(--m-pos);
  font-size: var(--m-fz);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  align-content: center;
}
.menu__item {
  position: relative;
  margin: 2rem 0;
}
.menu__link {
  position: relative;
  transition: color 0.3s ease-in-out;
  color: inherit;
  text-transform: uppercase;
}
.menu__item.active .menu__link, .menu__link:hover {
  color: var(--color-blue);
}
.menu-button {
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  width: 3.2rem;
  height: 3.2rem;
  min-width: 3.2rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: inherit;
  transition: all 0.4s ease-in-out 0.2s;
}
.menu-button .l {
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background-color: currentColor;
  border-radius: 0;
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.menu-button .l-1 {
  transform: translateY(-1rem);
}
.menu-button .l-2 {
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.menu-button .l-3 {
  transform: translateY(1rem);
}
.menu-button:hover {
  color: var(--color-blue);
}
.menu-button.active {
  transform: rotate(-315deg);
  transition: all 0.4s ease-in-out;
  color: var(--color-blue);
}
.menu-button.active .l-1, .menu-button.active .l-3 {
  transform: translateY(0);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.menu-button.active .l-2 {
  transform: rotate(-90deg);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.menu-open .header__nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tabs {
  position: relative;
}
.tabs .tab {
  position: relative;
  background: rgba(121, 122, 121, 0.05);
  border: 0.1rem solid rgba(121, 122, 121, 0.1);
}
.tabs .tab:not(:last-child) {
  margin-bottom: 3rem;
}
.tabs .tab h3:not(:last-child),
.tabs .tab h4:not(:last-child),
.tabs .tab h5:not(:last-child) {
  margin-bottom: 2rem;
}
.tabs .tab p:not(:last-child) {
  margin-bottom: 1rem;
}
.tabs .tab figure {
  margin: 0;
}
.tabs .tab figure blockquote {
  margin: 0 0 3rem 0;
}
.tabs .tab figure h3 {
  font-weight: 700;
}
.tabs .tab figure figcaption {
  position: relative;
  padding-left: 1em;
  font-weight: 700;
  color: var(--color-grey-light);
}
.tabs .tab figure figcaption:before {
  content: "-";
  position: absolute;
  left: 0;
}
.tabs .tab h5 {
  text-transform: uppercase;
}
.tabs .tab .more {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  color: var(--color-blue);
  text-transform: uppercase;
  font-weight: 700;
}
.tabs .tab .more .icon {
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  transition: all 0.3s ease-in-out;
}
.tabs .tab small {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--color-blue-light);
}
.tabs .tab ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tabs .tab ul:not(:last-child) {
  margin-bottom: 4rem !important;
}
.tabs .tab ul:not(:last-child) {
  margin-bottom: 1rem;
}
.tabs .tab ul li {
  position: relative;
  vertical-align: middle;
  padding-left: 1em;
}
.tabs .tab ul li:before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  color: var(--color-green-light);
  width: 1em;
  margin-left: -1em;
}
.tabs .tab__block {
  position: relative;
}
.tabs .tab__block-extra {
  height: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}
.tabs .tab__block-extra:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: calc(100% - 9rem);
  height: 0.1rem;
  background: #797a79;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.tabs .tab__block-extra .row {
  padding: 3rem 0;
}
.tabs .tab__block-extra .col-xl-7.col-lg-6 .tab__extra {
  padding-left: 0;
}
.tabs .tab__head {
  position: relative;
  padding: 4rem 0 3rem 3rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tabs .tab__head-top {
  padding-bottom: 3rem;
}
.tabs .tab__head small {
  margin-bottom: 1rem;
}
.tabs .tab__extra {
  position: relative;
  padding: 0 3rem 0 3rem;
}
.tabs .tab__extra-material .tab__subblock {
  padding: 3rem;
  background: var(--color-blue);
  color: var(--color-white);
}
.tabs .tab__subblock {
  position: relative;
}
.tabs .tab__subblock figure {
  padding: 3rem;
  background: rgba(75, 75, 76, 0.05);
}
.tabs .tab__subblock:not(:last-child) {
  margin-bottom: 3rem;
}
.tabs .tab__subblock .line {
  position: relative;
  display: flex;
}
.tabs .tab__subblock .line:not(:last-child) {
  margin-bottom: 3rem;
}
.tabs .tab__subblock .line .ttl {
  width: 12rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.tabs .tab__subblock .line .txt {
  flex: 1;
}
.tabs .tab__slider {
  position: relative;
  overflow: hidden;
}
.tabs .tab__slider:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: calc(100% - 6rem);
  width: 0.1rem;
  border-left: 1px solid rgba(121, 122, 121, 0.2);
}
.tabs .tab__slider .swiper-container, .tabs .tab__slider .swiper-wrapper, .tabs .tab__slider .swiper-slide {
  height: 100%;
}
.tabs .tab__slider .swiper-slide {
  height: 50rem;
}
.tabs .tab__slider .swiper-slide .image {
  position: relative;
  height: 100%;
  width: 100%;
}
.tabs .tab__slider .swiper-slide .image picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
.tabs .tab__slider .swiper-slide .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.tabs .tab__slider .swiper-button-prev, .tabs .tab__slider .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  z-index: 2;
  color: #7d7d7d;
}
.tabs .tab__slider .swiper-button-prev:after, .tabs .tab__slider .swiper-button-next:after {
  display: none;
}
.tabs .tab__slider .swiper-button-prev {
  left: 3.5rem;
}
.tabs .tab__slider .swiper-button-next {
  right: 3.5rem;
}
.tabs .tab__slider .swiper-pagination {
  bottom: 3rem;
  line-height: 1;
}
.tabs .tab__slider .swiper-pagination-bullet {
  z-index: 1;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem !important;
  border: 0.1rem solid #7d7d7d !important;
  border-radius: 100%;
  background: transparent;
  opacity: 1;
}
.tabs .tab__slider .swiper-pagination-bullet-active {
  background: #7d7d7d;
}
.tabs .tab.active .tab-button .icon {
  transform: rotate(-180deg);
}
.tabs .tab.active .tab__block-extra:after {
  opacity: 0.2;
}

.filter {
  position: relative;
  display: block;
  width: 24.5rem;
  z-index: 3;
}
.filter-current {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  height: 6rem;
  padding: 1rem;
  width: 100%;
  border: 0.1rem solid var(--color-blue-light);
  background: var(--color-white);
}
.filter-current:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  opacity: 0;
  height: 0.1rem;
  background: var(--color-blue-light);
  width: calc(100% - 2rem);
  transition: opacity 0.3s ease-in-out;
}
.filter-current:hover {
  cursor: pointer;
}
.filter-current .icon {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1rem;
  height: 1rem;
  color: var(--color-blue-light);
}
.filter__content {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  background: var(--color-white);
  padding: 1rem;
  border: 0.1rem solid var(--color-blue-light);
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.filter__content > * {
  position: relative;
  display: block;
}
.filter__content > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.filter__content a.active, .filter__content a:hover {
  color: var(--color-blue-light);
}
.filter.open {
  z-index: 4;
}
.filter.open .filter-current {
  border-bottom: none;
}
.filter.open .filter-current:after {
  opacity: 1;
}
.filter.open .filter__content {
  opacity: 1;
  visibility: visible;
}

.section__bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.section__bg .container, .section__bg .container-fluid, .section__bg .row, .section__bg .row > div {
  position: relative;
  height: 100%;
}
.section .container {
  position: relative;
  z-index: 1;
}
.section .container-fluid {
  padding: 0;
}

.default {
  --section-pd: 26rem 0 21rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
}
.default:first-child:last-child {
  flex: 1;
}

.hero {
  --section-pd: 25rem 0 15rem 0;
  --section-bg: var(--color-grey-dark);
  --section-color: var(--color-white);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.hero-about {
  min-height: 60rem;
}
.hero .section__text {
  max-width: 93rem;
}
.hero .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.hero .section__text .button {
  --btn-color: var(--color-white);
}
.hero .section__bg .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 96, 169, 0.1), rgba(0, 96, 169, 0.1));
}
.hero .section__bg .cover-1 {
  background: rgba(0, 96, 169, 0.5);
  mix-blend-mode: multiply;
  z-index: 2;
}
.hero .section__bg picture {
  z-index: 0;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero .section__bg picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-home .section__bg img {
  transform: scale(-1, 1);
}

.thank {
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.thank .section__text {
  text-align: center;
}
.thank .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}

.markets__items {
  padding: 8rem 0 0 0;
}
.markets__items--style-1 {
  padding-top: 0;
}

.markets-head {
  --section-pd: 18.6rem 0 6rem 0;
  --section-bg: #FAFAFA;
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.markets-head .section__text {
  text-align: center;
  max-width: 85rem;
  margin: 0 auto;
}
.markets-head .section__text h3 {
  font-weight: 400;
}
.markets-head .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}

.markets-applications {
  --section-pd: 6rem 0 3rem 0;
  --section-bg: var(--color-grey-light-1);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.markets-applications .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
.markets-applications .section__text h3 {
  font-weight: 400;
}
.markets-applications .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}

.markets__item {
  --item-bg: rgba(121, 122, 121, 0.05);
  --item-border: 1px solid rgba(121, 122, 121, 0.1);
  --item-icn-size: 40rem;
  position: relative;
  background: var(--item-bg);
  border: var(--item-border);
  min-height: 36.7rem;
  text-decoration: none;
}
.markets__item:hover {
  color: var(--color-grey-dark);
}
.markets__item .row {
  min-height: 36.7rem;
}
.markets__item:not(:last-child) {
  margin-bottom: 3rem;
}
.markets__item-info {
  position: relative;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  min-height: 100%;
}
.markets__item-info--top {
  position: relative;
  width: 100%;
  flex: 1;
  padding-bottom: 6rem;
}
.markets__item-info h4 {
  line-height: 1;
}
.markets__item-info h4:not(:last-child) {
  margin-bottom: 2rem;
}
.markets__item-info p:not(:last-child) {
  margin-bottom: 1rem;
}
.markets__item-info ul {
  position: relative;
  list-style: none;
  padding: 0;
}
.markets__item-info ul:not(:last-child) {
  margin-bottom: 1rem;
}
.markets__item-info ul li {
  position: relative;
  vertical-align: middle;
  padding-left: 1em;
}
.markets__item-info ul li:before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  color: var(--color-green-light);
  width: 1em;
  margin-left: -1em;
}
.markets__item-image {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}
.markets__item-image:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: calc(100% - 6rem);
  width: 0.1rem;
  background: rgba(121, 122, 121, 0.2);
}
.markets__item-image picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}
.markets__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}
.markets__item-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  opacity: 0.03;
  width: var(--item-icn-size);
  height: var(--item-icn-size);
}
.markets__item-icon img.neuro {
  transform: rotate(30deg);
}
.markets__item-info {
  padding-right: 3rem;
}
.markets__item--style-1 {
  display: flex;
  min-height: 100%;
}
.markets__item--style-1 .row {
  min-height: 100%;
}
.markets__item--style-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 6px 2px rgba(0, 96, 169, 0.5);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.markets__item--style-1:hover:before {
  opacity: 1;
}
.markets__item--style-1:not(:last-child) {
  margin-bottom: 0;
}
.markets__item--style-1 .row > div {
  width: 100%;
}
.markets__item--style-1 .markets__item-image {
  height: 28.6rem;
}
.markets__item--style-1 .markets__item-image:after {
  margin: 0 auto;
  left: 0;
  top: auto;
  width: calc(100% - 6rem);
  height: 0.1rem;
}
.markets__item--style-1 .markets__item-info {
  padding: 2rem 3rem;
}
.markets__item--style-1 .markets__item-info--top {
  padding-bottom: 3rem;
}
.markets__item--style-1 .markets__item-info--top > *:not(:last-child) {
  margin-bottom: 1rem;
}
.markets__item--style-1 .markets__item-info p {
  color: var(--color-grey-light);
}
.markets__item--style-1 .markets__item-info small {
  position: relative;
  display: block;
  text-transform: uppercase;
  color: var(--color-blue);
}

.anatomy {
  --section-pd: 4.8rem 0 13rem 0;
  --section-bg: url("../png/decor-grid-2.png");
  --section-color: var(--color-grey-dark);
  --img-w: 23.4rem;
  --img-h: 53.3rem;
  --c-size: 80rem;
  background: var(--section-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: var(--section-pd);
  color: var(--section-color);
}
.anatomy-for-user {
  width: 22rem;
  padding: 1rem;
  border: 0.2rem dashed #797A79;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 5rem;
}
.anatomy__content {
  position: relative;
  width: 100%;
  max-width: var(--c-size);
  margin: 0 auto;
}
.anatomy__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  margin: auto;
  width: var(--img-w);
  height: var(--img-h);
}
.anatomy__image picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.anatomy__image picture img {
  width: 100%;
  height: auto;
}
.anatomy__image-default {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.anatomy__image-selected {
  position: relative;
  width: 100%;
  height: 100%;
}
.anatomy__text {
  position: relative;
  display: flex;
  z-index: 1;
}
.anatomy__text-side {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
}
.anatomy__text-side--left {
  padding-right: calc(var(--img-w) / 2);
  align-items: flex-start;
  align-content: flex-start;
}
.anatomy__text-side--left .anatomy__item {
  align-items: flex-start;
  align-content: flex-start;
}
.anatomy__text-side--right {
  padding-left: calc(var(--img-w) / 2);
  align-items: flex-end;
  align-content: flex-end;
  justify-content: space-between;
}
.anatomy__text-side--right .anatomy__item {
  align-items: flex-end;
  align-content: flex-end;
}
.anatomy__text-side--right .anatomy__item-title {
  text-align: right;
}
.anatomy__item {
  --main-color: var(--color-grey);
  --main-width: 100%;
  --l-size: 0.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 0;
}
.anatomy__item .line {
  position: absolute;
  display: block;
  left: 0;
  top: 3rem;
  height: var(--l-size);
  width: 100%;
  border-bottom: var(--l-size) dashed var(--color-grey);
  transition: all 0.3s ease-in-out;
}
.anatomy__item .line-1 {
  border-right: var(--l-size) dashed var(--color-grey);
  border-bottom: none;
}
.anatomy__item .line .dot {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  left: -0.75rem;
  border-radius: 100%;
  background: var(--color-grey);
}
.anatomy__item-title {
  position: relative;
  color: var(--main-color);
  font-style: italic;
  width: var(--main-width);
}
.anatomy__item-title h4 {
  margin-bottom: 0 !important;
}
.anatomy__item-title:hover {
  cursor: pointer;
}
.anatomy__item-title:hover:after {
  border-color: var(--main-color);
}
.anatomy__item-text {
  position: relative;
}
.anatomy__item a {
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.anatomy__item ul {
  position: relative;
  list-style: none;
  padding: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: var(--main-width);
  font-size: 1.6rem;
}
.anatomy__item ul li {
  position: relative;
  vertical-align: middle;
  padding-left: 1em;
  min-width: max-content;
}
.anatomy__item ul li:before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  color: var(--main-color);
  width: 1em;
  margin-left: -1em;
}
.anatomy__item--structural-heart {
  --main-color: #2984c3;
  transform: translateY(5rem);
}
.anatomy__item--structural-heart .line {
  width: calc(var(--c-size) / 2);
  left: 0;
}
.anatomy__item--structural-heart .line .dot {
  right: -0.25rem;
  left: auto;
}
.anatomy__item--cardiovascular {
  --main-color: #e09a0f;
  transform: translateY(5rem);
}
.anatomy__item--cardiovascular .line-1 {
  height: var(--structural-heart);
  width: var(--l-size);
  right: calc(-1 * var(--l-size));
  left: auto;
  top: calc(-1 * var(--structural-heart));
}
.anatomy__item--cardiovascular .line-2 {
  height: var(--l-size);
  width: calc(var(--img-w) / 2);
  right: calc(-1 * var(--l-size));
  left: 100%;
  top: calc(-1 * var(--structural-heart));
}
.anatomy__item--cardiovascular .line .dot {
  transform: translateY(0);
  top: calc(-1 * var(--structural-heart) - 0.75rem);
  left: calc(var(--c-size) / 2 - 1.35rem);
}
.anatomy__item--ep-and-crm {
  --main-color: #8f2c1e;
  transform: translateY(5rem);
}
.anatomy__item--ep-and-crm .line-1 {
  height: calc(var(--structural-heart) + var(--cardiovascular));
  width: var(--l-size);
  right: calc(-1 * var(--l-size));
  left: auto;
  top: calc(-1 * var(--structural-heart) - var(--cardiovascular));
}
.anatomy__item--ep-and-crm .line-2 {
  height: var(--l-size);
  width: calc(var(--img-w) / 2);
  right: calc(-1 * var(--l-size));
  left: 100%;
  top: calc(-1 * var(--structural-heart) - var(--cardiovascular));
}
.anatomy__item--ep-and-crm .line .dot {
  transform: translateY(0);
  top: calc( -1 * var(--structural-heart) - var(--cardiovascular) - 0.75rem );
  left: calc(var(--c-size) / 2 - 1.35rem);
}
.anatomy__item--neurovascular {
  --main-color: #abb41b;
  --main-width: 18rem;
  margin-top: -3rem;
}
.anatomy__item--neurovascular .line {
  width: calc(var(--c-size) / 2);
  left: auto;
  right: 0;
}
.anatomy__item--peripheral {
  --main-color: #0060a9;
  --main-width: 13rem;
}
.anatomy__item--peripheral .line {
  width: calc(var(--c-size) / 2 - 5rem);
  left: auto;
  right: 0;
}
.anatomy__item.active {
  z-index: 1;
}
.anatomy__item.active .line {
  border-color: var(--main-color);
}
.anatomy__item.active .line .dot {
  background: var(--main-color);
}
.anatomy__item.active ul {
  opacity: 1;
}

.tell {
  --section-pd: 10rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: url("../png/decor-grid-2.png");
  background-size: auto;
  background-repeat: repeat;
  background-position: center center;
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.tell .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
.tell .section__text h3:nth-last-child(2) {
  margin-bottom: 3rem;
}

.contact {
  --section-pd: 18.6rem 0 8rem 0;
  --section-bg: #FAFAFA;
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.contact .section__text {
  text-align: center;
  margin: 0 auto;
}
.contact .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.contact__head {
  position: relative;
  margin: 0 auto;
  max-width: 85rem;
}
.contact__body {
  position: relative;
  margin: 0 auto;
  max-width: 107rem;
}
.contact__head:not(:last-child) {
  margin-bottom: 6rem;
}
.contact__form {
  position: relative;
  padding: 10rem;
  background: #F2F7FB;
}
.contact__form .section__text:not(:last-child) {
  margin-bottom: 3.5rem;
}
.contact__form .row {
  margin-bottom: -3rem;
}
.contact__form .row > div {
  margin-bottom: 3rem;
}

.contact-map {
  --section-pd: 10rem 0 10rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
}
.contact-map .section__text h2 {
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: italic;
  color: var(--color-blue);
}
.contact-map .section__text h2 img {
  width: 6.5rem;
  min-width: 6.5rem;
  margin-right: 1.5rem;
}
.contact-map__info p:not(:last-child) {
  margin-bottom: 2rem;
}
.contact-map .row {
  align-items: center;
  align-content: center;
}
.contact-map .map {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 53rem;
}
.contact-map .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.agility__head {
  --section-pd: 18.6rem 0 6rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
}
.agility__head .section__text {
  text-align: center;
  max-width: 85rem;
  margin: 0 auto;
}
.agility--style-1 .agility__head {
  --section-pd: 10rem 0 0rem 0;
  --section-bg: var(--color-blue-light-1);
}
.agility--style-1 .agility__head h2 span {
  color: var(--color-blue);
}
.agility--style-1 .agility__body {
  --section-pd: 0rem 0 10rem 0;
}
.agility--style-1 .agility__body .section__text h2 {
  text-transform: uppercase;
}
.agility--style-1 .agility__items-wrap {
  padding: 4rem 0;
}
.agility__why {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  text-align: left;
  color: var(--color-grey-dark);
  max-width: 80rem;
  margin: 0 auto;
}
.agility__why:last-child {
  padding-top: 3rem;
}
.agility__why p {
  flex: 1;
  margin-right: 6rem;
}
.agility__why .button {
  width: max-content;
}
.agility__body {
  --section-pd: 6rem 0 4rem 0;
  --section-bg: var(--color-blue-light-1);
  --section-color: var(--color-blue);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
}
.agility__body .section__text {
  text-align: center;
}
.agility__body .section__text h2 {
  color: var(--color-grey-dark);
}
.agility__body .section__text h2 span {
  color: var(--section-color);
}
.agility .section__text {
  margin: 0 auto;
}
.agility .section__text h2:not(.h1) {
    font-size: var(--headings-sizes-h2);
}
.agility__items {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.agility__items-wrap {
  position: relative;
  padding: 2.5rem 0 0 0;
}
.agility__items-decor {
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 0;
  display: flex;
  align-items: center;
  align-content: center;
  transform: translateY(-4rem);
  left: -10rem;
  min-width: calc(100% + 10rem);
}
.agility__items-decor-1 {
  position: absolute;
  bottom: 6rem;
  height: 0.6rem;
  left: 0;
}
.agility__items-decor picture {
  position: relative;
  display: flex;
  width: 100%;
}
.agility__items-decor img {
  width: 100%;
  height: auto;
}
.agility__item {
  --gp: 28rem;
  --l-pos: 5rem;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 0.1rem solid var(--section-color);
  width: calc((100% - var(--gp)) / 4);
  z-index: 1;
}
.agility__item:nth-child(1) {
  padding: 8rem 4rem;
}
.agility__item:nth-child(1) .line {
  bottom: auto;
  top: var(--l-pos);
}
.agility__item:nth-child(2) {
  padding: 10rem 4rem;
}
.agility__item:nth-child(2) .line {
  top: auto;
  bottom: var(--l-pos);
}
.agility__item:nth-child(3) {
  padding: 12rem 4rem;
}
.agility__item:nth-child(3) .line {
  bottom: auto;
  top: var(--l-pos);
}
.agility__item:nth-child(4) {
  padding: 14rem 4rem;
}
.agility__item:nth-child(4) .line {
  top: auto;
  bottom: var(--l-pos);
}
.agility__item-title {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.agility__item .line {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: calc(var(--gp) / 4 + 8rem);
  height: 0.1rem;
  background: var(--section-color);
  left: calc(100% - 3rem);
}

.manufacturing {
  --section-pd: 6rem 0;
  --section-bg: rgba(121, 122, 121, 0.1);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.manufacturing .section__text {
  text-align: center;
  max-width: 107rem;
  margin: 0 auto;
}
.manufacturing .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.manufacturing__items {
  position: relative;
  margin-top: 6rem;
}
.manufacturing__item {
  position: relative;
  color: var(--color-white);
  min-height: 60rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.manufacturing__item > .scroll {
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  bottom: 5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  color: #fff;
}
@media (max-width: 1199px) {
  .manufacturing__item > .scroll {
    bottom: 2rem;
  }
}
.manufacturing__item:last-child > .scroll {
  display: none;
}
.manufacturing__item:not(:last-child) {
  margin-bottom: 3rem;
}
.manufacturing__item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.manufacturing__item-bg .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(80.18deg, rgba(0, 96, 169, 0.01) 17.31%, rgba(0, 96, 169, 0) 32.07%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 1;
}
.manufacturing__item-bg .cover-1 {
  z-index: 2;
  background: rgba(0, 96, 169, 0.5);
  mix-blend-mode: multiply;
}
.manufacturing__item-bg picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 0;
}
.manufacturing__item-bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturing__item-type {
  position: absolute;
  z-index: 1;
  left: 8rem;
  top: 8rem;
  z-index: 1;
  text-transform: uppercase;
}
.manufacturing__item-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 80rem;
  padding: 10rem 0;
}
.manufacturing__item-title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.text-image-block {
  --section-pd: 0;
  --section-bg: var(--color-grey-light);
  --section-color: var(--color-grey-dark);
  background-position: center center;
  padding: var(--section-pd);
  color: var(--section-color);
  height: 55rem;
}
.text-image-block .section__text {
  padding: 7.9rem 0;
}
.text-image-block .section__text h2 span {
  color: var(--color-blue);
}
.text-image-block .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.text-image-block .section__text p:nth-last-child(2) {
  margin-bottom: 6rem;
}
.text-image-block .image {
  width: 100%;
  height: 100%;
}
.text-image-block .image picture {
  z-index: 0;
}
.text-image-block .image .cover {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 96, 169, 0.1), rgba(0, 96, 169, 0.1));
}
.text-image-block .image .cover-1 {
  z-index: 2;
  background: rgba(0, 96, 169, 0.3);
  mix-blend-mode: multiply;
}
.text-image-block .image-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.text-image-block--reverse .row {
  flex-direction: row-reverse;
}
.text-image-block--reverse .image-side {
  justify-content: flex-start;
}

.zeus {
  --section-pd: 10rem 0;
  --section-bg: #0060a9;
  --section-color: var(--color-white);
  padding: var(--section-pd);
  background: var(--section-bg);
  color: var(--section-color);
}
.zeus:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url("../png/decor-zeus-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.zeus .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
.zeus .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.zeus__about {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.zeus__about h3 {
  flex: 1;
  margin-right: 6rem;
  margin-bottom: 0 !important;
}
.zeus__about .button {
  --btn-color: inherit;
}

.capabilities {
  --section-pd: 18.6rem 0 3rem 0;
  --section-bg: #FAFAFA;
  --section-color: var(--color-grey-dark);
  padding: var(--section-pd);
  background: var(--section-bg);
  color: var(--section-color);
}
.capabilities .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  margin-bottom: 6rem;
}
.capabilities .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.capabilities .tab .image img {
  object-fit: cover !important;
}
.capabilities .tab__block-extra .col-xl-7.col-lg-6 .tab__extra {
  padding-left: 3rem;
}

.projects {
  --section-pd: 18.6rem 0 3rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  padding: var(--section-pd);
  background: var(--section-bg);
  color: var(--section-color);
	overflow: inherit;

}
.projects .section__text {
  text-align: center;
  max-width: 88rem;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.projects .section__text h3:nth-last-child(2) {
  margin-bottom: 3rem;
}
.projects .tab:not(:last-child) .image img {
  transform: translateX(10rem);
}
.projects__filters {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 6rem;
  flex-wrap: wrap;
  gap: 3rem;
}
.projects__filters h3 {
  margin-right: 1.5rem;
  margin-bottom: 0;
  font-weight: 700;
}
.projects__items .swiper-button-prev, .projects__items .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
}

.glance {
  --section-pd: 6rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: url("../png/decor-grid-2.png");
  background-size: auto;
  background-repeat: repeat;
  background-position: center center;
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.glance .row {
  margin-bottom: -3rem;
}
.glance .row:not(:last-child) {
  margin-bottom: 3rem;
}
.glance .row > div {
  margin-bottom: 3rem;
}
.glance .row > div.col-12 {
  text-align: center;
}
.glance .section__text {
  max-width: 100% !important;
}
.glance .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.glance-item {
  position: relative;
  min-height: 100%;
  background: #f2f7fb;
  padding: 3rem;
}
.glance-item__icon {
  width: 10rem;
  height: 10rem;
  color: #275EA4;
}
.glance-item__icon:not(:last-child) {
  margin-bottom: 2rem;
}
.glance-item__text h3:first-child {
  font-weight: 700;
}
.glance-item__text h3:not(:last-child) {
  margin-bottom: 1rem;
}
.glance__zeus {
  align-items: center;
  align-content: center;
}
.glance__zeus h3 {
  font-weight: 700;
}

.quote {
  --section-pd: 0;
  --section-bg: var(--color-grey-dark);
  --section-color: var(--color-white);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.quote_icon {
  position: absolute;
  width: 48rem;
  height: 38rem;
  z-index: -1;
  left: -12rem;
  top: -13rem;
  opacity: 0.05;
}
.quote_icon .icon {
  width: 100%;
  height: 100%;
}
.quote figure {
  position: relative;
}
.quote .section__text {
  padding: 13rem 0;
  margin: 0 auto;
}
.quote .section__text figure {
  margin: 0;
}
.quote .section__text figure blockquote {
  margin: 0 0 6rem 0;
}
.quote .section__text figure figcaption {
  position: relative;
}
.quote .section__text figure figcaption h3:not(:last-child) {
  margin-bottom: 0;
}
.quote .section__text h3 {
  font-weight: 700;
}
.quote .image {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.quote .image:before {
  content: "";
  position: absolute;
  width: 100vw;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--color-white);
  z-index: -1;
}
.quote .image picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.quote .image picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team {
  --section-pd: 6rem 0;
  --section-bg: #FAFAFA;
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.team .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
.team .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.team .row:not(:last-child) {
  margin-bottom: 6rem;
}
.team-item {
  position: relative;
}
.team-item:not(:last-child) {
  margin-bottom: 3rem;
}
.team-item .row {
  align-items: center;
  align-content: center;
}
.team-item__photo {
  position: relative;
  width: 100%;
  height: 100%;
}
.team-item__photo picture {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding-top: 100%;
  min-height: 100%;
}
.team-item__photo picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-item__info {
  position: relative;
  padding: 3rem 0;
}
.team-item__info > *:not(:last-child) {
  margin-bottom: 3rem;
}
.team-item__info-top h5 {
  color: var(--color-grey-light);
}
.team-item__info h2:not(:last-child) {
  margin-bottom: 1rem;
}

.slider-block {
  --section-pd: 6rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
}
.slider-block--style-1 {
  --section-bg: rgba(75, 75, 76, 0.05);
}
.slider-block .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
.slider-block .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.slider-block .section__text:not(:last-child) {
  margin-bottom: 6rem;
}
.slider-block__slider {
  position: relative;
}
.slider-block .swiper-container, .slider-block .swiper-wrapper, .slider-block .swiper-slide {
  height: 100%;
}
.slider-block .swiper-container {
  max-width: 1340px;
  margin: 0 auto;
  overflow: hidden;
}
.slider-block .swiper-slide {
  height: 83rem;
}
.slider-block .swiper-slide .image {
  position: relative;
  height: 100%;
  width: 100%;
}
.slider-block .swiper-slide .image picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
.slider-block .swiper-slide .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.slider-block .swiper-button-prev, .slider-block .swiper-button-next {
  width: 5rem;
  height: 5rem;
  z-index: 2;
  color: #7d7d7d;
}
.slider-block .swiper-button-prev:after, .slider-block .swiper-button-next:after {
  display: none;
}
.slider-block .swiper-button-prev {
  left: 0rem;
}
.slider-block .swiper-button-next {
  right: 0rem;
}
.slider-block .swiper-pagination {
  bottom: 3rem;
  line-height: 1;
}
.slider-block .swiper-pagination-bullet {
  z-index: 1;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem !important;
  border: 0.1rem solid #7d7d7d !important;
  border-radius: 100%;
  background: transparent;
  opacity: 1;
}
.slider-block .swiper-pagination-bullet-active {
  background: #7d7d7d;
}

.expansion {
  --section-pd: 6rem 0;
  --section-bg: rgba(75, 75, 76, 0.05);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.expansion #anch {
  position: absolute;
  top: 50%;
}
.expansion .section__text {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
.expansion .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.expansion .section__text:not(:last-child) {
  margin-bottom: 6rem;
}
.expansion__content {
  position: relative;
  display: flex;
}
.expansion__map {
  position: relative;
  width: 100%;
  margin-top: 10rem;
  margin-left: 15rem;
  margin-right: auto;
  max-width: 70rem;
  min-width: 70rem;
}
.expansion__map h3 {
  font-size: 1.9rem;
}
.expansion__map .img {
  position: relative;
}
.expansion__map .img .icon {
  position: absolute;
  width: 3rem;
  height: 3rem;
  z-index: 1;
}
.expansion__map .img .icon-ca {
  left: 4%;
  top: 40%;
}
.expansion__map .img .icon-planned {
  left: 50%;
  top: 10%;
  color: var(--color-green-light);
}
.expansion__map picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.expansion__map picture img {
  position: relative;
  width: 100%;
  height: auto;
}
.expansion__map-markers {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.expansion__map-marker {
  position: absolute;
  top: 0;
  left: 0;
}
.expansion__map-marker.planned {
  width: 14rem;
}
.expansion__map-marker.planned .line {
  color: var(--color-green-light);
}
.expansion__map-marker.ca {
  width: 16rem;
}
.expansion__map-marker.zeuss {
  width: 27%;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
}
.expansion__map-marker.zeuss .dot {
  position: absolute;
  display: block;
  background: var(--color-blue);
  border-radius: 100%;
  width: 1.6rem;
  height: 1.6rem;
  box-shadow: 0px 0px 6px 3px rgba(34, 60, 80, 0.1);
  border: 0.1rem solid rgba(0, 0, 0, 0.25);
}
.expansion__map-marker.zeuss .dot-0 {
  bottom: 43%;
  left: 0;
}
.expansion__map-marker.zeuss .dot-1 {
  bottom: 66%;
  right: 30%;
}
.expansion__map-marker.zeuss .dot-2 {
  bottom: 35%;
  right: 67%;
}
.expansion__map-marker.zeuss .dot-3 {
  bottom: 35%;
  right: 53%;
}
.expansion__map-marker.zeuss .dot-4 {
  bottom: 38%;
  right: 51%;
}
.expansion__map-marker.zeuss .dot-5 {
  bottom: 37%;
  right: 57%;
}
.expansion__map-marker.zeuss .dot-6 {
  bottom: 40%;
    right: 83%;
}
.expansion__info {
  position: absolute;
  left: 0;
  bottom: 7rem;
  display: flex;
  flex-direction: column;
}
.expansion__info-item {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  font-weight: 700;
}
.expansion__info-item:not(:last-child) {
  margin-bottom: 1rem;
}
.expansion__info-item:last-child {
  color: var(--color-green-light);
}
.expansion__info-item .icon {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}
.expansion__title {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}
.expansion__title h3 {
  margin-bottom: 0 !important;
  font-weight: 700;
  color: var(--color-grey-dark);
  padding-bottom: 1rem;
}
.expansion__title .icon {
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: -1.3rem;
  right: -2rem;
}
.expansion__title .line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.4rem;
  width: 100%;
  border-bottom: 0.4rem dashed currentColor;
}
.expansion__extra {
  position: relative;
  bottom: 0;
  right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 5rem;
  gap: 4rem;
  flex: 1;
}
.expansion__extra-zeus {
  display: flex;
  align-items: center;
  align-content: center;
  font-style: italic;
  gap: 1rem;
  font-weight: 300;
  color: var(--color-blue-light);
}
.expansion__extra-zeus .dot {
  position: relative;
  display: block;
  background: var(--color-blue);
  border-radius: 100%;
  width: 1.6rem;
  height: 1.6rem;
  box-shadow: 0px 0px 6px 3px rgba(34, 60, 80, 0.1);
  border: 0.1rem solid rgba(0, 0, 0, 0.25);
}
.expansion__extra-zeus p {
  flex: 1;
}
.expansion__extra-mexico {
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  gap: 3rem;
}
.expansion__extra-text {
  position: relative;
  z-index: 1;
  transition-delay: 4s !important;
  width: 16.5rem;
}
.expansion__extra-text .expansion__title {
  color: var(--color-green-light);
}
.expansion__extra-map {
  position: relative;
  height: 24rem;
  width: 39rem;
  transition-delay: 4s !important;
}
.expansion__extra-map .icon {
  position: absolute;
  width: 3rem;
  height: 3rem;
  bottom: 5rem;
  right: 13rem;
  z-index: 1;
  color: var(--color-green-light);
}
.expansion__extra-map-wrap {
  z-index: 0;
  position: relative;
}
.expansion__extra-map h5 {
  height: 4rem;
}
.expansion__extra-map picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 0.2rem solid var(--color-grey-dark);
}
.expansion__extra-map picture img {
  position: relative;
  height: 100%;
  width: auto;
}

.partner {
  --section-pd: 8rem 0;
  --section-bg: var(--color-white);
  --section-color: var(--color-grey-dark);
  background: var(--section-bg);
  padding: var(--section-pd);
  color: var(--section-color);
  display: flex;
  align-items: center;
  align-content: center;
}
.partner .section__text {
  text-align: center;
  max-width: 92rem;
  margin: 0 auto;
}
.partner .section__text h3:nth-last-child(2) {
  margin-bottom: 6rem;
}
.partner .section__text a {
  color: var(--color-blue-light);
}
.partner .section__text:not(:last-child) {
  margin-bottom: 11rem;
}
.partner .img1 {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.partner__content {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.partner__content-item {
  position: relative;
}
.partner__content-item:nth-child(1) {
  width: 33.5rem;
}
.partner__content-item:nth-child(2) {
  flex: 1;
}
@media (max-width: 1699px) and (min-width: 1200px){
  .zeus .row {
    align-items: center;
    align-content: center;
  }
  .zeus .offset-lg-1.col-lg-4 {
    width: 33%;
    margin: 0;
  }
  .zeus .offset-lg-1.col-lg-5 {
    width: 57%;
    margin-left: 10%;
  }
  .expansion__extra-mexico {
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
  }
}
@media (max-width: 1699px){
  h3,
.h3 {
    font-size: 1.9rem;
  }
  .section:not(.hero) .section__text {
    max-width: 70rem;
  }
  .tabs .tab__subblock .line .txt {
    font-size: 1.4rem;
  }
  .hero {
    --section-pd: 22rem 0 12rem 0;
  }
  .hero .section__text {
    max-width: 70rem;
  }
  .markets__item-info--top {
    padding-bottom: 3rem;
  }
  .markets__item-image {
    padding: 3rem 3rem 0 3rem;
  }
  .agility__items-decor {
    width: 100%;
    transform: translateY(0);
  }
  .agility__item {
    --gp: 20rem;
  }
  .agility__item-title {
    font-size: 3rem;
  }
  .text-image-block {
    height: auto;
  }
  .text-image-block .d-xl-block {
    display: none !important;
  }
  .text-image-block .col-xl-1 {
    display: none;
  }
  .projects .tab:not(:last-child) .image img {
    transform: translateX(5rem);
  }
  .glance-item__icon {
    width: 7rem;
    height: 7rem;
  }
  .quote_icon {
    width: 35rem;
    height: 23rem;
    left: -10rem;
    top: -5rem;
  }
  .quote .section__text {
    padding: 8rem 0;
  }
  .slider-block .swiper-container {
    max-width: 1000px;
  }
  .slider-block .swiper-slide {
    height: 60rem;
  }
  .expansion .section__text {
    max-width: 70rem;
  }
  .partner .section__text {
    max-width: 70rem;
  }
  .partner__content-item:nth-child(1) {
    width: 27.5rem;
  }
}
@media (max-width: 1299px){
  h1,
.h1 {
    font-size: 5rem;
  }
  h2,
.h2 {
    font-size: 2.8rem;
  }
  .markets__item-image {
    padding: 3rem 3rem 0 3rem;
  }
  .agility__item-title {
    font-size: 2.6rem;
  }
  .manufacturing__item {
    min-height: 60rem;
  }
  .quote .section__text h2:not(.h1) {
    font-size: 2.4rem;
  }
}
@media (max-width: 1199px){
  .header .button {
    font-size: 0;
    min-width: 4rem;
    min-height: 4rem;
    height: 4rem;
    padding: 0.5rem;
    column-gap: 0;
    border: none;
    background: none !important;
  }
  .header__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    max-height: calc(var(--vh, 1vh) * 100);
    padding: 14rem var(--gap) 10rem var(--gap);
    background-color: var(--header-bg);
    box-shadow: 0px 2px 8px 2px rgba(34, 60, 80, 0.22);
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
  }
  .header__nav-side {
    order: 2;
  }
  .footer__contact {
    display: flex;
  }
  .socials {
    column-gap: 2.4rem;
  }
  .menu {
    justify-content: center;
    flex-direction: column;
  }
  .menu-open {
    overflow: hidden !important;
  }
  .tabs .tab__slider .swiper-slide {
    height: 40rem;
  }
  .markets__item {
    --item-icn-size: 30rem;
    min-height: 30rem;
  }
  .contact__form {
    padding: 8rem;
  }
  .contact-map .map {
    min-height: 45rem;
  }
  .agility__item {
    --gp: 10rem;
    --l-pos: 2rem;
  }
  .agility__item:nth-child(1) {
    padding: 4rem 2rem;
  }
  .agility__item:nth-child(2) {
    padding: 6rem 2rem;
  }
  .agility__item:nth-child(3) {
    padding: 8rem 4rem;
  }
  .agility__item:nth-child(4) {
    padding: 10rem 2rem;
  }
  .agility__item-title {
    font-size: 2.4rem;
  }
  .projects .tab:not(:last-child) .image img {
    transform: translateX(0);
    object-fit: cover;
  }
  .slider-block .swiper-slide {
    height: 55rem;
  }
  .expansion__content {
    flex-direction: column;
  }
  .expansion__info {
    position: relative;
    bottom: 0;
    padding-bottom: 3rem;
  }
  .expansion__extra {
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    padding-left: 0;
  }
  .partner__content-item:nth-child(1) {
    width: 20rem;
  }
}
@media (max-width: 991px){
  .tabs .tab ul {
    width: auto;
  }
  .tabs .tab__block-extra .row > div:not(:last-child) {
    margin-bottom: 3rem;
  }
  .tabs .tab__slider:before {
    width: calc(100% - 6rem);
    height: 0.1rem;
    left: 0;
    right: 0;
    border-left: 0;
    margin: 0 auto;
    border-top: 1px solid rgba(121, 122, 121, 0.2);
  }
  .tabs .tab .text-side {
    order: 1;
  }
  .tabs .tab .slider-side {
    order: 3;
    margin-top: 3rem;
  }
  .tabs .tab .tab__block-extra {
    order: 2;
  }
  .markets__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .markets__item {
    width: calc(50% - 1.5rem);
  }
  .markets__item .row {
    min-height: 100%;
  }
  .markets__item-info {
    padding: 3rem;
  }
  .markets__item-info ul {
    width: auto;
  }
  .markets__item-image {
    height: 20rem;
  }
  .markets__item-image:after {
    margin: 0 auto;
    left: 0;
    top: auto;
    width: calc(100% - 6rem);
    height: 0.1rem;
  }
  .anatomy {
    --c-size: 69rem;
  }
  .anatomy__item ul {
    width: auto;
  }
  .contact__form {
    padding: 8rem 4rem;
  }
  .contact-map {
    --section-pd: 8rem 0 0 0;
  }
  .contact-map .map {
    margin-top: 5rem;
    width: 100vw;
    min-height: 35rem;
    margin: 5rem calc((100% - 100vw) / 2) 0 calc((100% - 100vw) / 2);
  }
  .agility__head {
    --section-pd: 12rem 0 8rem 0;
  }
  .agility__body {
    padding-bottom: 4rem;
  }
  .agility__items {
    flex-direction: column;
  }
  .agility__item {
    width: auto;
    padding: 4rem !important;
    transition-delay: 0.1s !important;
    transform: translateY(-4rem) !important;
  }
  .agility__item.aos-animate {
    transform: translateY(0) !important;
  }
  .agility__item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .agility__item:nth-child(1) .line {
    left: 4rem;
  }
  .agility__item:nth-child(2) .line {
    right: 4rem;
  }
  .agility__item:nth-child(3) .line {
    left: 4rem;
  }
  .agility__item:nth-child(4) .line {
    right: 4rem;
  }
  .agility__item .line {
    top: auto !important;
    bottom: -4rem !important;
    width: 0.1rem;
    height: 6rem;
    left: auto;
    transition-delay: 0.15s !important;
    transform: translateY(-4rem) !important;
  }
  .agility__item .line.aos-animate {
    transform: translateY(0) !important;
  }
  .manufacturing__item {
    min-height: 10rem;
  }
  .manufacturing__item-type {
    left: 2rem;
    top: 2rem;
  }
  .manufacturing__item-text {
    padding: 10rem 2rem;
  }
  .manufacturing__item-title {
    font-size: 3.6rem;
  }
  .team-item .row {
    align-items: flex-start;
    align-content: flex-start;
  }
  .slider-block .swiper-slide {
    height: 45rem;
  }
  .slider-block .swiper-button-prev, .slider-block .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
  .slider-block .swiper-button-prev {
    left: 1rem;
  }
  .slider-block .swiper-button-next {
    right: 1rem;
  }
  .expansion__content *,
.expansion__content .expansion__extra-text,
.expansion__content .expansion__extra-map {
    transition-delay: 200ms !important;
  }
  .expansion__map {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    order: 1;
  }
  .expansion__map picture {
    order: 2;
  }
  .expansion__map-markers {
    position: relative;
    order: 1;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .expansion__map-markers > * {
    margin-bottom: 1rem;
  }
  .expansion__map-markers > *:not(:last-child) {
    margin-right: 4rem;
  }
  .expansion__map-marker:not(.zeuss) {
    position: relative;
  }
  .expansion__map-marker .icon {
    display: none;
  }
  .expansion__info {
    order: 3;
    padding-bottom: 0;
    padding-top: 5rem;
  }
  .expansion__extra {
    flex-direction: column;
    order: 2;
  }
  .partner .section__text:not(:last-child) {
    margin-bottom: 6rem;
  }
  .partner__content-item:nth-child(1) {
    width: 15.5rem;
  }
}
@media (max-width: 767px){
  html {
    --gap: 15px !important;
  }
  .header {
    --header-padding: 2rem 0;
  }
  .footer .row .col:last-child {
    max-width: 100%;
  }
  .default:first-child {
    padding-top: 12rem !important;
  }
  .anatomy {
    --section-pd: 6rem 0;
    --img-w: 15rem;
    --img-h: 34.2rem;
  }
  .anatomy__content {
    display: flex;
    flex-direction: column;
  }
  .anatomy__image {
    order: 1;
    left: auto;
    right: -3.5rem;
  }
  .anatomy__text {
    order: 2;
    padding-right: calc(var(--img-w) - 5rem);
  }
  .anatomy__item {
    transform: none !important;
    margin: 0 !important;
    width: 100% !important;
    align-items: flex-start !important;
    align-content: flex-start !important;
    z-index: 0 !important;
    padding-bottom: 2rem;
  }
  .anatomy__item-title, .anatomy__item-text {
    width: 100% !important;
  }
  .anatomy__item-title {
    text-align: left !important;
  }
  .anatomy__item-text {
    display: none;
  }
  .anatomy__item-text ul {
    margin: 0;
  }
  .anatomy__item .line {
    display: none;
  }
  .anatomy__item.active .anatomy__item-text {
    display: block;
  }
  .anatomy__text {
    flex-wrap: wrap;
  }
  .anatomy__text-side {
    width: 100% !important;
    padding: 0 !important;
    align-items: flex-start !important;
    align-content: flex-start !important;
  }
  .contact__form {
    padding: 4rem 3rem;
  }
  .projects__filters h3 {
    margin-right: 0;
  }
  .slider-block {
    padding-bottom: 0;
  }
  .slider-block__slider {
    width: 100vw;
    margin: 0 calc((100% - 100vw)/2);
  }
  .expansion__map {
    max-width: 100%;
    min-width: 100%;
  }
  .expansion__extra-mexico {
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
  }
  .expansion__extra-text {
    padding-right: 0;
    width: 100%;
  }
  .expansion__extra-map {
    width: 100%;
  }
  .expansion__extra-map picture {
    height: auto !important;
  }
  .expansion__extra-map-wrap {
    transform: none;
    width: 100%;
  }
  .partner__content-item:nth-child(1) {
    width: 12rem;
  }
}
@media (max-width: 575px){
  .tabs .tab__slider .swiper-slide {
    height: 30rem;
  }
  .markets__item {
    width: 100%;
  }
  .slider-block .swiper-slide {
    height: 35rem;
  }
  .partner__content {
    flex-wrap: wrap;
  }
  .partner__content-item:nth-child(1) {
    width: 100%;
  }
  .partner__content-item:nth-child(1) picture {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
  }
  .partner__content-item:nth-child(1) img {
    max-width: 25rem;
  }
  .partner__content-item:nth-child(2) {
    flex: none;
    width: 100vw;
    margin: 0 calc((100% - 100vw)/2);
  }
}
@media (min-width: 992px){
  .markets-head .row {
    margin: 0 calc(-2 * var(--gap));
  }
  .expansion__map-marker.planned {
    transform: translate(31rem, -7rem);
  }
  .expansion__map-marker.planned .line .icon {
    left: 3rem;
    right: 0;
    margin: 0 auto;
    bottom: -14.25rem;
    top: auto;
  }
  .expansion__map-marker.ca {
    transform: translate(-14rem, 15rem);
  }
  .expansion__map-marker.ca .line .icon {
    left: calc(100% - 1rem);
  }
}
@media (min-width: 1200px) and (max-width: 1699px){
  .text-image-block .col-xl-3 {
    width: auto;
    flex: 1;
    max-width: 33%;
  }
  .text-image-block .col-xl-8 {
    width: 66%;
  }
}
@media (min-width: 1200px){
  .header .button .icon {
    display: none;
  }
  .menu__item {
    margin: 0 2rem;
  }
  .menu-button {
    display: none;
  }
}
@media (min-width: 1400px){
  .text-image-block .section__text h2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1700px){
  .container {
    max-width: 1650px;
  }
  .text-image-block .section__text h2 {
    font-size: 5.6rem;
  }
}
@media (hover: hover) and (pointer: fine), (-ms-high-contrast: none), (-ms-high-contrast: active){
  a:hover {
    text-decoration: none;
  }
}
@media (min-width: 1200px) {
#menu-footer .menu__item {
      margin: 0px 0px 1rem 0px;
}
}
.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}
.archive {
	    padding-bottom: 20rem;
}