/*! leo.suhomud@gmail.com */
/**
* Import mixins
*/
/**
* Import base
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  -webkit-text-size-adjust: 100%; }

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  margin: 0 !important;
  padding: 0;
  width: 100%;
  overflow-x: hidden; }

body {
  width: 100%;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 0;
  padding: 0;
  color: #222; }
  @media only screen and (min-width: 768px) {
    body {
      font-size: 1.4rem;
      line-height: 2.4rem; } }
  body.prevent-scroll {
    overflow: hidden; }

a {
  text-decoration: none;
  transition: color 0.2s ease-out;
  cursor: pointer; }

p {
  margin: 15px 0; }
  @media only screen and (min-width: 1023px) {
    p {
      margin: 20px 0; } }

strong, b {
  font-weight: 700; }

img {
  max-width: 100%; }

hr {
  width: 100%;
  height: 1px;
  background-color: #c00e0e; }

.no-margin-top {
  margin-top: 0 !important; }

/**
* Import components
*/
.accordion__item {
  margin: 5px auto; }

.accordion__title {
  display: block;
  margin-bottom: 8px;
  padding: 20px 20px 18px;
  background-color: #F7F7F7;
  color: #222;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease-in-out; }
  @media only screen and (min-width: 768px) {
    .accordion__title {
      padding: 37px 32px 35px;
      font-size: 2.4rem;
      line-height: 4.2rem; } }
  .accordion__title:hover {
    background-color: #D4D4D4; }

.accordion__content {
  display: none; }

.breadcrumbs {
  display: none; }
  @media only screen and (min-width: 768px) {
    .breadcrumbs {
      display: -ms-inline-flexbox;
      display: inline-flex;
      height: 56px;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      list-style: none;
      font-size: 1.2rem;
      line-height: 1.8rem;
      font-weight: 400;
      color: #777; } }
  .breadcrumbs__item {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    position: relative; }
    .breadcrumbs__item::after {
      content: "|";
      margin-left: 10px;
      margin-right: 10px; }
  .breadcrumbs__link {
    color: #777;
    letter-spacing: 0.25px; }
  .breadcrumbs__current {
    color: #c00e0e;
    letter-spacing: 0.25px; }

.btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 55px;
  padding: 2px 24px 1px;
  border: 2px solid transparent;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out; }
  .btn--primary {
    background-color: transparent;
    color: #222;
    border-color: #222; }
    .btn--primary:hover {
      color: #fff;
      border-color: #c00e0e;
      background-color: #c00e0e; }
  .btn--secondary {
    background-color: #c00e0e;
    color: #fff;
    border-color: #c00e0e; }
    .btn--secondary:hover {
      color: #c00e0e;
      background-color: transparent; }
  .btn--secondary-outline {
    background-color: transparent;
    color: #c00e0e;
    border-color: #c00e0e; }
    .btn--secondary-outline:hover {
      color: #fff;
      background-color: #c00e0e; }
  .btn--white-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff; }
    .btn--white-outline:hover {
      border-color: #c00e0e;
      background-color: #c00e0e; }
  .btn--small {
    height: 40px;
    padding: 2px 20px 1px; }
  @media only screen and (min-width: 768px) {
    .btn--wide {
      min-width: 353px; } }
  .btn--border-thin {
    border-width: 1px; }
  @media only screen and (min-width: 768px) {
    .btn--long {
      padding: 0 37px; } }
  .btn--hover-white:hover {
    border-color: #fff;
    background-color: #fff;
    color: #c00e0e; }

.card1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .card1:hover .card1__title {
    color: #c00e0e; }
  .card1:hover .card1__arrow {
    background-color: #c00e0e; }
    .card1:hover .card1__arrow::before {
      filter: brightness(0) invert(1); }
  .card1__image {
    height: auto;
    max-height: 200px;
    object-fit: cover;
    object-position: center; }
    @media only screen and (min-width: 479px) {
      .card1__image {
        height: 180px;
        max-height: inherit; } }
    @media only screen and (min-width: 768px) {
      .card1__image {
        height: 200px; } }
    @media only screen and (min-width: 1365px) {
      .card1__image {
        height: 294px; } }
  .card1__content {
    -ms-flex: 1;
        flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-top: 20px;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .card1__content {
        margin-top: 27px; } }
  .card1__date {
    display: block;
    color: #222;
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .card1__date {
        font-size: 1.4rem;
        line-height: 2.4rem; } }
  .card1__title {
    margin-top: 5px;
    padding-right: 50px;
    font-weight: 700;
    color: #222;
    font-size: 1.4rem;
    line-height: 2.4rem;
    transition: color 0.2s ease-in-out; }
    @media only screen and (min-width: 1023px) {
      .card1__title {
        padding-right: 60px;
        font-size: 1.8rem;
        line-height: 2.4rem;
        font-family: "Montserrat", sans-serif; } }
  .card1__arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border: 1px solid #c00e0e;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out; }
    @media only screen and (min-width: 1023px) {
      .card1__arrow {
        width: 49px;
        height: 49px; } }
    .card1__arrow::before {
      content: "";
      background: transparent url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: 12px;
      width: 100%;
      height: 100%;
      transition: filter 0.2s ease-in-out; }
      @media only screen and (min-width: 1023px) {
        .card1__arrow::before {
          background-size: 15px; } }

.card1-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 50px 0;
  margin: 20px 0 30px; }
  @media only screen and (min-width: 479px) {
    .card1-wrapper {
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr);
      grid-gap: 40px 17px;
      margin: 40px 0; } }
  @media only screen and (min-width: 768px) {
    .card1-wrapper {
      -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr);
      grid-gap: 44px 20px; } }
  @media only screen and (min-width: 1279px) {
    .card1-wrapper {
      grid-gap: 44px 25px;
      margin: 60px 0 20px; } }
  @media only screen and (min-width: 1600px) {
    .card1-wrapper {
      grid-gap: 64px; } }
  .card1-wrapper--home .card1:nth-child(3) {
    display: none; }
    @media only screen and (min-width: 768px) {
      .card1-wrapper--home .card1:nth-child(3) {
        display: -ms-flexbox;
        display: flex; } }

.card2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex: 1;
      flex: 1;
  height: 213px;
  padding: 40px 20px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .card2 {
      height: 300px;
      padding: 30px 50px; } }
  @media only screen and (min-width: 1279px) {
    .card2 {
      height: 326px;
      padding: 40px 60px; } }
  .card2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1; }
  .card2__content {
    position: relative;
    z-index: 2; }
  .card2__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .card2__title {
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 3rem;
    color: #fff; }
    .card2__title strong, .card2__title b, .card2__title span {
      font-weight: 700; }
  .card2__btn {
    margin-top: 25px; }
    @media only screen and (min-width: 768px) {
      .card2__btn {
        margin-top: 30px; } }

.card2-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0 -20px;
  background-color: #F7F7F7;
  color: #fff; }
  @media only screen and (min-width: 768px) {
    .card2-wrapper {
      margin: 0; } }
  @media only screen and (min-width: 1023px) {
    .card2-wrapper {
      -ms-flex-direction: row;
          flex-direction: row; } }

.card3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 30px 20px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .card3 {
      width: 50%; } }
  @media only screen and (min-width: 1279px) {
    .card3 {
      width: 33.33%; } }
  @media only screen and (min-width: 768px) {
    .card3:first-child {
      width: 100%; } }
  @media only screen and (min-width: 1279px) {
    .card3:first-child {
      width: 33.33%; } }
  .card3--primary {
    background-color: #c00e0e;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        align-items: flex-start;
    padding: 40px 20px;
    margin-bottom: 5px; }
    @media only screen and (min-width: 768px) {
      .card3--primary {
        padding: 69px 46px 46px 46px;
        width: calc(50% - 2.5px); } }
    @media only screen and (min-width: 1279px) {
      .card3--primary {
        width: calc(33.33% - 5px); } }
  .card3__top {
    margin-bottom: 25px; }
  .card3__bottom {
    margin-top: 40px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .card3__bottom {
        margin-top: 60px; } }
  .card3__date {
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.8rem; }
  .card3__label {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem; }
  .card3__value {
    font-weight: 500; }

.card3-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #fff; }
  @media only screen and (min-width: 768px) {
    .card3-wrapper {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-align: start;
          align-items: flex-start; } }
  @media only screen and (min-width: 768px) {
    .card3-wrapper--primary {
      -ms-flex-align: inherit;
          align-items: inherit;
      -ms-flex-pack: justify;
          justify-content: space-between; } }

.container-xl {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .container-xl {
      padding-left: 60px;
      padding-right: 60px; } }
  @media only screen and (min-width: 1600px) {
    .container-xl {
      max-width: 1760px; } }

.container-sm {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .container-sm {
      padding-left: 60px;
      padding-right: 60px; } }
  @media only screen and (min-width: 1600px) {
    .container-sm {
      max-width: 1760px; } }
  @media only screen and (min-width: 768px) {
    .container-sm {
      max-width: 1200px; } }

@media only screen and (min-width: 1023px) {
  .col-lg-50 {
    width: 60%; } }

@media only screen and (min-width: 1279px) {
  .col-lg-50 {
    width: 50%; } }

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

.text-right {
  text-align: right !important; }

.hidden-mobile {
  display: none !important; }
  @media only screen and (min-width: 768px) {
    .hidden-mobile {
      display: block !important; } }

@media only screen and (min-width: 768px) {
  .hidden-desktop {
    display: none !important; } }

@media only screen and (max-width: 767px) {
  .mobile-mt-0 {
    margin-top: 0 !important; } }

@media only screen and (max-width: 767px) {
  .mobile-mb-0 {
    margin-bottom: 0 !important; } }

@media only screen and (max-width: 767px) {
  .mobile-pt-0 {
    padding-top: 0 !important; } }

@media only screen and (max-width: 767px) {
  .mobile-pb-0 {
    padding-bottom: 0 !important; } }

.mt-0 {
  margin-top: 0px !important; }
  @media only screen and (min-width: 768px) {
    .mt-0 {
      margin-top: 0px !important; } }

.mb-0 {
  margin-bottom: 0px !important; }
  @media only screen and (min-width: 768px) {
    .mb-0 {
      margin-bottom: 0px !important; } }

.ml-0 {
  margin-left: 0px !important; }
  @media only screen and (min-width: 768px) {
    .ml-0 {
      margin-left: 0px !important; } }

.mr-0 {
  margin-right: 0px !important; }
  @media only screen and (min-width: 768px) {
    .mr-0 {
      margin-right: 0px !important; } }

.mt-1 {
  margin-top: 8px !important; }
  @media only screen and (min-width: 768px) {
    .mt-1 {
      margin-top: 10px !important; } }

.mb-1 {
  margin-bottom: 8px !important; }
  @media only screen and (min-width: 768px) {
    .mb-1 {
      margin-bottom: 10px !important; } }

.ml-1 {
  margin-left: 8px !important; }
  @media only screen and (min-width: 768px) {
    .ml-1 {
      margin-left: 10px !important; } }

.mr-1 {
  margin-right: 8px !important; }
  @media only screen and (min-width: 768px) {
    .mr-1 {
      margin-right: 10px !important; } }

.mt-2 {
  margin-top: 16px !important; }
  @media only screen and (min-width: 768px) {
    .mt-2 {
      margin-top: 20px !important; } }

.mb-2 {
  margin-bottom: 16px !important; }
  @media only screen and (min-width: 768px) {
    .mb-2 {
      margin-bottom: 20px !important; } }

.ml-2 {
  margin-left: 16px !important; }
  @media only screen and (min-width: 768px) {
    .ml-2 {
      margin-left: 20px !important; } }

.mr-2 {
  margin-right: 16px !important; }
  @media only screen and (min-width: 768px) {
    .mr-2 {
      margin-right: 20px !important; } }

.mt-3 {
  margin-top: 24px !important; }
  @media only screen and (min-width: 768px) {
    .mt-3 {
      margin-top: 30px !important; } }

.mb-3 {
  margin-bottom: 24px !important; }
  @media only screen and (min-width: 768px) {
    .mb-3 {
      margin-bottom: 30px !important; } }

.ml-3 {
  margin-left: 24px !important; }
  @media only screen and (min-width: 768px) {
    .ml-3 {
      margin-left: 30px !important; } }

.mr-3 {
  margin-right: 24px !important; }
  @media only screen and (min-width: 768px) {
    .mr-3 {
      margin-right: 30px !important; } }

.mt-4 {
  margin-top: 32px !important; }
  @media only screen and (min-width: 768px) {
    .mt-4 {
      margin-top: 40px !important; } }

.mb-4 {
  margin-bottom: 32px !important; }
  @media only screen and (min-width: 768px) {
    .mb-4 {
      margin-bottom: 40px !important; } }

.ml-4 {
  margin-left: 32px !important; }
  @media only screen and (min-width: 768px) {
    .ml-4 {
      margin-left: 40px !important; } }

.mr-4 {
  margin-right: 32px !important; }
  @media only screen and (min-width: 768px) {
    .mr-4 {
      margin-right: 40px !important; } }

.mt-5 {
  margin-top: 40px !important; }
  @media only screen and (min-width: 768px) {
    .mt-5 {
      margin-top: 50px !important; } }

.mb-5 {
  margin-bottom: 40px !important; }
  @media only screen and (min-width: 768px) {
    .mb-5 {
      margin-bottom: 50px !important; } }

.ml-5 {
  margin-left: 40px !important; }
  @media only screen and (min-width: 768px) {
    .ml-5 {
      margin-left: 50px !important; } }

.mr-5 {
  margin-right: 40px !important; }
  @media only screen and (min-width: 768px) {
    .mr-5 {
      margin-right: 50px !important; } }

.mt-6 {
  margin-top: 48px !important; }
  @media only screen and (min-width: 768px) {
    .mt-6 {
      margin-top: 60px !important; } }

.mb-6 {
  margin-bottom: 48px !important; }
  @media only screen and (min-width: 768px) {
    .mb-6 {
      margin-bottom: 60px !important; } }

.ml-6 {
  margin-left: 48px !important; }
  @media only screen and (min-width: 768px) {
    .ml-6 {
      margin-left: 60px !important; } }

.mr-6 {
  margin-right: 48px !important; }
  @media only screen and (min-width: 768px) {
    .mr-6 {
      margin-right: 60px !important; } }

.pt-0 {
  padding-top: 0px !important; }
  @media only screen and (min-width: 768px) {
    .pt-0 {
      padding-top: 0px !important; } }

.pb-0 {
  padding-bottom: 0px !important; }
  @media only screen and (min-width: 768px) {
    .pb-0 {
      padding-bottom: 0px !important; } }

.pl-0 {
  padding-left: 0px !important; }
  @media only screen and (min-width: 768px) {
    .pl-0 {
      padding-left: 0px !important; } }

.pr-0 {
  padding-right: 0px !important; }
  @media only screen and (min-width: 768px) {
    .pr-0 {
      padding-right: 0px !important; } }

.pt-1 {
  padding-top: 8px !important; }
  @media only screen and (min-width: 768px) {
    .pt-1 {
      padding-top: 10px !important; } }

.pb-1 {
  padding-bottom: 8px !important; }
  @media only screen and (min-width: 768px) {
    .pb-1 {
      padding-bottom: 10px !important; } }

.pl-1 {
  padding-left: 8px !important; }
  @media only screen and (min-width: 768px) {
    .pl-1 {
      padding-left: 10px !important; } }

.pr-1 {
  padding-right: 8px !important; }
  @media only screen and (min-width: 768px) {
    .pr-1 {
      padding-right: 10px !important; } }

.pt-2 {
  padding-top: 16px !important; }
  @media only screen and (min-width: 768px) {
    .pt-2 {
      padding-top: 20px !important; } }

.pb-2 {
  padding-bottom: 16px !important; }
  @media only screen and (min-width: 768px) {
    .pb-2 {
      padding-bottom: 20px !important; } }

.pl-2 {
  padding-left: 16px !important; }
  @media only screen and (min-width: 768px) {
    .pl-2 {
      padding-left: 20px !important; } }

.pr-2 {
  padding-right: 16px !important; }
  @media only screen and (min-width: 768px) {
    .pr-2 {
      padding-right: 20px !important; } }

.pt-3 {
  padding-top: 24px !important; }
  @media only screen and (min-width: 768px) {
    .pt-3 {
      padding-top: 30px !important; } }

.pb-3 {
  padding-bottom: 24px !important; }
  @media only screen and (min-width: 768px) {
    .pb-3 {
      padding-bottom: 30px !important; } }

.pl-3 {
  padding-left: 24px !important; }
  @media only screen and (min-width: 768px) {
    .pl-3 {
      padding-left: 30px !important; } }

.pr-3 {
  padding-right: 24px !important; }
  @media only screen and (min-width: 768px) {
    .pr-3 {
      padding-right: 30px !important; } }

.pt-4 {
  padding-top: 32px !important; }
  @media only screen and (min-width: 768px) {
    .pt-4 {
      padding-top: 40px !important; } }

.pb-4 {
  padding-bottom: 32px !important; }
  @media only screen and (min-width: 768px) {
    .pb-4 {
      padding-bottom: 40px !important; } }

.pl-4 {
  padding-left: 32px !important; }
  @media only screen and (min-width: 768px) {
    .pl-4 {
      padding-left: 40px !important; } }

.pr-4 {
  padding-right: 32px !important; }
  @media only screen and (min-width: 768px) {
    .pr-4 {
      padding-right: 40px !important; } }

.pt-5 {
  padding-top: 40px !important; }
  @media only screen and (min-width: 768px) {
    .pt-5 {
      padding-top: 50px !important; } }

.pb-5 {
  padding-bottom: 40px !important; }
  @media only screen and (min-width: 768px) {
    .pb-5 {
      padding-bottom: 50px !important; } }

.pl-5 {
  padding-left: 40px !important; }
  @media only screen and (min-width: 768px) {
    .pl-5 {
      padding-left: 50px !important; } }

.pr-5 {
  padding-right: 40px !important; }
  @media only screen and (min-width: 768px) {
    .pr-5 {
      padding-right: 50px !important; } }

.pt-6 {
  padding-top: 48px !important; }
  @media only screen and (min-width: 768px) {
    .pt-6 {
      padding-top: 60px !important; } }

.pb-6 {
  padding-bottom: 48px !important; }
  @media only screen and (min-width: 768px) {
    .pb-6 {
      padding-bottom: 60px !important; } }

.pl-6 {
  padding-left: 48px !important; }
  @media only screen and (min-width: 768px) {
    .pl-6 {
      padding-left: 60px !important; } }

.pr-6 {
  padding-right: 48px !important; }
  @media only screen and (min-width: 768px) {
    .pr-6 {
      padding-right: 60px !important; } }

.footer {
  padding: 40px 0 0;
  background-color: #272727;
  color: #fff; }
  @media only screen and (min-width: 768px) {
    .footer {
      padding: 70px 0 0; } }
  .footer__wrapper {
    display: -ms-flexbox;
    display: flex; }
  .footer__logo {
    margin-bottom: 30px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .footer__logo {
        text-align: left;
        margin-bottom: 60px; } }
    .footer__logo img {
      width: 160px;
      filter: brightness(0) invert(1); }
  .footer__info {
    width: 100%; }
    @media only screen and (min-width: 1023px) {
      .footer__info {
        width: 31%;
        margin-right: 16px; } }
    @media only screen and (min-width: 1279px) {
      .footer__info {
        width: 34%; } }
  .footer__contact {
    display: block;
    position: relative;
    margin-bottom: 20px;
    padding-left: 50px;
    font-size: 1.4rem;
    line-height: 2.4rem;
    line-height: 3.6rem;
    font-weight: 500;
    color: #D4D4D4;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .footer__contact {
        margin-bottom: 20px; } }
    .footer__contact::before {
      content: "";
      position: absolute;
      top: 3px;
      left: 0;
      display: block;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center; }
    .footer__contact--address::before {
      width: 22px;
      height: 26px;
      background-image: url(../img/svg/icon--home.svg); }
    .footer__contact--phone::before {
      width: 28px;
      height: 28px;
      background-image: url(../img/svg/icon--phone.svg); }
    .footer__contact--email::before {
      top: 8px;
      width: 28px;
      height: 19px;
      background-image: url(../img/svg/icon--email.svg); }
  .footer__menu {
    display: none; }
    @media only screen and (min-width: 1023px) {
      .footer__menu {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -ms-flex: 1;
            flex: 1; } }
    .footer__menu .menu-item-has-children {
      display: block;
      margin-right: 20px; }
      @media only screen and (min-width: 1600px) {
        .footer__menu .menu-item-has-children {
          margin-right: 80px; } }
      .footer__menu .menu-item-has-children > a {
        display: block;
        margin-bottom: 40px;
        font-weight: 500; }
    .footer__menu .item-special a {
      display: inline-block;
      margin-top: 25px;
      font-weight: 500; }
    .footer__menu li {
      margin-bottom: 18px; }
    .footer__menu a {
      color: #D4D4D4;
      font-weight: 400;
      font-size: 1.4rem;
      line-height: 2.4rem; }
  .footer a {
    color: #777;
    transition: color 0.2s ease-in-out; }
    .footer a:hover {
      color: #fff; }
  .footer__bottom {
    margin-top: 30px;
    padding: 28px 0;
    border-top: 1px solid #777; }
    @media only screen and (min-width: 768px) {
      .footer__bottom {
        padding: 30px 0 36px; } }
  .footer__copyright {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    color: #777;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 400; }
    .footer__copyright-text {
      margin-right: 16px; }
      @media only screen and (min-width: 768px) {
        .footer__copyright-text {
          margin-right: 30px; } }
  .footer__linkedin {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 10px;
    position: relative; }
    .footer__linkedin::before {
      content: "";
      background: url(../img/svg/icon--linkedin.svg) no-repeat center;
      background-size: contain;
      width: 16px;
      height: 18px;
      transform: translate(1px, -1px); }

textarea {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 0 16px;
  outline: none;
  border: 1px solid #222;
  border-radius: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #222;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  position: relative;
  padding: 20px !important;
  min-height: 100px;
  max-height: 200px;
  height: 100px;
  resize: vertical; }
  @media only screen and (min-width: 768px) {
    textarea {
      font-size: 1.4rem;
      line-height: 2.4rem; } }
  @media only screen and (min-width: 768px) {
    textarea {
      min-height: 130px;
      max-height: 300px;
      height: 130px; } }

select {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 0 16px;
  outline: none;
  border: 1px solid #222;
  border-radius: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #222;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  position: relative;
  height: 55px;
  border: 2px solid #222;
  font-size: 1.2rem !important;
  letter-spacing: 1px;
  -webkit-appearance: none;
  background: url(../img/svg/icon--arrow-rotate.svg) no-repeat;
  background-position: calc(100% - 16px) 50%;
  background-size: 14px; }
  @media only screen and (min-width: 768px) {
    select {
      font-size: 1.4rem;
      line-height: 2.4rem; } }
  select option {
    font-size: 1.4rem; }

.input-container {
  margin: 20px 0;
  position: relative; }
  .input-container--lg {
    margin: 40px 0; }

label {
  display: block;
  position: absolute;
  top: 28px;
  transform: translateY(-50%);
  left: 16px;
  transform-origin: left top;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #fff;
  padding: 1px 5px;
  color: #222;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), top 500ms; }
  label.is-active {
    transform: translateY(-37px) scale(0.75); }
  label span {
    color: #c00e0e;
    margin-left: 6px; }

.input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 0 16px;
  outline: none;
  border: 1px solid #222;
  border-radius: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #222;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 55px;
  box-sizing: border-box;
  background: transparent;
  caret-color: #c00e0e;
  border: 2px solid #222;
  color: #222;
  transition: border 0.5s;
  padding: 0 16px;
  font-size: 1.2rem;
  letter-spacing: 1px; }
  @media only screen and (min-width: 768px) {
    .input {
      font-size: 1.4rem;
      line-height: 2.4rem; } }

.input:focus {
  outline: none; }

.input:focus + label {
  color: #c00e0e; }

input:focus + label,
input.is-valid + label {
  transform: translateY(-100%) scale(0.75); }

.wpcf7-form {
  margin-top: 40px; }
  @media only screen and (min-width: 768px) {
    .wpcf7-form {
      margin-top: 60px; } }
  .wpcf7-form.submitting .wpcf7-submit {
    color: #fff;
    border-color: #c00e0e;
    background-color: #c00e0e;
    pointer-events: none;
    opacity: 0.5; }

@media only screen and (min-width: 768px) {
  .form-submit {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: end;
        justify-content: flex-end; } }

.wpcf7-submit {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 55px;
  min-width: 91px;
  margin-top: 10px;
  padding: 2px 24px 1px;
  border: 2px solid transparent;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: transparent;
  color: #222;
  border-color: #222;
  cursor: pointer; }
  @media only screen and (min-width: 768px) {
    .wpcf7-submit {
      width: auto; } }
  .wpcf7-submit:hover {
    color: #fff;
    border-color: #c00e0e;
    background-color: #c00e0e; }

.wpcf7-spinner {
  display: none; }

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 10px 0;
  cursor: pointer; }

.wpcf7-radio label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: end;
      justify-content: flex-end;
  position: static;
  transform: none; }
  .wpcf7-radio label span {
    color: #222; }

.wpcf7-list-item-label {
  margin-left: 15px; }

input[type="radio"] {
  cursor: pointer;
  z-index: 1;
  width: 100%;
  height: 34px;
  top: -2px;
  left: 0;
  margin: 0;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #222;
  width: 15px;
  height: 15px;
  border: 2px solid #222;
  border-radius: 50%;
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  place-content: center; }
  input[type="radio"]::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #222; }
  input[type="radio"]:checked::before {
    transform: scale(1); }

input[type="checkbox"] {
  cursor: pointer;
  z-index: 1;
  width: 100%;
  height: 34px;
  top: -2px;
  left: 0;
  margin: 0;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #222;
  width: 15px;
  height: 15px;
  border: 2px solid #222;
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  place-content: center; }
  input[type="checkbox"]::before {
    content: "";
    width: 7px;
    height: 7px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #222; }
  input[type="checkbox"]:checked::before {
    transform: scale(1); }

.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #e35e5e;
  color: #fff;
  border-color: #e35e5e;
  border-bottom: 4px solid #dc3232;
  padding: 10px 16px; }

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #69c471;
  color: #fff;
  border-color: #69c471;
  border-bottom: 4px solid #46b450;
  padding: 10px 16px; }

.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0; }

.wpcf7-acceptance label {
  position: static;
  transform: translate(0); }

.wpcf7-acceptance .wpcf7-list-item-label {
  color: #222; }

.wpcf7-acceptance a {
  color: #c00e0e;
  border-bottom: 1px solid transparent;
  transition: border-color 0.1s ease-in-out; }
  .wpcf7-acceptance a:hover {
    border-bottom-color: #c00e0e; }

.gutenberg {
  min-height: 150px; }
  .gutenberg h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 3.8rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .gutenberg h1 {
        margin-bottom: 40px;
        font-size: 3.6rem;
        line-height: 4.2rem;
        font-family: "Montserrat", sans-serif; } }
    @media only screen and (min-width: 1365px) {
      .gutenberg h1 {
        margin-bottom: 50px;
        font-size: 4.8rem;
        line-height: 5.6rem;
        font-family: "Montserrat", sans-serif; } }
    @media only screen and (min-width: 1600px) {
      .gutenberg h1 {
        font-size: 6rem;
        line-height: 7.2rem;
        font-family: "Montserrat", sans-serif; } }
    .gutenberg h1 strong {
      font-weight: 700; }
  .gutenberg h2 {
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 3.8rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .gutenberg h2 {
        margin-bottom: 40px;
        font-size: 3.6rem;
        line-height: 4.2rem;
        font-family: "Montserrat", sans-serif; } }
    @media only screen and (min-width: 1365px) {
      .gutenberg h2 {
        margin-bottom: 50px;
        font-size: 4.8rem;
        line-height: 5.6rem;
        font-family: "Montserrat", sans-serif; } }
    .gutenberg h2 strong {
      font-weight: 700; }
  .gutenberg h3 {
    margin: 10px 0;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .gutenberg h3 {
        font-size: 2.4rem;
        line-height: 3rem; } }
    @media only screen and (min-width: 1365px) {
      .gutenberg h3 {
        margin: 20px 0;
        font-size: 3.6rem;
        line-height: 4.2rem;
        font-family: "Montserrat", sans-serif; } }
    .gutenberg h3 strong {
      font-weight: 700; }
  .gutenberg h4 {
    margin: 10px 0;
    font-size: 3rem;
    line-height: 3.8rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 1365px) {
      .gutenberg h4 {
        margin: 20px 0; } }
    .gutenberg h4 strong {
      font-weight: 700; }
  .gutenberg h5 {
    margin: 10px 0;
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 1365px) {
      .gutenberg h5 {
        margin: 20px 0; } }
    .gutenberg h5 strong {
      font-weight: 700; }
  .gutenberg h6 {
    margin: 10px 0;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 1365px) {
      .gutenberg h6 {
        margin: 20px 0; } }
    .gutenberg h6 strong {
      font-weight: 700; }
  .gutenberg .wp-block-button__link {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 55px;
    padding: 2px 24px 1px;
    background-color: transparent !important;
    border: 2px solid #222;
    border-radius: 0;
    color: #222 !important;
    text-decoration: none !important;
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: 1px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out; }
    .gutenberg .wp-block-button__link:hover {
      color: #fff !important;
      border-color: #c00e0e;
      background-color: #c00e0e !important; }
  .gutenberg .wp-block-buttons {
    margin-top: 30px; }
    @media only screen and (min-width: 768px) {
      .gutenberg .wp-block-buttons {
        margin-top: 40px; } }
    @media only screen and (min-width: 1365px) {
      .gutenberg .wp-block-buttons {
        margin-top: 60px; } }
    .gutenberg .wp-block-buttons .wp-block-button {
      margin-right: 10px; }
      @media only screen and (min-width: 768px) {
        .gutenberg .wp-block-buttons .wp-block-button {
          margin-right: 20px; } }
      .gutenberg .wp-block-buttons .wp-block-button:last-child {
        margin-right: 0; }
  .gutenberg .wp-block-image img {
    height: auto; }
  .gutenberg ul {
    margin: 10px 0;
    padding: 16px 0;
    list-style: none; }
    .gutenberg ul li {
      display: block;
      padding-left: 24px;
      margin-bottom: 6px;
      width: 100%;
      position: relative; }
      @media only screen and (min-width: 1365px) {
        .gutenberg ul li {
          margin-bottom: 10px; } }
      .gutenberg ul li::before {
        content: "";
        position: absolute;
        left: 1px;
        top: -2px;
        background: url(../img/svg/icon--arrow.svg) no-repeat center;
        background-size: 13px;
        width: 13px;
        height: 22px; }
        @media only screen and (min-width: 768px) {
          .gutenberg ul li::before {
            height: 28px; } }
  .gutenberg li > ul {
    margin-left: 0;
    padding: 5px 0; }
  .gutenberg ol {
    margin: 20px 0;
    counter-reset: counter-number; }
    .gutenberg ol li {
      margin-left: 12px;
      margin-bottom: 15px;
      padding-left: 12px;
      counter-increment: counter-number; }
      .gutenberg ol li::marker {
        content: counter(counter-number) ".";
        color: #c00e0e;
        font-weight: 500; }
  .gutenberg a {
    color: #c00e0e; }
    .gutenberg a:hover {
      text-decoration: underline; }
  .gutenberg .width-100 {
    width: 100%; }

.hamburger {
  display: block;
  width: 41px;
  height: 41px;
  overflow: hidden;
  margin-left: 85px;
  transform: rotate(0);
  transition: transform 0.2s ease-in-out;
  padding: 0;
  border: none;
  background-color: #fff;
  outline: none;
  cursor: pointer;
  z-index: 9;
  position: relative; }
  @media only screen and (min-width: 1023px) {
    .hamburger {
      display: none; } }
  .hamburger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 41px;
    height: 41px;
    border: 1px solid #c00e0e;
    border-radius: 50%; }
  .hamburger.is-active span:nth-child(1) {
    top: 6px;
    width: 0%;
    left: 50%; }
  .hamburger.is-active span:nth-child(2) {
    transform: rotate(45deg); }
  .hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg); }
  .hamburger.is-active span:nth-child(4) {
    top: 6px;
    width: 0%;
    left: 50%; }
  .hamburger__lines {
    position: absolute;
    top: 16px;
    left: 12px;
    width: 100%;
    height: 100%; }
  .hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 40%;
    border-radius: 3px;
    background-color: #c00e0e;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out; }
    .hamburger span:nth-child(1) {
      top: 0; }
    .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
      top: 4px; }
    .hamburger span:nth-child(4) {
      top: 8px; }

@media only screen and (max-width: 1023px) {
  .lang-switcher {
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0; } }

@media only screen and (min-width: 1023px) {
  .lang-switcher {
    position: relative;
    transform: translateY(1px);
    width: 65px;
    height: 30px;
    background-color: #fff;
    overflow: hidden;
    list-style: none;
    cursor: pointer;
    z-index: 99; } }

@media only screen and (min-width: 1023px) {
  .lang-switcher:hover {
    height: auto;
    overflow: visible; } }

@media only screen and (min-width: 1023px) {
  .lang-switcher::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 11px;
    border-top: 4px solid #777;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent; } }

.lang-switcher__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 40px;
  color: #777 !important;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease-in-out; }
  @media only screen and (min-width: 1023px) {
    .lang-switcher__item {
      display: block;
      margin-right: 0;
      padding: 10px 20px;
      color: #777 !important;
      font-size: 1.2rem;
      line-height: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      transition: color 0.2s ease-in-out; } }
  .lang-switcher__item:hover {
    color: #c00e0e !important; }
  .lang-switcher__item--current {
    color: #c00e0e !important; }

.site-wrapper {
  margin-top: 60px; }
  @media only screen and (min-width: 1023px) {
    .site-wrapper {
      margin-top: 100px; } }
  @media only screen and (min-width: 1600px) {
    .site-wrapper {
      margin-top: 124px; } }

.list-loader--table .list-loader__item:nth-child(even) > * {
  background-color: #F7F7F7; }

.list-loader__item {
  display: none; }

.list-loader__more {
  cursor: pointer; }

.is-loading {
  overflow: hidden; }
  .is-loading > * {
    visibility: hidden;
    height: 0; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #F7F7F7;
  z-index: 99;
  transition: height 0.1s linear; }
  @media only screen and (min-width: 768px) {
    .navbar {
      height: 100px; } }
  @media only screen and (min-width: 1600px) {
    .navbar {
      height: 124px; } }
  @media only screen and (min-width: 1600px) {
    .navbar--scrolled {
      height: 80px; } }
  .navbar__container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    height: 100%; }
    @media only screen and (min-width: 768px) {
      .navbar__container {
        padding-left: 60px;
        padding-right: 60px; } }
    @media only screen and (min-width: 1600px) {
      .navbar__container {
        max-width: 1760px; } }
  .navbar__logo {
    outline: none; }
    @media only screen and (min-width: 768px) {
      .navbar__logo {
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 100px;
        margin-right: 20px; } }
    @media only screen and (min-width: 1365px) {
      .navbar__logo {
        width: 136px; } }
  @media only screen and (min-width: 1023px) {
    .navbar__nav {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: end;
          justify-content: flex-end;
      height: 100%;
      padding: 0; } }
  @media only screen and (min-width: 1023px) {
    .navbar__menu {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      height: 100%;
      margin-right: 16px; } }
  @media only screen and (min-width: 1365px) {
    .navbar__menu {
      margin-right: 20px; } }
  @media only screen and (min-width: 1600px) {
    .navbar__menu {
      margin-right: 50px; } }
  .navbar__menu li {
    height: 100%;
    position: relative;
    z-index: 2; }
    @media only screen and (min-width: 1023px) {
      .navbar__menu li {
        margin: 0 12px; } }
    @media only screen and (min-width: 1279px) {
      .navbar__menu li {
        margin: 0 20px; } }
    @media only screen and (min-width: 1365px) {
      .navbar__menu li {
        margin: 0 30px; } }
    @media only screen and (min-width: 1600px) {
      .navbar__menu li {
        margin: 0 42px; } }
    .navbar__menu li.menu-item-has-children:hover > a {
      color: #c00e0e; }
    .navbar__menu li.menu-item-has-children:hover .sub-menu {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all; }
    .navbar__menu li.current-menu-item > a {
      color: #c00e0e; }
      .navbar__menu li.current-menu-item > a:hover {
        color: #c00e0e; }
    .navbar__menu li a {
      display: -ms-inline-flexbox;
      display: inline-flex;
      -ms-flex-align: center;
          align-items: center;
      height: 100%;
      color: #777;
      font-size: 1.4rem;
      line-height: 2.4rem;
      letter-spacing: 0.25px;
      font-weight: 500;
      transition: color 0.2s ease-in-out; }
      .navbar__menu li a:hover {
        color: #c00e0e; }
      .navbar__menu li a[href*="#"] {
        color: #777 !important; }
  @media only screen and (min-width: 1023px) {
    .navbar .sub-menu {
      position: absolute;
      left: -40px;
      top: 100%;
      max-height: 600px;
      background: #F7F7F7;
      padding: 10px 0;
      pointer-events: none;
      opacity: 0;
      overflow-y: auto;
      transform: translateY(4px);
      transform-origin: top;
      z-index: 9;
      transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; } }
  @media only screen and (min-width: 1023px) and (min-width: 1279px) {
    .navbar .sub-menu {
      left: -68px; } }
  .navbar .sub-menu li {
    margin: 0; }
    .navbar .sub-menu li.current-menu-item a {
      color: #c00e0e; }
      .navbar .sub-menu li.current-menu-item a:hover {
        color: #c00e0e; }
    .navbar .sub-menu li.menu-item-has-children:hover > a {
      color: #777; }
    .navbar .sub-menu li a {
      display: block;
      width: 100%;
      padding: 8px 20px;
      font-weight: 400;
      transition: background-color 0.2s ease-in-out; }
      @media only screen and (min-width: 1023px) {
        .navbar .sub-menu li a {
          padding: 16px 40px;
          white-space: pre; } }
      @media only screen and (min-width: 1279px) {
        .navbar .sub-menu li a {
          padding: 22px 85px 22px 68px; } }
      .navbar .sub-menu li a:hover {
        color: #777;
        background-color: #fff; }
  .navbar .sub-menu .sub-menu {
    position: static;
    opacity: 1; }
    .navbar .sub-menu .sub-menu li.current_page_item a {
      color: #c00e0e !important; }
    .navbar .sub-menu .sub-menu li a {
      color: #777 !important;
      padding: 8px 20px 8px 40px; }
      @media only screen and (min-width: 1023px) {
        .navbar .sub-menu .sub-menu li a {
          padding: 10px 40px 10px 60px; } }
      @media only screen and (min-width: 1279px) {
        .navbar .sub-menu .sub-menu li a {
          padding: 10px 85px 10px 95px; } }
  @media only screen and (min-width: 1023px) {
    .navbar__search {
      margin: 0 20px 0 0; } }
  @media only screen and (min-width: 1279px) {
    .navbar__search {
      margin: 0 40px 0 20px; } }
  @media only screen and (min-width: 1365px) {
    .navbar__search {
      margin: 0 55px 0 30px; } }
  .navbar__lang-switcher {
    position: relative;
    height: 35px; }

#wpadminbar {
  top: auto;
  bottom: 0;
  opacity: 0.4;
  position: fixed; }
  #wpadminbar:hover {
    opacity: 1; }

@media only screen and (max-width: 1023px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-bottom: 1px solid #F7F7F7;
    z-index: 99; }
    .navbar__container {
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: justify;
          justify-content: space-between;
      height: 100%; } }
    @media only screen and (max-width: 1023px) and (min-width: 768px) {
      .navbar__container {
        padding-left: 60px;
        padding-right: 60px; } }
    @media only screen and (max-width: 1023px) and (min-width: 1600px) {
      .navbar__container {
        max-width: 1760px; } }

@media only screen and (max-width: 1023px) {
    .navbar__logo {
      display: -ms-inline-flexbox;
      display: inline-flex;
      width: 76px;
      margin-right: 16px; }
    .navbar__nav {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      height: calc(100vh - 60px);
      padding: 20px;
      background-color: #F7F7F7;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      transform: translateX(100%);
      opacity: 0;
      transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; } }
    @media only screen and (max-width: 1023px) and (min-width: 768px) {
      .navbar__nav {
        padding: 20px 40px; } }

@media only screen and (max-width: 1023px) {
      .navbar__nav.is-active {
        transform: translateX(0);
        opacity: 1; }
    .navbar__menu li {
      height: 100%;
      position: relative;
      z-index: 2; }
      .navbar__menu li.menu-item-has-children:hover > a {
        color: #c00e0e; }
      .navbar__menu li.menu-item-has-children:hover .sub-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all; }
      .navbar__menu li.current-menu-item > a {
        color: #c00e0e; }
        .navbar__menu li.current-menu-item > a:hover {
          color: #c00e0e; }
      .navbar__menu li a {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
            align-items: center;
        width: 100%;
        padding: 12px 0;
        color: #777;
        font-size: 1.4rem;
        line-height: 2.4rem;
        font-weight: 500;
        letter-spacing: 0.25px;
        transition: color 0.2s ease-in-out; }
        .navbar__menu li a:hover {
          color: #c00e0e; }
    .navbar .sub-menu {
      display: none; }
      .navbar .sub-menu li {
        margin: 0;
        position: relative; }
        .navbar .sub-menu li a {
          display: block;
          width: 100%;
          padding: 10px 60px 10px 20px;
          transition: background-color 0.2s ease-in-out; }
          .navbar .sub-menu li a:hover {
            color: #777; }
          .navbar .sub-menu li a[href*="#"] {
            color: #777 !important; }
    .navbar__arrow {
      position: absolute;
      top: 0;
      right: 0;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      width: 40px;
      height: 40px; }
      .navbar__arrow::before {
        content: '';
        border-top: 6px solid #777;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent; }
    .navbar__lang-switcher {
      position: relative;
      height: 35px; } }

.pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 40px; }
  @media only screen and (min-width: 768px) {
    .pagination {
      margin-top: 70px; } }
  .pagination .page-numbers {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 6px;
    border: none;
    color: #222;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem;
    outline: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    position: relative; }
    .pagination .page-numbers:hover {
      color: #c00e0e; }
    .pagination .page-numbers.prev {
      display: block;
      width: 16px;
      height: 16px;
      margin: 5px 16px 0 8px;
      background: url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: cover;
      transform: rotate(-180deg); }
    .pagination .page-numbers.next {
      display: block;
      width: 16px;
      height: 16px;
      margin: 5px 8px 8px 20px;
      background: url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: cover; }
    .pagination .page-numbers.current {
      font-weight: 700;
      pointer-events: none; }
    .pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
      background-color: #fff; }

@media only screen and (min-width: 1023px) {
  .search-form {
    margin-left: 16px; } }

.search-form--open .search-form__form {
  display: -ms-flexbox;
  display: flex; }

.search-form__toggle {
  display: none; }
  @media only screen and (min-width: 1023px) {
    .search-form__toggle {
      display: block;
      width: 15px;
      height: 15px;
      transform: translateY(1px);
      background: url(../img/svg/icon--search.svg) no-repeat center;
      background-size: contain;
      cursor: pointer;
      transition: transform 0.3s ease-in-out; } }

.search-form__form {
  width: 100%;
  background-color: #F7F7F7;
  margin: 12px 0 28px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  @media only screen and (min-width: 1023px) {
    .search-form__form {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateY(100px);
      margin: 0;
      padding-top: 26px;
      padding-bottom: 26px;
      transition: transform 0.1s linear; } }
  @media only screen and (min-width: 1279px) {
    .search-form__form {
      transform: translateY(100px); } }
  @media only screen and (min-width: 1600px) {
    .search-form__form {
      transform: translateY(124px); } }
  .search-form__form--visible {
    display: -ms-flexbox;
    display: flex;
    position: static;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    padding: 8px 16px; }
  .search-form__form--full {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto;
    width: 100%;
    max-width: 809px;
    padding: 0;
    border: none; }
    @media only screen and (min-width: 768px) {
      .search-form__form--full {
        margin: 40px auto 50px; } }
    .search-form__form--full input {
      height: 55px;
      border-width: 2px;
      padding-right: 65px;
      margin-right: 0; }
      @media only screen and (min-width: 768px) {
        .search-form__form--full input {
          font-size: 1.6rem;
          line-height: 2.4rem; } }
    .search-form__form--full button {
      height: 55px; }
      @media only screen and (min-width: 768px) {
        .search-form__form--full button {
          min-width: 150px; } }

.search-form__modal {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start; }
  @media only screen and (min-width: 768px) {
    .search-form__modal {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-align: center;
          align-items: center; } }
  @media only screen and (min-width: 1023px) {
    .search-form__modal {
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      -ms-flex-pack: center;
          justify-content: center; } }
  @media only screen and (min-width: 1023px) and (min-width: 768px) {
    .search-form__modal {
      padding-left: 60px;
      padding-right: 60px; } }
  @media only screen and (min-width: 1023px) and (min-width: 1600px) {
    .search-form__modal {
      max-width: 1760px; } }

.search-form__label {
  margin-bottom: 7px;
  color: #777;
  font-size: 1.2rem;
  line-height: 1.8rem; }
  @media only screen and (min-width: 768px) {
    .search-form__label {
      margin-bottom: 0;
      margin-right: 37px;
      font-size: 1.4rem;
      line-height: 2.4rem; } }

.search-form__input-row {
  width: 100%;
  max-width: 809px;
  position: relative; }

.search-form__input-navbar {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 0 16px;
  outline: none;
  border: 1px solid #222;
  border-radius: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #222;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  position: relative;
  height: 45px;
  letter-spacing: 1px;
  outline: none;
  margin-right: 8px;
  padding-right: 50px;
  background-color: transparent; }
  @media only screen and (min-width: 768px) {
    .search-form__input-navbar {
      font-size: 1.4rem;
      line-height: 2.4rem; } }
  @media only screen and (min-width: 1023px) {
    .search-form__input-navbar {
      height: 55px;
      padding-right: 60px; } }
  .search-form__input-navbar:-ms-input-placeholder {
    color: rgba(34, 34, 34, 0.5);
    opacity: 1;
    letter-spacing: 1px;
    font-size: 1.2rem;
    line-height: 1.8rem; }
  .search-form__input-navbar::placeholder {
    color: rgba(34, 34, 34, 0.5);
    opacity: 1;
    letter-spacing: 1px;
    font-size: 1.2rem;
    line-height: 1.8rem; }
  .search-form__input-navbar:-ms-input-placeholder {
    color: rgba(34, 34, 34, 0.5);
    letter-spacing: 1px;
    font-size: 1.2rem;
    line-height: 1.8rem; }
  .search-form__input-navbar::-ms-input-placeholder {
    color: rgba(34, 34, 34, 0.5);
    letter-spacing: 1px;
    font-size: 1.2rem;
    line-height: 1.8rem; }

.search-form__input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 0 16px;
  outline: none;
  border: 1px solid #222;
  border-radius: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #222;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  position: relative;
  outline: none;
  margin-right: 8px;
  background-color: #fff; }
  @media only screen and (min-width: 768px) {
    .search-form__input {
      font-size: 1.4rem;
      line-height: 2.4rem; } }

.search-form__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border: none;
  outline: none;
  width: 15px;
  height: 100% !important;
  min-width: 60px !important;
  background: url(../img/svg/icon--search.svg) no-repeat center;
  background-size: 15px 15px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out; }

@media only screen and (min-width: 1600px) {
  .navbar--scrolled .search-form__form {
    transform: translateY(79px); } }

.search-result {
  margin-bottom: 30px; }
  @media only screen and (min-width: 1365px) {
    .search-result {
      margin-bottom: 50px; } }
  .search-result__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #D1D1D1;
    padding: 30px 10px;
    color: #777;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .search-result__item {
        padding: 40px 30px; } }
    .search-result__item:hover .search-result__title {
      color: #c00e0e; }
    .search-result__item:hover .search-result__arrow {
      background-color: #c00e0e; }
      .search-result__item:hover .search-result__arrow::before {
        filter: brightness(0) invert(1); }
  .search-result__subtitle {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #777;
    text-transform: inherit;
    font-weight: 400; }
  .search-result__title {
    padding-right: 50px;
    color: #222;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s ease-in-out; }
    @media only screen and (min-width: 768px) {
      .search-result__title {
        padding-right: 60px;
        font-size: 1.6rem;
        line-height: 2.4rem; } }
    .search-result__title--thin {
      font-weight: 400; }
  .search-result__arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 35px;
    height: 35px;
    transform: translateY(-50%);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border: 1px solid #c00e0e;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out; }
    @media only screen and (min-width: 1023px) {
      .search-result__arrow {
        width: 49px;
        height: 49px; } }
    .search-result__arrow::before {
      content: "";
      background: transparent url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: 12px;
      width: 100%;
      height: 100%;
      transition: filter 0.2s ease-in-out; }
      @media only screen and (min-width: 1023px) {
        .search-result__arrow::before {
          background-size: 15px; } }
    .search-result__arrow--download::before {
      transform: rotate(90deg); }

.section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .section {
      padding-top: 60px;
      padding-bottom: 60px; } }
  @media only screen and (min-width: 1365px) {
    .section {
      padding-top: 110px;
      padding-bottom: 110px; } }
  .section--shadow {
    background-color: #F7F7F7; }
  .section--primary {
    background-color: #c00e0e;
    color: #fff; }
  @media only screen and (min-width: 1365px) {
    .section--small {
      padding-top: 60px;
      padding-bottom: 60px; } }
  @media only screen and (min-width: 768px) {
    .section--small-bottom {
      padding-bottom: 40px; } }
  @media only screen and (min-width: 1365px) {
    .section--small-bottom {
      padding-bottom: 70px; } }
  .section--bg {
    min-height: 405px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: end;
        justify-content: flex-end;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover; }
  .section__title {
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
    position: relative;
    z-index: 2;
    font-size: 3.6rem;
    line-height: 4.2rem;
    font-family: "Montserrat", sans-serif; }
    @media only screen and (min-width: 768px) {
      .section__title {
        margin-bottom: 60px; } }
    @media only screen and (min-width: 1365px) {
      .section__title {
        font-size: 4.8rem;
        line-height: 5.6rem;
        font-family: "Montserrat", sans-serif; } }
    .section__title--primary {
      color: #c00e0e; }
    .section__title--white {
      color: #fff; }
    .section__title--center {
      text-align: center; }
    .section__title span {
      font-weight: 400; }
  .section__subtitle {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    color: #222;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.5px;
    position: relative;
    font-size: 1.4rem;
    line-height: 2.4rem; }
    @media only screen and (min-width: 1365px) {
      .section__subtitle {
        font-size: 2.2rem;
        line-height: 3.2rem; } }
    .section__subtitle--primary {
      color: #c00e0e; }
    .section__subtitle--white {
      color: #fff; }
    .section__subtitle--center {
      text-align: center; }
  .section__desc {
    margin: 20px 0;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .section__desc {
        margin: 40px 0; } }
  .section__head {
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .section__head {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: justify;
            justify-content: space-between;
        margin-bottom: 30px; } }
    .section__head--title {
      margin-bottom: 20px; }
      @media only screen and (min-width: 768px) {
        .section__head--title {
          margin-bottom: 0;
          margin-right: 16px; } }
  .section__siblings {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    background-color: #F7F7F7; }
    @media only screen and (min-width: 1279px) {
      .section__siblings {
        -ms-flex-direction: row;
            flex-direction: row; } }
    .section__siblings > div {
      padding: 30px 20px; }
      @media only screen and (min-width: 768px) {
        .section__siblings > div {
          padding: 40px; } }
      @media only screen and (min-width: 1279px) {
        .section__siblings > div {
          width: 33.33%;
          padding: 60px 60px 20px 60px; } }
      .section__siblings > div:nth-child(2) {
        padding: 0 20px; }
        @media only screen and (min-width: 768px) {
          .section__siblings > div:nth-child(2) {
            padding: 0 40px; } }
        @media only screen and (min-width: 1279px) {
          .section__siblings > div:nth-child(2) {
            padding: 0; } }
    .section__siblings img {
      width: 100%;
      height: 100%;
      max-height: 300px;
      object-fit: cover; }
      @media only screen and (min-width: 768px) {
        .section__siblings img {
          width: auto;
          max-height: 550px; } }
      @media only screen and (min-width: 1279px) {
        .section__siblings img {
          width: 100%;
          max-height: inherit; } }
    .section__siblings p {
      margin-top: 30px; }
      @media only screen and (min-width: 1279px) {
        .section__siblings p {
          margin-top: 50px; } }

.tabs__item {
  cursor: pointer; }

.tabs__content {
  display: none; }
  .tabs__content--active {
    display: block; }

.tabs__subitem {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 55px;
  margin-right: 1px;
  margin-bottom: 3px;
  padding: 2px 20px 1px;
  background-color: #F7F7F7;
  border: 2px solid transparent;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.25px;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer; }
  @media only screen and (min-width: 479px) {
    .tabs__subitem {
      width: auto; } }
  @media only screen and (min-width: 768px) {
    .tabs__subitem {
      height: 70px;
      min-width: 86px;
      padding: 2px 24px 1px;
      font-size: 1.8rem;
      line-height: 2.6rem; } }
  .tabs__subitem--active {
    background-color: #D1D1D1; }

.tabs__subcontent {
  display: none; }
  .tabs__subcontent--active {
    display: block; }

.h__1 {
  font-size: 3.6rem;
  line-height: 4.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.25px; }
  @media only screen and (min-width: 768px) {
    .h__1 {
      font-size: 4.8rem;
      line-height: 5.6rem;
      font-family: "Montserrat", sans-serif; } }
  @media only screen and (min-width: 1365px) {
    .h__1 {
      font-size: 6rem;
      line-height: 7.2rem;
      font-family: "Montserrat", sans-serif; } }
  .h__1--primary {
    color: #c00e0e; }
  .h__1--white {
    color: #fff; }
  .h__1--thin {
    font-weight: 400; }
  .h__1--bold {
    font-weight: 700; }
  .h__1 span {
    font-weight: 400; }

.h__2 {
  font-size: 3.6rem;
  line-height: 4.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.25px; }
  @media only screen and (min-width: 768px) {
    .h__2 {
      font-size: 4.8rem;
      line-height: 5.6rem;
      font-family: "Montserrat", sans-serif; } }
  .h__2--primary {
    color: #c00e0e; }
  .h__2--white {
    color: #fff; }
  .h__2--thin {
    font-weight: 400; }
  .h__2--bold {
    font-weight: 700; }
  .h__2 span {
    font-weight: 400; }

.h__3 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  color: #222; }
  @media only screen and (min-width: 479px) {
    .h__3 {
      font-size: 3rem;
      line-height: 3.8rem; } }
  @media only screen and (min-width: 1279px) {
    .h__3 {
      font-size: 3.6rem;
      line-height: 4.2rem;
      font-family: "Montserrat", sans-serif; } }
  .h__3--primary {
    color: #c00e0e; }
  .h__3--white {
    color: #fff; }
  .h__3 span {
    font-weight: 400; }

.h__4 {
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.25px;
  text-transform: inherit; }
  .h__4--primary {
    color: #c00e0e; }
  .h__4--white {
    color: #fff; }
  .h__4--thin {
    font-weight: 400; }
  .h__4 span {
    font-weight: 400; }

.h__5 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  color: #222;
  text-transform: inherit; }
  .h__5--primary {
    color: #c00e0e; }
  .h__5--white {
    color: #fff; }
  .h__5--thin {
    font-weight: 400; }
  .h__5 span {
    font-weight: 400; }

.h__6 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.25px;
  text-transform: inherit; }
  .h__6--primary {
    color: #c00e0e; }
  .h__6--white {
    color: #fff; }
  .h__6 span {
    font-weight: 400; }

.font-huge {
  font-size: 1.8rem;
  line-height: 2.6rem; }
  @media only screen and (min-width: 768px) {
    .font-huge {
      font-size: 2.2rem;
      line-height: 3.2rem; } }
  @media only screen and (min-width: 1279px) {
    .font-huge {
      font-size: 2.4rem;
      line-height: 4.2rem; } }
  .font-huge p {
    margin: 15px 0; }

.font-dark {
  color: #222; }
  .font-dark a {
    color: #222; }

.font-thin {
  font-weight: 400; }
  .font-thin a {
    font-weight: 400; }

.text-uppercase {
  text-transform: uppercase; }

.text-lowercase {
  text-transform: lowercase; }

.wysiwyg .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-image: linear-gradient(to right, white, white), linear-gradient(to right, white, white), linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0)), linear-gradient(to left, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0));
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
  background-attachment: local, local, scroll, scroll; }
  @media only screen and (min-width: 1279px) {
    .wysiwyg .table-responsive {
      background: none;
      overflow-x: hidden; } }

.wysiwyg table {
  margin: 0;
  width: 100%; }
  .wysiwyg table th {
    min-width: 80px;
    min-height: 60px;
    background-color: #D4D4D4;
    padding: 5px 10px;
    vertical-align: middle;
    font-weight: 600;
    color: #222;
    text-align: left;
    border-right: 1px solid #fff;
    font-size: 1.2rem;
    line-height: 1.8rem; }
    @media only screen and (min-width: 768px) {
      .wysiwyg table th {
        min-height: 71px;
        padding: 5px 20px; } }
    @media only screen and (min-width: 1365px) {
      .wysiwyg table th {
        font-size: 1.4rem;
        line-height: 2.4rem;
        padding: 5px 30px; } }
    .wysiwyg table th:last-child {
      border-right: none; }
  .wysiwyg table tr:nth-child(odd) {
    background: #F7F7F7; }
  .wysiwyg table td {
    min-width: 80px;
    min-height: 60px;
    padding: 5px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #D4D4D4;
    color: #222;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8rem; }
    @media only screen and (min-width: 768px) {
      .wysiwyg table td {
        height: 71px;
        padding: 1px 20px;
        font-size: 1.4rem;
        line-height: 2.4rem; } }
    @media only screen and (min-width: 1600px) {
      .wysiwyg table td {
        font-size: 1.6rem;
        line-height: 2.4rem;
        padding: 0 30px; } }
    .wysiwyg table td:first-child {
      text-transform: uppercase; }

.wysiwyg .wp-block-image {
  margin-top: 20px;
  margin-bottom: 20px; }
  .wysiwyg .wp-block-image img {
    height: auto; }

.wysiwyg hr {
  color: #222;
  opacity: 0.5; }

.wysiwyg sup,
.wysiwyg sub {
  font-size: 75%;
  display: inline-block;
  padding: 0 2px;
  transform: translateY(1px); }

.wysiwyg iframe {
  margin-top: 40px;
  margin-bottom: 40px; }

.wysiwyg figcaption {
  font-style: italic; }

.wysiwyg .wp-block-pullquote cite {
  display: block;
  margin-top: 15px; }

.wysiwyg .wp-block-gallery li {
  padding: 0 !important; }
  .wysiwyg .wp-block-gallery li::before {
    content: none !important; }

.wysiwyg .wp-block-quote {
  font-size: 1.6rem;
  line-height: 2.4rem;
  border-left: 5px solid #c00e0e;
  padding-left: 30px;
  margin: 40px 0; }
  @media only screen and (min-width: 768px) {
    .wysiwyg .wp-block-quote {
      margin: 60px 0;
      padding-left: 60px;
      font-size: 1.8rem;
      line-height: 2.6rem;
      line-height: 3rem;
      border-left-width: 6px; } }
  .wysiwyg .wp-block-quote cite {
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: #777; }

.wysiwyg .wp-block-media-text {
  margin-top: 30px;
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .wysiwyg .wp-block-media-text {
      margin-top: 50px;
      margin-bottom: 50px; } }

/**
* Import blocks
*/
.advantages {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media only screen and (min-width: 1023px) {
    .advantages {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: start;
          align-items: flex-start; } }
  @media only screen and (min-width: 1023px) {
    .advantages__left {
      width: 40%; } }
  .advantages__right {
    margin-top: 10px; }
    @media only screen and (min-width: 1023px) {
      .advantages__right {
        width: 60%;
        margin-top: 0;
        padding-left: 40px; } }
    @media only screen and (min-width: 1365px) {
      .advantages__right {
        padding-left: 80px; } }
  .advantages__desc {
    margin: 20px 0;
    letter-spacing: 0.25px;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .advantages__desc {
        margin: 40px 0 45px;
        font-size: 1.8rem;
        line-height: 2.6rem; } }
    @media only screen and (min-width: 1365px) {
      .advantages__desc {
        font-size: 2.4rem;
        line-height: 4.2rem; } }
  .advantages__items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    @media only screen and (min-width: 1023px) {
      .advantages__items {
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .advantages__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 700; }
    @media only screen and (min-width: 1279px) {
      .advantages__item {
        width: 50%;
        margin-bottom: 50px;
        padding: 0 10px;
        font-size: 1.6rem;
        line-height: 2.4rem; } }
    .advantages__item img {
      width: 57px;
      height: 57px;
      margin-right: 19px; }
      @media only screen and (min-width: 1365px) {
        .advantages__item img {
          width: 95px;
          height: 95px;
          margin-right: 32px; } }

.awards__bg {
  background-color: #F7F7F7;
  padding: 40px 20px 0; }
  @media only screen and (min-width: 768px) {
    .awards__bg {
      padding: 70px 20px 0; } }

.awards__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start; }

.awards__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 50%;
  height: auto;
  background-color: transparent;
  margin-bottom: 40px;
  margin-right: 0;
  padding: 10px;
  border: none;
  letter-spacing: 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .awards__item {
      width: 33.33%;
      margin-bottom: 50px; } }
  @media only screen and (min-width: 1023px) {
    .awards__item {
      width: 25%;
      margin-bottom: 70px; } }
  @media only screen and (min-width: 1365px) {
    .awards__item {
      width: 20%; } }

.awards__image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 90px; }
  @media only screen and (min-width: 768px) {
    .awards__image {
      height: 115px; } }
  .awards__image img {
    max-width: 183px;
    max-height: 115px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto; }

.awards__title {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 700; }
  @media only screen and (min-width: 768px) {
    .awards__title {
      font-size: 1.4rem;
      line-height: 2.4rem; } }
  @media only screen and (min-width: 1023px) {
    .awards__title {
      font-size: 1.6rem;
      line-height: 2.4rem; } }

.brands {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  grid-gap: 1px;
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .brands {
      -ms-grid-columns: (auto)[4];
          grid-template-columns: repeat(4, auto);
      margin-bottom: 40px; } }
  @media only screen and (min-width: 1279px) {
    .brands {
      -ms-grid-columns: (auto)[5];
          grid-template-columns: repeat(5, auto);
      margin-bottom: 50px; } }
  .brands__item {
    display: block;
    width: 100%;
    height: 108px;
    position: relative; }
    @media only screen and (min-width: 479px) {
      .brands__item {
        height: 180px; } }
    @media only screen and (min-width: 768px) {
      .brands__item {
        height: 180px; } }
    @media only screen and (min-width: 1279px) {
      .brands__item {
        height: 223px; } }
    .brands__item:hover::before {
      opacity: 0.2; }
    .brands__item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0.38;
      z-index: 1;
      transition: opacity 0.2s ease-in-out; }
  .brands__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  .brands__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 60%; }

.diagram__columns {
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media only screen and (min-width: 1023px) {
    .diagram__columns {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-pack: justify;
          justify-content: space-between;
      margin-top: 70px; } }

.diagram__col {
  width: 100%; }
  @media only screen and (min-width: 1023px) {
    .diagram__col {
      width: 50%; } }
  @media only screen and (min-width: 1023px) {
    .diagram__col:last-child {
      padding-left: 2em; } }

.diagram__image {
  display: block;
  margin: 0 auto 40px;
  text-align: center; }

.diagram__graphic {
  margin: 0 auto 40px;
  text-align: center; }

.diagram__table {
  max-width: 691px;
  margin: 30px auto 20px; }
  @media only screen and (min-width: 1023px) {
    .diagram__table {
      margin: 0; } }
  .diagram__table a {
    color: #222; }

.diagram__strong {
  font-weight: 600; }

.diagram__bottom {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.8rem; }
  @media only screen and (min-width: 768px) {
    .diagram__bottom {
      margin-top: 50px; } }

.documents {
  margin: 0 0 16px; }
  .documents--table .tabs__subcontent--active:nth-child(2n)[style*="display:block"] .documents__item {
    background-color: #F7F7F7; }
  .documents--table .documents__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px 20px; }
    @media only screen and (min-width: 768px) {
      .documents--table .documents__item {
        padding: 20px 40px 20px 20px; } }
    .documents--table .documents__item:nth-child(2n) {
      background-color: #F7F7F7; }
    .documents--table .documents__item:hover .documents__title {
      color: inherit; }
  .documents--table .documents__content {
    margin-right: 0; }
  .documents--table .documents__title {
    margin-right: 10px;
    text-transform: inherit; }
  .documents__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 20px 0 20px 20px;
    border-bottom: 1px solid #D1D1D1;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .documents__item {
        padding: 34px 0 40px 30px; } }
    .documents__item:hover .documents__title {
      color: #c00e0e; }
    .documents__item:hover .documents__arrow {
      background-color: #c00e0e; }
      .documents__item:hover .documents__arrow::before {
        filter: brightness(0) invert(1); }
    @media only screen and (min-width: 768px) {
      .documents__item--small {
        padding: 26px 0 30px; } }
    @media only screen and (min-width: 768px) {
      .documents__item--medium {
        padding-top: 24px;
        padding-bottom: 28px; } }
    .documents__item--table {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      @media only screen and (min-width: 768px) {
        .documents__item--table {
          padding: 26px 40px 30px 20px; } }
      .documents__item--table .documents__content {
        margin-right: 0; }
      .documents__item--table .documents__title {
        text-transform: inherit; }
    .documents__item-align-items-end {
      -ms-flex-align: end;
          align-items: flex-end; }
  .documents__content {
    margin-right: 16px; }
  .documents__date {
    display: inline-block;
    margin-right: 16px;
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.25px;
    font-weight: 400;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .documents__date {
        font-size: 1.4rem;
        line-height: 2.4rem; } }
  .documents__subtitle {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .documents__subtitle {
        font-size: 1.4rem;
        line-height: 2.4rem; } }
  .documents__title {
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #222;
    font-weight: 700;
    transition: color 0.2s ease-in-out; }
    @media only screen and (min-width: 768px) {
      .documents__title {
        font-size: 1.4rem;
        line-height: 2.4rem; } }
    .documents__title--thin {
      font-weight: 400; }
  .documents__value {
    font-weight: 400;
    text-align: right; }
  .documents__arrow {
    width: 35px;
    min-width: 35px;
    height: 35px;
    transform: translateY(12px);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border: 1px solid #c00e0e;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .documents__arrow {
        width: 49px;
        min-width: 49px;
        height: 49px; } }
    .documents__arrow::before {
      content: "";
      background: transparent url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: 12px;
      transform: rotate(90deg);
      width: 100%;
      height: 100%;
      transition: filter 0.2s ease-in-out; }
      @media only screen and (min-width: 768px) {
        .documents__arrow::before {
          background-size: 15px;
          transform: rotate(90deg); } }
    .documents__arrow--only-title {
      transform: translateY(3px); }
  .documents__link .documents__title {
    border-bottom: 1px solid #c00e0e; }
  .documents__link .documents__arrow::before {
    background: transparent url(../img/svg/icon--link.svg) no-repeat center;
    background-size: 16px; }
    @media only screen and (min-width: 768px) {
      .documents__link .documents__arrow::before {
        background-size: 20px; } }

.gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (min-width: 768px) {
    .gallery {
      -ms-flex-align: center;
          align-items: center;
      margin-bottom: 50px; } }
  @media only screen and (min-width: 768px) {
    .gallery--two .gallery__item:nth-child(1) {
      width: 50%; } }
  @media only screen and (min-width: 768px) {
    .gallery--two .gallery__item:nth-child(2) {
      width: 50%; } }
  .gallery__item {
    height: 158px; }
    @media only screen and (min-width: 479px) {
      .gallery__item {
        height: 230px; } }
    @media only screen and (min-width: 768px) {
      .gallery__item {
        height: 250px; } }
    @media only screen and (min-width: 1023px) {
      .gallery__item {
        height: 300px; } }
    @media only screen and (min-width: 1365px) {
      .gallery__item {
        height: 405px; } }
    .gallery__item:nth-child(1) {
      width: 50%;
      -ms-flex-order: 2;
          order: 2; }
      @media only screen and (min-width: 768px) {
        .gallery__item:nth-child(1) {
          width: 25%;
          -ms-flex-order: 1;
              order: 1; } }
    .gallery__item:nth-child(2) {
      width: 50%;
      -ms-flex-order: 3;
          order: 3; }
      @media only screen and (min-width: 768px) {
        .gallery__item:nth-child(2) {
          width: 25%;
          -ms-flex-order: 2;
              order: 2; } }
    .gallery__item:nth-child(3) {
      width: 100%;
      -ms-flex-order: 1;
          order: 1; }
      @media only screen and (min-width: 768px) {
        .gallery__item:nth-child(3) {
          width: 50%;
          -ms-flex-order: 3;
              order: 3; } }
    .gallery__item img {
      width: 100%;
      height: 100%;
      object-position: top;
      object-fit: cover; }

.wp-block-group {
  position: relative;
  padding: 20px 0; }
  @media only screen and (min-width: 768px) {
    .wp-block-group {
      padding: 40px 0; } }
  .wp-block-group.is-style-container .wp-block-group__inner-container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .wp-block-group.is-style-container .wp-block-group__inner-container {
        padding-left: 60px;
        padding-right: 60px; } }
    @media only screen and (min-width: 1600px) {
      .wp-block-group.is-style-container .wp-block-group__inner-container {
        max-width: 1760px; } }
  .wp-block-group.is-style-container-no-padding-bottom {
    padding-bottom: 0; }
    .wp-block-group.is-style-container-no-padding-bottom .wp-block-group__inner-container {
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
      width: 100%; }
      @media only screen and (min-width: 768px) {
        .wp-block-group.is-style-container-no-padding-bottom .wp-block-group__inner-container {
          padding-left: 60px;
          padding-right: 60px; } }
      @media only screen and (min-width: 1600px) {
        .wp-block-group.is-style-container-no-padding-bottom .wp-block-group__inner-container {
          max-width: 1760px; } }
  .wp-block-group.is-style-container-shadow {
    background-color: #F7F7F7; }
    .wp-block-group.is-style-container-shadow .wp-block-group__inner-container {
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      margin-top: 30px;
      margin-bottom: 0;
      position: relative; }
      @media only screen and (min-width: 768px) {
        .wp-block-group.is-style-container-shadow .wp-block-group__inner-container {
          padding-left: 60px;
          padding-right: 60px; } }
      @media only screen and (min-width: 1600px) {
        .wp-block-group.is-style-container-shadow .wp-block-group__inner-container {
          max-width: 1760px; } }
      @media only screen and (min-width: 768px) {
        .wp-block-group.is-style-container-shadow .wp-block-group__inner-container {
          margin-top: 40px;
          margin-bottom: 0; } }
      @media only screen and (min-width: 1365px) {
        .wp-block-group.is-style-container-shadow .wp-block-group__inner-container {
          margin-top: 60px;
          margin-bottom: 0; } }
  .wp-block-group .wp-block-group {
    padding: 0; }
  @media only screen and (min-width: 768px) {
    .wp-block-group .wp-block-columns .wp-block-column:first-child .wp-block-image {
      padding-right: 10px; } }
  @media only screen and (min-width: 1365px) {
    .wp-block-group .wp-block-columns .wp-block-column:first-child .wp-block-image {
      padding-right: 60px; } }
  .wp-block-group .wp-block-columns .wp-block-column:first-child .wp-block-image img {
    object-fit: cover;
    width: auto;
    height: auto; }
  @media only screen and (max-width: 767px) {
    .wp-block-group .wp-block-columns .wp-block-column:last-child .wp-block-image {
      margin-top: 20px; } }
  @media only screen and (max-width: 767px) {
    .wp-block-group .is-style-columns-mobile-reverse {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
      margin-top: -20px; } }
  @media only screen and (max-width: 767px) {
    .wp-block-group .is-style-columns-mobile-reverse .wp-block-column {
      margin-left: 0; } }
  @media only screen and (min-width: 1023px) {
    .wp-block-group .is-style-columns-mobile-reverse .wp-block-column {
      width: 50%;
      -ms-flex: auto;
          flex: auto; } }
  @media only screen and (min-width: 1365px) {
    .wp-block-group .is-style-columns-mobile-reverse .wp-block-column:first-child {
      padding-right: 100px; } }
  @media only screen and (min-width: 1600px) {
    .wp-block-group .is-style-columns-mobile-reverse .wp-block-column:first-child {
      padding-right: 115px; } }
  .wp-block-group .is-style-columns-mobile-reverse .wp-block-image {
    width: calc(100% + 40px);
    margin-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px; }
    @media only screen and (min-width: 768px) {
      .wp-block-group .is-style-columns-mobile-reverse .wp-block-image {
        width: calc(100% + 60px);
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0; } }
    @media only screen and (min-width: 1023px) {
      .wp-block-group .is-style-columns-mobile-reverse .wp-block-image {
        margin-top: calc(-40px - 56px); } }
    @media only screen and (min-width: 1600px) {
      .wp-block-group .is-style-columns-mobile-reverse .wp-block-image {
        width: calc(100% + 9vw); } }
    .wp-block-group .is-style-columns-mobile-reverse .wp-block-image img {
      object-fit: cover;
      width: 100%;
      height: 100%; }
  @media only screen and (min-width: 1600px) {
    .wp-block-group .is-style-columns-mobile-reverse h2 {
      font-size: 6rem;
      line-height: 7.2rem;
      font-family: "Montserrat", sans-serif; } }
  .wp-block-group .is-style-columns-40-60 .wp-block-column {
    margin-bottom: 0; }
    .wp-block-group .is-style-columns-40-60 .wp-block-column:first-child {
      -ms-flex-preferred-size: 100% !important;
          flex-basis: 100% !important;
      margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        .wp-block-group .is-style-columns-40-60 .wp-block-column:first-child {
          -ms-flex-preferred-size: 45% !important;
              flex-basis: 45% !important;
          margin-bottom: 0; } }
      @media only screen and (min-width: 1279px) {
        .wp-block-group .is-style-columns-40-60 .wp-block-column:first-child {
          -ms-flex-preferred-size: 40% !important;
              flex-basis: 40% !important;
          padding-right: 50px; } }
    .wp-block-group .is-style-columns-40-60 .wp-block-column:last-child {
      -ms-flex-preferred-size: 100% !important;
          flex-basis: 100% !important; }
      @media only screen and (min-width: 768px) {
        .wp-block-group .is-style-columns-40-60 .wp-block-column:last-child {
          -ms-flex-preferred-size: 55% !important;
              flex-basis: 55% !important; } }
      @media only screen and (min-width: 1279px) {
        .wp-block-group .is-style-columns-40-60 .wp-block-column:last-child {
          -ms-flex-preferred-size: 60% !important;
              flex-basis: 60% !important; } }
  .wp-block-group .is-style-columns-contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 0; }
    @media only screen and (min-width: 1279px) {
      .wp-block-group .is-style-columns-contact {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        font-size: 1.6rem;
        line-height: 2.4rem; } }
    .wp-block-group .is-style-columns-contact > .wp-block-column {
      margin-bottom: 0; }
      .wp-block-group .is-style-columns-contact > .wp-block-column:first-child {
        -ms-flex-preferred-size: 100% !important;
            flex-basis: 100% !important;
        margin-bottom: 30px; }
        @media only screen and (min-width: 768px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column:first-child {
            -ms-flex-preferred-size: 100% !important;
                flex-basis: 100% !important;
            margin-bottom: 0; } }
        @media only screen and (min-width: 1279px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column:first-child {
            -ms-flex-preferred-size: 30% !important;
                flex-basis: 30% !important;
            padding-right: 50px;
            font-size: 2.4rem;
            line-height: 4.2rem; } }
        @media only screen and (min-width: 1365px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column:first-child {
            -ms-flex-preferred-size: 40% !important;
                flex-basis: 40% !important; } }
      .wp-block-group .is-style-columns-contact > .wp-block-column:last-child {
        -ms-flex-preferred-size: 100% !important;
            flex-basis: 100% !important;
        margin-left: 0;
        padding: 30px 20px;
        line-height: 2.4rem;
        position: relative; }
        @media only screen and (min-width: 768px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column:last-child {
            margin-top: 40px;
            padding: 60px 0 60px 50px;
            -ms-flex-preferred-size: 100% !important;
                flex-basis: 100% !important;
            line-height: 3.8rem; } }
        @media only screen and (min-width: 1279px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column:last-child {
            -ms-flex-preferred-size: 70% !important;
                flex-basis: 70% !important;
            margin-top: 0;
            margin-left: 2em; } }
        @media only screen and (min-width: 1365px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column:last-child {
            -ms-flex-preferred-size: 60% !important;
                flex-basis: 60% !important;
            padding: 110px 0 100px 100px; } }
        .wp-block-group .is-style-columns-contact > .wp-block-column:last-child::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: #F7F7F7; }
          @media only screen and (min-width: 1279px) {
            .wp-block-group .is-style-columns-contact > .wp-block-column:last-child::before {
              width: 100vw; } }
        .wp-block-group .is-style-columns-contact > .wp-block-column:last-child > div {
          position: relative;
          z-index: 2; }
      .wp-block-group .is-style-columns-contact > .wp-block-column .wp-block-column .wp-block-columns {
        -ms-flex-direction: column;
            flex-direction: column; }
        @media only screen and (min-width: 1279px) {
          .wp-block-group .is-style-columns-contact > .wp-block-column .wp-block-column .wp-block-columns {
            -ms-flex-direction: row;
                flex-direction: row; } }
        .wp-block-group .is-style-columns-contact > .wp-block-column .wp-block-column .wp-block-columns .wp-block-column {
          -ms-flex-preferred-size: 100% !important;
              flex-basis: 100% !important; }
          @media only screen and (min-width: 1279px) {
            .wp-block-group .is-style-columns-contact > .wp-block-column .wp-block-column .wp-block-columns .wp-block-column {
              -ms-flex-preferred-size: 50% !important;
                  flex-basis: 50% !important; } }
      .wp-block-group .is-style-columns-contact > .wp-block-column a {
        color: #222; }
  .wp-block-group .is-style-btn-primary .wp-block-button__link {
    background-color: #c00e0e !important;
    color: #fff !important;
    border-color: #c00e0e; }
    .wp-block-group .is-style-btn-primary .wp-block-button__link:hover {
      color: #c00e0e !important;
      background-color: transparent !important; }
  .wp-block-group .is-style-btn-primary-outline .wp-block-button__link {
    background-color: transparent;
    color: #c00e0e !important;
    border-color: #c00e0e; }
    .wp-block-group .is-style-btn-primary-outline .wp-block-button__link:hover {
      color: #fff !important;
      background-color: #c00e0e; }
  @media only screen and (max-width: 767px) {
    .wp-block-group .is-content-justification-right {
      -ms-flex-pack: start;
          justify-content: flex-start; } }
  @media only screen and (min-width: 1365px) {
    .wp-block-group .is-style-columns-padding-left {
      padding-left: 40px; } }
  @media only screen and (min-width: 1600px) {
    .wp-block-group .is-style-columns-padding-left {
      padding-left: 80px; } }
  @media only screen and (min-width: 1365px) {
    .wp-block-group .is-style-columns-padding-right {
      padding-right: 40px; } }
  @media only screen and (min-width: 1600px) {
    .wp-block-group .is-style-columns-padding-right {
      padding-right: 80px; } }
  .wp-block-group .is-style-heading-no-margin {
    margin: 0 0 20px 0; }
    @media only screen and (min-width: 768px) {
      .wp-block-group .is-style-heading-no-margin {
        margin: 0; } }

.wp-block-group__inner-container > * {
  position: relative; }

.history {
  background-color: #F7F7F7; }
  @media only screen and (min-width: 1023px) {
    .history__wrapper {
      display: -ms-flexbox;
      display: flex; } }
  .history__content {
    margin-bottom: 30px;
    padding: 30px 20px; }
    @media only screen and (min-width: 1023px) {
      .history__content {
        width: 45%;
        margin-bottom: 0;
        padding: 40px; } }
    @media only screen and (min-width: 1365px) {
      .history__content {
        padding: 60px; } }
  .history__image {
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (min-width: 1023px) {
      .history__image {
        width: 55%; } }
    .history__image img {
      height: 100%;
      max-height: 400px;
      width: 100%;
      object-fit: cover;
      object-position: center; }
  .history__title {
    display: block;
    margin-bottom: 10px;
    color: #c00e0e;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2.4rem; }
  .history__desc {
    font-size: 1.4rem;
    line-height: 2.4rem; }

.jobs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px 0;
  margin: 40px 0; }
  @media only screen and (min-width: 768px) {
    .jobs {
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr);
      grid-gap: 10px;
      margin: 65px 0 60px; } }
  @media only screen and (min-width: 1279px) {
    .jobs {
      -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr); } }
  .jobs__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        align-items: flex-start;
    background-color: #F7F7F7;
    padding: 30px 20px;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .jobs__item {
        padding: 40px; } }
    @media only screen and (min-width: 1279px) {
      .jobs__item {
        padding: 45px 55px; } }
    .jobs__item:hover .btn {
      background-color: #c00e0e;
      border-color: #c00e0e;
      color: #fff; }
  .jobs__content {
    width: 100%; }
  .jobs__head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        align-items: flex-start; }
  .jobs__date {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #222;
    font-weight: 300; }
  .jobs__location {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #222;
    font-weight: 400; }
    .jobs__location span {
      font-weight: 700; }
  .jobs__title {
    display: block;
    margin: 20px 0;
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 700;
    color: #222; }
    @media only screen and (min-width: 768px) {
      .jobs__title {
        margin: 20px 0 30px; } }

.notes__gpw {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .notes__gpw {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-pack: center;
          justify-content: center;
      margin-bottom: 60px;
      font-size: 1.6rem;
      line-height: 2.4rem; } }
  .notes__gpw img {
    display: inline-block;
    width: 121px;
    margin-bottom: 25px; }
    @media only screen and (min-width: 768px) {
      .notes__gpw img {
        margin-bottom: 0;
        margin-right: 25px; } }
  .notes__gpw span {
    margin-top: 4px; }

.notes__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px; }
  @media only screen and (min-width: 768px) {
    .notes__block {
      margin: 0; } }

.notes__diagram {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
  background-color: #B50014;
  padding: 40px 20px;
  color: #fff; }
  @media only screen and (min-width: 768px) {
    .notes__diagram {
      width: 50%; } }
  @media only screen and (min-width: 1279px) {
    .notes__diagram {
      width: 33.33%;
      padding: 44px 53px; } }
  @media only screen and (min-width: 1600px) {
    .notes__diagram {
      padding-right: 110px; } }

.notes__graph {
  margin: 38px 0 45px; }
  @media only screen and (min-width: 1279px) {
    .notes__graph {
      margin-bottom: 74px;
      margin: 53px 0 74px; } }

.notes__exchange {
  margin-bottom: 25px; }
  @media only screen and (min-width: 768px) {
    .notes__exchange {
      margin-bottom: 30px; } }
  .notes__exchange-date {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem; }
  .notes__exchange-current {
    font-size: 4.8rem;
    line-height: 5.6rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase; }
    .notes__exchange-current span {
      font-size: 50%; }
  .notes__exchange-plus {
    margin-top: 4px;
    font-size: 2.4rem;
    line-height: 3rem;
    text-transform: uppercase;
    font-weight: 400; }

.notes__cards {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  background-color: #F7F7F7;
  color: #fff; }
  @media only screen and (min-width: 768px) {
    .notes__cards {
      width: 50%; } }
  @media only screen and (min-width: 1279px) {
    .notes__cards {
      width: 33.33%; } }

.notes__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex: 1;
      flex: 1;
  padding: 40px 20px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .notes__card {
      padding: 44px 53px; } }
  .notes__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1; }
  .notes__card-content {
    position: relative;
    z-index: 2; }
  .notes__card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .notes__card .btn {
    margin-top: 25px; }
    @media only screen and (min-width: 768px) {
      .notes__card .btn {
        margin-top: 30px; } }

.notes__stats {
  width: 100%;
  background-color: #F7F7F7;
  padding: 40px 20px 20px; }
  @media only screen and (min-width: 1279px) {
    .notes__stats {
      width: 33.33%;
      padding: 44px 53px; } }
  @media only screen and (min-width: 1365px) {
    .notes__stats {
      padding-right: 90px; } }

.notes__data {
  margin: 30px 0 35px; }
  @media only screen and (min-width: 768px) {
    .notes__data {
      margin: 40px 0; } }
  .notes__data-title {
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    font-weight: 700; }
  .notes__data-note {
    font-size: 1rem;
    font-weight: 400; }
  .notes__data-value {
    margin-bottom: 10px;
    font-size: 4.8rem;
    line-height: 5.6rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #c00e0e; }
    @media only screen and (min-width: 768px) {
      .notes__data-value {
        margin: 5px 0 16px; } }

.notes__reports {
  margin-top: 35px; }
  @media only screen and (min-width: 768px) {
    .notes__reports {
      margin-top: 40px; } }

.partners {
  margin: 0 -20px; }
  @media only screen and (min-width: 768px) {
    .partners {
      margin: 0 -40px; } }
  @media only screen and (min-width: 1023px) {
    .partners {
      margin: 0; } }
  .partners .slick-slide > div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
  .partners a {
    display: inline-block; }
  .partners img {
    max-width: 100px;
    max-height: 30px;
    width: auto !important;
    margin: 16px 30px; }
    @media only screen and (min-width: 768px) {
      .partners img {
        max-width: 148px;
        max-height: 45px;
        margin: 20px 70px; } }
    @media only screen and (min-width: 1365px) {
      .partners img {
        margin: 20px 90px; } }

.realizations {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media only screen and (min-width: 768px) {
    .realizations {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-align: start;
          align-items: flex-start; } }
  .realizations__column-1 {
    width: 100%;
    background-color: #F7F7F7;
    padding: 40px 20px 0; }
    @media only screen and (min-width: 768px) {
      .realizations__column-1 {
        width: 33.33%;
        padding: 46px 46px 0; } }
  .realizations__column-2 {
    width: 100%;
    padding: 40px 20px; }
    @media only screen and (min-width: 768px) {
      .realizations__column-2 {
        width: 66.66%;
        padding: 46px; } }
    @media only screen and (min-width: 1365px) {
      .realizations__column-2 {
        padding: 46px 57px; } }
  .realizations__card {
    margin: 30px -20px 0;
    padding: 40px 20px;
    background-color: #c00e0e;
    color: #fff; }
    @media only screen and (min-width: 768px) {
      .realizations__card {
        margin: 42px -46px 0;
        padding: 46px; } }
  .realizations__contact {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background-color: #c00e0e;
    color: #fff;
    text-align: center;
    padding: 50px 20px; }
    @media only screen and (min-width: 768px) {
      .realizations__contact {
        padding: 80px 20px; } }
    .realizations__contact a {
      color: #fff; }
  .realizations__image {
    margin: 20px auto;
    width: 100%; }

.reports {
  margin: 0 0 10px; }
  .reports__item {
    display: block;
    padding: 18px 50px 16px 0;
    border-bottom: 1px solid #D1D1D1;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .reports__item {
        padding: 20px 50px 18px 0; } }
    .reports__item:hover .reports__title {
      color: #c00e0e; }
    .reports__item:last-child {
      border-bottom: 0; }
  .reports__title {
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #0F0F0F;
    transition: color 0.2s ease-in-out; }
  .reports__icon {
    position: absolute;
    bottom: 12px;
    right: 0;
    width: 35px;
    height: 35px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border: 1px solid #c00e0e;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out; }
    .reports__icon::before {
      content: "";
      background: transparent url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: 12px;
      width: 100%;
      height: 100%;
      transition: filter 0.2s ease-in-out; }
      @media only screen and (min-width: 768px) {
        .reports__icon::before {
          background-size: 15px; } }

.section-icons__title {
  text-align: center; }
  @media only screen and (min-width: 1365px) {
    .section-icons__title {
      margin-bottom: 30px !important; } }

.section-icons__desc {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 400; }
  @media only screen and (min-width: 768px) {
    .section-icons__desc {
      font-size: 1.8rem;
      line-height: 2.6rem; } }
  @media only screen and (min-width: 1365px) {
    .section-icons__desc {
      width: 70%;
      margin-left: auto;
      margin-right: auto; } }
  @media only screen and (min-width: 1600px) {
    .section-icons__desc {
      max-width: 1375px;
      width: auto;
      font-size: 2.4rem;
      line-height: 4.2rem; } }

.section-icons__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 40px 0 0; }
  @media only screen and (min-width: 1023px) {
    .section-icons__items {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 50px 0 0; } }
  @media only screen and (min-width: 1365px) {
    .section-icons__items {
      margin: 70px 0 0; } }

.section-icons__items2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 50px 0 0; }
  @media only screen and (min-width: 768px) {
    .section-icons__items2 {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 80px 0 0; } }
  @media only screen and (min-width: 1365px) {
    .section-icons__items2 {
      margin: 120px 0 0; } }

.section-icons__items3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 50px 0 0; }
  @media only screen and (min-width: 768px) {
    .section-icons__items3 {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 70px 0 0; } }

.section-icons__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  max-width: 450px;
  text-align: center;
  margin-bottom: 35px; }
  @media only screen and (max-width: 767px) {
    .section-icons__item {
      margin-left: auto;
      margin-right: auto; } }
  @media only screen and (min-width: 768px) {
    .section-icons__item {
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-align: start;
          align-items: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
      text-align: left;
      margin-bottom: 20px;
      max-width: inherit; } }
  @media only screen and (min-width: 1279px) {
    .section-icons__item {
      width: 50%;
      margin-bottom: 50px;
      padding: 0 40px 0 10px; } }
  @media only screen and (min-width: 1365px) {
    .section-icons__item {
      padding-right: 75px; } }
  .section-icons__item-content {
    margin-top: 16px; }
  .section-icons__item-title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2.4rem; }
    @media only screen and (min-width: 1279px) {
      .section-icons__item-title {
        margin-bottom: 20px;
        font-size: 1.6rem;
        line-height: 2.4rem; } }
  .section-icons__item-desc {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem; }
    @media only screen and (min-width: 1279px) {
      .section-icons__item-desc {
        font-size: 1.4rem;
        line-height: 2.4rem; } }
  .section-icons__item img {
    width: 57px;
    height: 57px; }
    @media only screen and (min-width: 768px) {
      .section-icons__item img {
        margin-right: 19px; } }
    @media only screen and (min-width: 1365px) {
      .section-icons__item img {
        width: 95px;
        height: 95px;
        margin-right: 42px; } }

.section-icons__item2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: center;
  width: 100%;
  margin-bottom: 35px; }
  @media only screen and (min-width: 768px) {
    .section-icons__item2 {
      width: 50%;
      -ms-flex-align: center;
          align-items: center;
      margin-bottom: 50px; } }
  @media only screen and (min-width: 1023px) {
    .section-icons__item2 {
      width: 33.33%;
      padding: 0 40px 0 10px; } }
  @media only screen and (min-width: 1365px) {
    .section-icons__item2 {
      padding-right: 75px; } }
  .section-icons__item2-title {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.6rem; }
    @media only screen and (min-width: 1279px) {
      .section-icons__item2-title {
        font-size: 2.4rem;
        line-height: 4.2rem; } }
    @media only screen and (min-width: 1365px) {
      .section-icons__item2-title {
        margin-bottom: 14px; } }
    .section-icons__item2-title span {
      display: block;
      font-weight: 700; }
  .section-icons__item2-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem;
    transition: color 0.2s ease-in-out;
    cursor: pointer; }
    @media only screen and (min-width: 768px) {
      .section-icons__item2-link {
        font-size: 1.4rem;
        line-height: 2.4rem; } }
    .section-icons__item2-link:hover {
      color: #c00e0e; }
  .section-icons__item2-arrow {
    width: 20px;
    height: 20px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border: 1px solid #c00e0e;
    border-radius: 50%;
    margin-left: 10px;
    transition: background-color 0.2s ease-in-out; }
    .section-icons__item2-arrow::before {
      content: "";
      background: transparent url(../img/svg/icon--arrow.svg) no-repeat center;
      background-size: 9px;
      width: 100%;
      height: 100%;
      transition: filter 0.2s ease-in-out; }

.section-icons__item3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: center;
  width: 100%;
  margin-bottom: 50px; }
  @media only screen and (min-width: 768px) {
    .section-icons__item3 {
      width: 50%;
      margin-bottom: 70px; } }
  @media only screen and (min-width: 1023px) {
    .section-icons__item3 {
      width: 33.33%;
      margin-bottom: 100px; } }
  .section-icons__item3-content {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 20px; }
  .section-icons__item3-title {
    margin-top: 20px;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-transform: uppercase; }
    @media only screen and (min-width: 1279px) {
      .section-icons__item3-title {
        font-size: 1.6rem;
        line-height: 2.4rem; } }
    @media only screen and (min-width: 1365px) {
      .section-icons__item3-title {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center;
        min-height: 48px;
        margin-bottom: 14px; } }
    .section-icons__item3-title span {
      display: block;
      font-weight: 700; }
  .section-icons__item3-desc {
    font-size: 1.2rem;
    line-height: 1.8rem; }
    @media only screen and (min-width: 1279px) {
      .section-icons__item3-desc {
        font-size: 1.6rem;
        line-height: 2.4rem; } }
  .section-icons__item3 img {
    width: 57px;
    height: 57px;
    margin: 0 auto; }
    @media only screen and (min-width: 1365px) {
      .section-icons__item3 img {
        width: 95px;
        height: 95px; } }

.section-icons__contents {
  margin-top: 40px; }
  @media only screen and (min-width: 768px) {
    .section-icons__contents {
      margin-top: 69px; } }
  @media only screen and (min-width: 1365px) {
    .section-icons__contents {
      margin-top: 90px; } }
  .section-icons__contents .wp-block-image {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .section-icons__contents .wp-block-image {
        margin-bottom: 0;
        padding-right: 10px; } }
    @media only screen and (min-width: 1365px) {
      .section-icons__contents .wp-block-image {
        padding-right: 60px; } }
  .section-icons__contents-title {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3rem; }
    @media only screen and (min-width: 768px) {
      .section-icons__contents-title {
        font-size: 2.4rem;
        line-height: 3rem; } }
    @media only screen and (min-width: 1365px) {
      .section-icons__contents-title {
        font-size: 3.6rem;
        line-height: 4.2rem;
        font-family: "Montserrat", sans-serif; } }
  .section-icons__contents-subtitle {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: "Montserrat", sans-serif; }
    @media only screen and (min-width: 1365px) {
      .section-icons__contents-subtitle {
        font-size: 2.4rem;
        line-height: 3rem; } }
  @media only screen and (max-width: 767px) {
    .section-icons__contents .wp-block-columns {
      -ms-flex-direction: column;
          flex-direction: column; } }
  @media only screen and (max-width: 767px) {
    .section-icons__contents .wp-block-columns .wp-block-column {
      margin-left: 0; } }

.slider-hero .slick-active .slider-hero__image {
  animation: slider-hero-scale 0.2s ease-in-out; }

.slider-hero__slide {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  height: calc(100vh - 120px);
  min-height: 300px;
  padding: 0 20px 95px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .slider-hero__slide {
      height: calc(100vh - 100px);
      min-height: 500px;
      padding: 0 0 40px; } }
  @media only screen and (min-width: 1279px) {
    .slider-hero__slide {
      min-height: 550px;
      padding: 0 0 80px; } }
  @media only screen and (min-width: 1600px) {
    .slider-hero__slide {
      height: calc(100vh - 124px); } }
  .slider-hero__slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/hero--overlay.png) no-repeat center;
    background-size: cover;
    z-index: 1; }

.slider-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

.slider-hero__content {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: relative;
  animation: slider-hero-appear 0.2s ease-in-out both 0.1s;
  z-index: 2; }
  @media only screen and (min-width: 768px) {
    .slider-hero__content {
      padding-left: 60px;
      padding-right: 60px; } }
  @media only screen and (min-width: 1600px) {
    .slider-hero__content {
      max-width: 1760px; } }
  @media only screen and (min-width: 1600px) {
    .slider-hero__content {
      transform: translateX(25px); } }

.slider-hero__subtitle {
  max-width: 600px;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-family: "Montserrat", sans-serif;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #fff; }
  @media only screen and (min-width: 1365px) {
    .slider-hero__subtitle {
      font-size: 2.4rem;
      line-height: 3rem;
      font-weight: 400; } }

.slider-hero__title {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 700;
  color: #fff; }
  @media only screen and (min-width: 768px) {
    .slider-hero__title {
      margin-bottom: 30px;
      font-size: 3.6rem;
      line-height: 4.2rem;
      font-family: "Montserrat", sans-serif; } }
  @media only screen and (min-width: 1279px) {
    .slider-hero__title {
      font-size: 4.8rem;
      line-height: 5.6rem;
      font-family: "Montserrat", sans-serif; } }
  @media only screen and (min-width: 1365px) {
    .slider-hero__title {
      margin-bottom: 45px;
      font-size: 6rem;
      line-height: 7.2rem;
      font-family: "Montserrat", sans-serif; } }

.slider-hero .slick-dots {
  position: absolute;
  bottom: 22px;
  left: inherit;
  right: 50%;
  transform: translateX(50%);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center; }
  @media only screen and (min-width: 768px) {
    .slider-hero .slick-dots {
      bottom: 40px;
      right: 60px;
      -ms-flex-pack: end;
          justify-content: flex-end;
      transform: inherit; } }
  @media only screen and (min-width: 1279px) {
    .slider-hero .slick-dots {
      bottom: 80px;
      right: 100px; } }
  @media only screen and (min-width: 1600px) {
    .slider-hero .slick-dots {
      right: 16vw; } }

@keyframes slider-hero-scale {
  0% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes slider-hero-appear {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.slider-years {
  height: 150px; }
  .slider-years .slick-list {
    margin-left: -14px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px; }
    @media only screen and (min-width: 768px) {
      .slider-years .slick-list {
        margin-right: 0;
        padding-right: 0; } }
  .slider-years .slick-track {
    margin-left: 0; }
  .slider-years .slick-slide:last-child .slider-years__slide::after {
    width: 15px; }
  .slider-years .tabs__item--active.slider-years__slide {
    color: #222; }
    .slider-years .tabs__item--active.slider-years__slide::before {
      top: -5px;
      left: -5px;
      background-color: #c00e0e;
      width: 25px;
      height: 25px; }
  .slider-years__slide {
    height: auto;
    transform: translateY(40px);
    background-color: transparent;
    color: #777;
    margin: 15px 50px 15px 0 !important;
    padding: 30px 0;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    z-index: 2; }
    .slider-years__slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 15px;
      height: 15px;
      border-radius: 100%;
      background-color: #D1D1D1;
      transition: 0.15s ease-in-out;
      z-index: 2; }
    .slider-years__slide::after {
      content: "";
      position: absolute;
      top: 7px;
      left: 0;
      background-color: #D1D1D1;
      width: 100%;
      height: 1px;
      z-index: 1; }
    .slider-years__slide span {
      display: block;
      transform: translateX(-7px);
      background-color: #fff;
      position: relative;
      z-index: 3; }

@media only screen and (min-width: 1279px) {
  .stocks {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between; } }

@media only screen and (min-width: 1279px) {
  .stocks__col {
    width: 50%; } }

.stocks__col:first-child {
  margin-bottom: 20px; }
  @media only screen and (min-width: 1279px) {
    .stocks__col:first-child {
      margin-bottom: 0;
      padding-right: 20px; } }

@media only screen and (min-width: 1279px) {
  .stocks__col:last-child {
    padding-left: 20px; } }

.stocks__widget {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  height: 100%;
  background-color: #c00e0e;
  color: #fff;
  padding: 30px 20px; }
  @media only screen and (min-width: 768px) {
    .stocks__widget {
      padding: 40px 40px; } }
  @media only screen and (min-width: 1279px) {
    .stocks__widget {
      padding: 45px 52px; } }

@media only screen and (min-width: 768px) {
  .stocks__widget-col {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

@media only screen and (min-width: 1600px) {
  .stocks__widget-col {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; } }

@media only screen and (min-width: 768px) {
  .stocks__widget-col div:first-child {
    margin-right: 10px; } }

.stocks__image {
  width: 100%;
  margin: 20px auto; }

.team__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1px;
  margin-right: -1px; }

.team__item {
  width: 100%;
  height: 200px;
  margin-right: 1px;
  margin-bottom: 1px;
  position: relative; }
  @media only screen and (min-width: 479px) {
    .team__item {
      height: 300px; } }
  @media only screen and (min-width: 768px) {
    .team__item {
      width: calc(50% - 1px);
      height: 250px; } }
  @media only screen and (min-width: 1023px) {
    .team__item {
      width: calc(33.33% - 1px);
      height: 223px; } }
  @media only screen and (min-width: 1279px) {
    .team__item {
      width: calc(25% - 1px); } }
  .team__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.65;
    z-index: 1;
    transition: opacity 0.2s ease-in-out; }
  .team__item.tabs__item--active::after {
    opacity: 0.22; }
  .team__item-image {
    width: 100%;
    height: 100%; }
    .team__item-image img {
      object-fit: cover;
      object-position: top;
      width: 100%;
      height: 100%; }
  .team__item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    text-align: center;
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding: 20px;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: #fff;
    z-index: 2; }
    @media only screen and (min-width: 768px) {
      .team__item-content {
        padding: 33px 10px;
        font-size: 1.8rem;
        line-height: 2.6rem; } }
    .team__item-content span {
      display: block;
      font-weight: 700; }

.team__contents {
  margin-top: 40px; }
  @media only screen and (min-width: 768px) {
    .team__contents {
      margin-top: 69px; } }
  .team__contents-title {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3rem; }
    @media only screen and (min-width: 768px) {
      .team__contents-title {
        font-size: 2.4rem;
        line-height: 3rem; } }
    @media only screen and (min-width: 1365px) {
      .team__contents-title {
        font-size: 3.6rem;
        line-height: 4.2rem;
        font-family: "Montserrat", sans-serif; } }
  .team__contents-subtitle {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: "Montserrat", sans-serif; }
    @media only screen and (min-width: 1365px) {
      .team__contents-subtitle {
        font-size: 2.4rem;
        line-height: 3rem; } }

@media only screen and (max-width: 767px) {
  .team .wp-block-columns {
    -ms-flex-direction: column;
        flex-direction: column; } }

@media only screen and (max-width: 767px) {
  .team .wp-block-columns .wp-block-column {
    margin-left: 0; } }

.team .wp-block-image {
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .team .wp-block-image {
      margin-bottom: 0;
      padding-right: 10px; } }
  @media only screen and (min-width: 1365px) {
    .team .wp-block-image {
      padding-right: 60px; } }

/**
* Import vendors
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none; }
  .slick-dots li {
    margin: 0 12px; }
    .slick-dots li:first-child {
      margin-left: 0; }
    .slick-dots li:last-child {
      margin-right: 0; }
  .slick-dots button {
    display: block;
    width: 9px;
    height: 9px;
    padding: 0;
    outline: none;
    border: 1px solid #fff;
    border-radius: 100%;
    background-color: transparent;
    text-indent: -9999px; }
  .slick-dots li.slick-active button {
    background-color: #fff; }

.slider-arrows {
  position: absolute;
  top: 50%;
  right: 0;
  width: 75px;
  height: 75px; }
  .slider-arrows span {
    display: block;
    height: 100%;
    cursor: pointer; }
    .slider-arrows span::before, .slider-arrows span::after {
      top: 16%;
      left: 0; }
    .slider-arrows span::after {
      left: 8px;
      transition: border-color .2s ease-in-out; }
    .slider-arrows span.prev::before, .slider-arrows span.prev::after {
      transform: rotate(-45deg) translate(8px, 8px); }
    .slider-arrows span.next::before, .slider-arrows span.next::after {
      transform: rotate(135deg); }

/**
* Import pages
*/
body {
  max-width: 100vw;
  overflow-x: hidden; }

.career .hero {
  background-color: #F7F7F7; }
  .career .hero .container-xl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 60%;
        grid-template-columns: 40% 60%;
    gap: 155px; }
    @media (max-width: 992px) {
      .career .hero .container-xl {
        padding: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
        gap: 0; } }
  .career .hero__desc {
    margin-top: 30px; }
    @media (max-width: 1360px) {
      .career .hero__desc {
        margin-top: 0; } }
  .career .hero__left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 20px 0; }
    @media (max-width: 992px) {
      .career .hero__left {
        padding: 38px 20px 30px 20px; }
        .career .hero__left p {
          font-size: 14px;
          line-height: 24px; } }
  .career .hero__image {
    height: 100%;
    object-fit: cover; }
    @media (max-width: 992px) {
      .career .hero__image {
        height: 263px; } }
  .career .hero__over {
    text-transform: uppercase;
    color: #B50014;
    margin: 0;
    padding-bottom: 3px; }
    @media (max-width: 992px) {
      .career .hero__over {
        font-size: 14px;
        line-height: 14px; } }
  .career .hero__title {
    color: #0f0f0f; }
    @media (max-width: 992px) {
      .career .hero__title {
        font-size: 32px; } }

.career .tiles {
  padding: 140px 0 120px 0; }
  @media (max-width: 1366px) {
    .career .tiles {
      padding-bottom: 40px; } }
  @media (max-width: 992px) {
    .career .tiles {
      padding-top: 37px; } }
  .career .tiles__text {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
  .career .tiles__title {
    padding-bottom: 33px;
    text-align: center;
    max-width: 950px; }
    @media (max-width: 992px) {
      .career .tiles__title {
        font-size: 24px;
        padding-bottom: 38px;
        line-height: 30px; } }
  .career .tiles__desc {
    text-align: center;
    max-width: 1088px;
    font-weight: 400; }
    @media (max-width: 992px) {
      .career .tiles__desc {
        font-size: 14px;
        line-height: 24px; } }
  .career .tiles__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 88px; }
    @media (max-width: 1250px) {
      .career .tiles__wrapper {
        -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr; } }
    @media (max-width: 992px) {
      .career .tiles__wrapper {
        margin-top: 38px;
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        gap: 10px; } }
  .career .tiles .tile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    background-color: #F7F7F7;
    min-height: 288px;
    padding: 61px 52px 33px 52px; }
    @media (max-width: 1366px) {
      .career .tiles .tile {
        padding: 44px 30px;
        min-height: 240px; } }
    .career .tiles .tile__right {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: end;
          align-items: end;
      -ms-flex-pack: justify;
          justify-content: space-between; }
    .career .tiles .tile__text-over {
      font-size: 16px;
      line-height: 24px;
      text-transform: uppercase;
      font-weight: 700; }
      @media (max-width: 992px) {
        .career .tiles .tile__text-over {
          font-size: 14px; } }
    .career .tiles .tile__number {
      font-size: 95px;
      font-weight: 700;
      line-height: 95px; }
      @media (max-width: 992px) {
        .career .tiles .tile__number {
          font-size: 72px; } }
    .career .tiles .tile__icon {
      height: 36px;
      object-fit: contain; }
    .career .tiles .tile__title {
      font-size: 24px;
      text-transform: uppercase;
      font-weight: 700; }
      @media (max-width: 992px) {
        .career .tiles .tile__title {
          font-size: 18px;
          line-height: 24px;
          max-width: 182px; } }
    .career .tiles .tile__link {
      position: relative;
      background-color: transparent;
      border: none;
      outline: none;
      font-size: 16px;
      text-transform: uppercase;
      font-weight: 700;
      display: -ms-flexbox;
      display: flex;
      gap: 22px;
      -ms-flex-align: center;
          align-items: center;
      color: #0f0f0f; }
      @media (max-width: 992px) {
        .career .tiles .tile__link {
          font-size: 0;
          /* hides text without affecting ::after */ } }
      .career .tiles .tile__link::after {
        content: '';
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: block;
        background: url("../../img/mobile-arrow-down.png");
        background-repeat: no-repeat; }
        @media (max-width: 576px) {
          .career .tiles .tile__link::after {
            background: url("../../img/mobile-arrow-down.png");
            background-repeat: no-repeat;
            background-position: center;
            -webkit-text-size-adjust: 100%;
            -ms-touch-action: manipulation;
                touch-action: manipulation;
            /* opcjonalnie */
            background-size: 50px 50px;
            /* lub contain / cover */ } }
  .career .tiles .modal {
    display: none;
    scroll-padding-top: -120px;
    margin-top: 120px; }
    @media (max-width: 1366px) {
      .career .tiles .modal {
        margin-top: 40px; } }
    .career .tiles .modal--active {
      display: block; }
    .career .tiles .modal__title {
      font-size: 36px;
      font-weight: bold;
      padding-bottom: 64px; }
      @media (max-width: 992px) {
        .career .tiles .modal__title {
          font-size: 24px;
          padding-bottom: 30px; } }
    .career .tiles .modal iframe,
    .career .tiles .modal #map {
      width: 100%;
      height: 650px; }
      @media (max-width: 992px) {
        .career .tiles .modal iframe,
        .career .tiles .modal #map {
          height: 424px; } }

.career .promise .container-xl {
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 55%;
      grid-template-columns: 45% 55%;
  max-width: 1920px; }
  @media (max-width: 1600px) {
    .career .promise .container-xl {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr; } }
  @media (max-width: 1400px) {
    .career .promise .container-xl {
      -ms-grid-columns: 60% 40%;
          grid-template-columns: 60% 40%; } }
  @media (max-width: 1200px) {
    .career .promise .container-xl {
      -ms-grid-columns: 1fr;
          grid-template-columns: 1fr; } }

.career .promise__right {
  background-color: #B50014;
  padding: 135px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 53px; }
  .career .promise__right * {
    color: white; }
  @media (max-width: 1750px) {
    .career .promise__right {
      padding: 100px; } }
  @media (max-width: 1500px) {
    .career .promise__right {
      padding: 60px;
      gap: 0; } }
  @media (max-width: 992px) {
    .career .promise__right {
      padding: 32px 20px; } }

.career .promise__desc {
  font-size: 16px;
  line-height: 32px; }
  @media (max-width: 992px) {
    .career .promise__desc {
      font-size: 14px;
      line-height: 24px; } }

.career .promise__image {
  object-fit: cover;
  height: 100%; }
  @media (max-width: 1200px) {
    .career .promise__image {
      width: 100%;
      max-height: 300px;
      object-position: 0 -123px; } }
  @media (max-width: 992px) {
    .career .promise__image {
      object-position: 0 -50px; } }
  @media (max-width: 576px) {
    .career .promise__image {
      max-height: 275px;
      object-position: 0 0; } }

@media (max-width: 992px) {
  .career .promise__title {
    text-align: center; } }

.career .chars {
  padding-top: 190px;
  padding-bottom: 179px; }
  @media (max-width: 1600px) {
    .career .chars {
      padding-top: 90px;
      padding-bottom: 90px; } }
  @media (max-width: 992px) {
    .career .chars {
      padding: 40px 0 70px 0; } }
  .career .chars__title {
    font-weight: 700;
    text-align: center; }
    .career .chars__title p,
    .career .chars__title span {
      font-weight: 700; }
    .career .chars__title strong {
      font-weight: 900; }
  .career .chars__wrapper {
    padding-top: 106px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    gap: 68px;
    padding-bottom: 130px; }
    @media (max-width: 1600px) {
      .career .chars__wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
        gap: 30px; } }
    @media (max-width: 1250px) {
      .career .chars__wrapper {
        -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr; } }
    @media (max-width: 992px) {
      .career .chars__wrapper {
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px; } }
  .career .chars .char {
    padding: 63px 60px;
    border: 2px solid #B50014;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    @media (max-width: 1600px) {
      .career .chars .char {
        padding: 40px; } }
    @media (max-width: 992px) {
      .career .chars .char {
        padding: 32px; } }
    .career .chars .char__icon {
      width: 60px;
      object-fit: contain; }
    .career .chars .char__label {
      color: #B50014;
      text-transform: uppercase;
      padding-bottom: 8px;
      font-weight: bold;
      display: block;
      margin-top: 65px; }
      @media (max-width: 992px) {
        .career .chars .char__label {
          margin-top: 47px; } }
    .career .chars .char__title {
      margin: 0;
      font-weight: 700; }
    .career .chars .char__desc {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 60px 54px;
      background-color: #B50014;
      opacity: 0;
      transform: translateY(100%);
      transition: all .3s ease;
      top: 0;
      left: 0; }
      @media (max-width: 1600px) {
        .career .chars .char__desc {
          padding: 40px; } }
      @media (max-width: 992px) {
        .career .chars .char__desc {
          padding: 30px; } }
      .career .chars .char__desc p {
        margin: 0; }
      .career .chars .char__desc * {
        color: white;
        font-size: 18px;
        line-height: 32px; }
        @media (max-width: 1600px) {
          .career .chars .char__desc * {
            font-size: 16px;
            line-height: 28px; } }
        @media (max-width: 992px) {
          .career .chars .char__desc * {
            font-size: 14px;
            line-height: 24px; } }
    .career .chars .char:hover .char__desc {
      opacity: 1;
      transform: translateY(0); }
  .career .chars__text {
    text-align: center;
    max-width: 1226px;
    margin: 0 auto; }
    .career .chars__text * {
      font-size: 24px;
      line-height: 48px; }
      @media (max-width: 1600px) {
        .career .chars__text * {
          font-size: 20px;
          line-height: 40px; } }
      @media (max-width: 992px) {
        .career .chars__text * {
          font-size: 16px;
          line-height: 28px; } }
      @media (max-width: 576px) {
        .career .chars__text * {
          font-size: 14px;
          line-height: 24px; } }

.career .values {
  padding-bottom: 154px; }
  @media (max-width: 992px) {
    .career .values {
      padding-bottom: 13px; } }
  .career .values__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px; }
    @media (max-width: 1250px) {
      .career .values__wrapper {
        -ms-grid-columns: 1fr 1fr 1fr;
            grid-template-columns: 1fr 1fr 1fr; } }
    @media (max-width: 992px) {
      .career .values__wrapper {
        -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px) {
      .career .values__wrapper {
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr; } }
  .career .values__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 9px; }
  .career .values__label {
    font-weight: bold;
    text-transform: uppercase;
    color: #B50014; }
    @media (max-width: 768px) {
      .career .values__label {
        text-align: center;
        font-size: 18px; } }
  .career .values__title {
    font-weight: bold; }
    @media (max-width: 1600px) {
      .career .values__title {
        font-size: 50px;
        line-height: 60px; } }
    @media (max-width: 768px) {
      .career .values__title {
        font-size: 24px;
        text-align: center;
        line-height: 36px; } }
  .career .values .value {
    background-color: #F7F7F7;
    padding: 61px;
    min-height: 415px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    cursor: pointer;
    gap: 22px;
    position: relative;
    overflow: hidden; }
    @media (max-width: 1600px) {
      .career .values .value {
        padding: 40px;
        min-height: 350px; } }
    @media (max-width: 992px) {
      .career .values .value {
        min-height: 280px; } }
    @media (max-width: 768px) {
      .career .values .value {
        min-height: 264px;
        -ms-flex-align: center;
            align-items: center; } }
    .career .values .value:hover .value__text-wrap {
      opacity: 1;
      transform: translateY(0); }
    .career .values .value__icon {
      width: 95px;
      height: 95px;
      object-fit: contain; }
      @media (max-width: 1600px) {
        .career .values .value__icon {
          height: 80px;
          width: 80px; } }
    .career .values .value__name {
      font-weight: bold;
      font-size: 24px;
      line-height: 32px;
      margin: 0; }
      @media (max-width: 1600px) {
        .career .values .value__name {
          font-size: 20px;
          line-height: 26px; } }
      @media (max-width: 768px) {
        .career .values .value__name {
          font-size: 18px;
          line-height: 24px;
          text-align: center; } }
    .career .values .value__name-hidden {
      font-weight: bold;
      font-size: 24px;
      line-height: 32px;
      margin: 0; }
    .career .values .value__text-wrap {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 47px 61px;
      background-color: #272727;
      opacity: 0;
      transform: translateY(100%);
      transition: all .3s ease;
      top: 0;
      left: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center;
      gap: 37px;
      -ms-flex-direction: column;
          flex-direction: column; }
      .career .values .value__text-wrap p {
        margin: 0; }
      @media (max-width: 1600px) {
        .career .values .value__text-wrap {
          padding: 20px; } }
      @media (max-width: 768px) {
        .career .values .value__text-wrap {
          gap: 18px; } }
      .career .values .value__text-wrap * {
        color: white;
        font-size: 18px;
        line-height: 32px; }
        @media (max-width: 1600px) {
          .career .values .value__text-wrap * {
            font-size: 16px;
            line-height: 28px; } }
        @media (max-width: 768px) {
          .career .values .value__text-wrap * {
            font-size: 14px;
            line-height: 24px; } }

.career .process__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr; }
  @media (max-width: 992px) {
    .career .process__wrapper {
      -ms-grid-columns: 1fr;
          grid-template-columns: 1fr; } }

.career .process__left {
  background-color: #B50014;
  padding: 163px 143px 110px 143px; }
  @media (max-width: 1600px) {
    .career .process__left {
      padding: 120px 100px 80px 100px; } }
  @media (max-width: 1250px) {
    .career .process__left {
      padding: 80px 60px 40px 60px; } }
  @media (max-width: 992px) {
    .career .process__left {
      padding: 40px 30px; } }
  .career .process__left * {
    color: white; }

@media (max-width: 992px) {
  .career .process__right {
    min-height: 420px; } }

@media (max-width: 576px) {
  .career .process__right {
    min-height: 519px; } }

.career .process__title {
  font-weight: bold;
  padding-bottom: 27px; }
  @media (max-width: 1600px) {
    .career .process__title {
      font-size: 50px;
      line-height: 60px; } }
  @media (max-width: 1250px) {
    .career .process__title {
      font-size: 40px;
      line-height: 50px; } }
  @media (max-width: 992px) {
    .career .process__title {
      font-size: 32px;
      line-height: 36px; } }

.career .process__desc {
  font-weight: 300;
  padding-bottom: 68px; }
  @media (max-width: 1600px) {
    .career .process__desc {
      font-size: 20px;
      line-height: 30px;
      padding-bottom: 40px; } }
  @media (max-width: 1250px) {
    .career .process__desc {
      font-size: 16px;
      line-height: 24px;
      padding-bottom: 20px; } }

.career .process__icons {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px; }
  @media (max-width: 992px) {
    .career .process__icons {
      display: none; } }

.career .process__icon-wrap {
  position: relative;
  height: 100px;
  width: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer; }
  @media (max-width: 1600px) {
    .career .process__icon-wrap {
      width: 80px;
      height: 80px; } }
  .career .process__icon-wrap::after {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid white;
    content: '';
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    @media (max-width: 1600px) {
      .career .process__icon-wrap::after {
        width: 80px;
        height: 80px; } }
  .career .process__icon-wrap--active img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(55%) saturate(0%) hue-rotate(192deg) brightness(89%) contrast(90%); }
  .career .process__icon-wrap--active::after {
    border-color: #272727; }

.career .process__icon {
  max-width: 60px;
  height: 46px; }

.career .process .flex-break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.career .process .processes {
  height: 100%;
  position: relative; }
  .career .process .processes__arrows {
    position: absolute;
    top: 78px;
    right: 141px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 10px;
    z-index: 2; }
    @media (max-width: 1600px) {
      .career .process .processes__arrows {
        right: 100px;
        top: 50px; } }
    @media (max-width: 1250px) {
      .career .process .processes__arrows {
        right: 60px;
        top: 30px;
        -ms-flex-direction: row;
            flex-direction: row; } }
    @media (max-width: 992px) {
      .career .process .processes__arrows {
        top: unset;
        bottom: 33px;
        left: 50%;
        right: unset;
        transform: translateX(-50%);
        gap: 49px; } }
  .career .process .processes__arrow {
    cursor: pointer;
    transform: rotate(90deg); }
    @media (max-width: 992px) {
      .career .process .processes__arrow {
        transform: rotate(0); } }

.career .process .process-single {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  height: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-align: end;
      align-items: end;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  padding: 105px 140px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  @media (max-width: 1600px) {
    .career .process .process-single {
      gap: 23px;
      padding: 80px 100px; } }
  @media (max-width: 1250px) {
    .career .process .process-single {
      padding: 60px 60px;
      gap: 20px; } }
  @media (max-width: 992px) {
    .career .process .process-single {
      padding: 33px 40px;
      -ms-flex-pack: start;
          justify-content: start;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: start;
          align-items: start; } }
  .career .process .process-single--ciemny * {
    color: #222 !important; }
  .career .process .process-single--ciemny .process-single__icon {
    filter: brightness(0) saturate(100%) invert(8%) sepia(0%) saturate(1046%) hue-rotate(296deg) brightness(104%) contrast(89%) !important; }
  .career .process .process-single__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 23px;
    -ms-flex-align: end;
        align-items: end; }
    @media (max-width: 992px) {
      .career .process .process-single__wrap {
        gap: 25px;
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-align: center;
            align-items: center; } }
  @media (max-width: 992px) {
    .career .process .process-single__title {
      max-width: 150px;
      font-size: 18px;
      line-height: 24px; } }
  .career .process .process-single__desc p {
    margin: 0; }
    @media (max-width: 992px) {
      .career .process .process-single__desc p {
        font-size: 14px;
        line-height: 24px; } }
  .career .process .process-single__icon {
    min-height: 100px;
    max-height: 120px;
    max-width: 140px; }
    @media (max-width: 1600px) {
      .career .process .process-single__icon {
        height: 80px; } }
    @media (max-width: 992px) {
      .career .process .process-single__icon {
        max-width: 60px;
        max-height: 60px;
        min-height: unset; } }
  .career .process .process-single * {
    color: white;
    text-align: right; }
    @media (max-width: 992px) {
      .career .process .process-single * {
        text-align: left; } }
  .career .process .process-single--active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1; }

.career .process .process-single--ciemny.process-single--active ~ .processes__arrows .processes__arrow {
  filter: brightness(0) saturate(100%) invert(8%) sepia(0%) saturate(1046%) hue-rotate(296deg) brightness(104%) contrast(89%) !important; }

.career .form .wpcf7-form {
  margin-top: 0; }

.career .form__title {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 97px; }
  @media (max-width: 1600px) {
    .career .form__title {
      padding: 54px 0 44px 0; } }
  @media (max-width: 992px) {
    .career .form__title {
      font-size: 24px;
      line-height: 36px; } }
  .career .form__title * {
    font-weight: bold; }

.career .form label {
  position: static;
  transform: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  padding: 20px 24px;
  min-width: 230px;
  border: 2px solid #272727; }
  @media (max-width: 1600px) {
    .career .form label {
      padding: 16px 20px; } }
  @media (max-width: 992px) {
    .career .form label {
      display: none; } }

.career .form input {
  padding: 20px 24px;
  border: 2px solid #272727;
  border-left: none;
  outline: none;
  height: 100%;
  width: 100%; }
  @media (min-width: 992px) {
    .career .form input:-ms-input-placeholder {
      font-size: 0; }
    .career .form input::placeholder {
      font-size: 0; } }
  @media (max-width: 1600px) {
    .career .form input {
      padding: 16px 20px; } }
  @media (max-width: 992px) {
    .career .form input {
      border-left: 2px solid #272727; } }

.career .form textarea {
  border: 2px solid #272727;
  border-left: none;
  height: 130px;
  max-height: 300px; }
  @media (min-width: 992px) {
    .career .form textarea:-ms-input-placeholder {
      font-size: 0; }
    .career .form textarea::placeholder {
      font-size: 0; } }
  @media (max-width: 1600px) {
    .career .form textarea {
      height: 80px; } }
  @media (max-width: 992px) {
    .career .form textarea {
      border-left: 2px solid #272727; } }

.career .form select {
  height: 100%;
  border-left: none; }
  @media (max-width: 992px) {
    .career .form select {
      border-left: 2px solid #272727;
      padding-top: 16px;
      padding-bottom: 16px; } }

.career .form .form-block__field > p > .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none; }

.career .form .wpcf7-form-control-wrap {
  width: 100%;
  display: -ms-flexbox;
  display: flex; }

.career .form .form-block__group {
  width: 814px; }
  @media (max-width: 992px) {
    .career .form .form-block__group {
      width: 100%; } }

.career .form .form-block__field input:focus .form-block__field label {
  display: none; }

@media (max-width: 992px) {
  .career .form .form-block__field {
    position: relative; } }

.career .form .form-block__field p {
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1600px) {
    .career .form .form-block__field p {
      margin: 10px 0; } }

.career .form .form-block__field br {
  display: none; }

.career .form .form-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

@media (max-width: 992px) {
  .career .form .form-block__field--choose label {
    display: none; } }

.career .form .form-block__field--file {
  display: -ms-flexbox;
  display: flex; }
  .career .form .form-block__field--file p {
    margin: 0; }
  .career .form .form-block__field--file p:last-child {
    width: 100%; }
  @media (max-width: 992px) {
    .career .form .form-block__field--file label {
      display: none; } }
  .career .form .form-block__field--file input {
    -webkit-appearance: none;
    background: url("../img/svg/icon--arrow-rotate.svg") no-repeat;
    background-position: calc(100% - 16px) 50%;
    background-size: 14px; }

.career .form .form-block__info-clause {
  text-align: left; }
  .career .form .form-block__info-clause p {
    font-size: 12px;
    font-weight: 600;
    color: #272727; }
    @media (max-width: 1600px) {
      .career .form .form-block__info-clause p {
        margin: 34px 0 10px 0; } }
    .career .form .form-block__info-clause p a {
      color: #272727;
      text-decoration: underline; }

.career .form .form-block__checkbox .wpcf7-form-control-wrap {
  width: auto; }

@media (max-width: 1600px) {
  .career .form .form-block__checkbox p {
    margin: 10px 0; } }

.career .form .form-block__checkbox input {
  width: 20px;
  height: 20px;
  border: 2px solid #B50014;
  padding: 0;
  margin-top: 5px; }
  .career .form .form-block__checkbox input::before {
    width: 20px;
    height: 20px;
    box-shadow: inset 1.3em 1.3em #B50014; }

.career .form .form-block__checkbox label {
  display: -ms-flexbox;
  display: flex;
  border: none;
  padding: 0; }

.career .form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 10px;
  line-height: 18px;
  letter-spacing: normal;
  font-weight: 400; }

.career .form .form-block__submit input {
  padding: 20px 24px;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #B50014;
  color: #B50014;
  margin-left: auto;
  display: block; }
  @media (max-width: 1600px) {
    .career .form .form-block__submit input {
      padding: 16px 20px; } }
  .career .form .form-block__submit input:hover {
    background-color: #B50014;
    color: white; }

.career .form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-weight: normal;
  display: block;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 12px; }

.career .joblist {
  margin-top: 130px; }
  @media (max-width: 1600px) {
    .career .joblist {
      margin-top: 80px; } }
  @media (max-width: 992px) {
    .career .joblist {
      margin-top: 36px; } }
  .career .joblist__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    @media (max-width: 992px) {
      .career .joblist__top {
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center;
        gap: 19px; } }
  .career .joblist__select {
    max-width: 400px; }
    @media (max-width: 992px) {
      .career .joblist__select {
        max-width: 100%; } }
  .career .joblist__item--hidden {
    display: none; }

.career .logos {
  padding: 129px 0 119px 0;
  background-color: #F7F7F7;
  margin-top: 40px; }
  @media (max-width: 1600px) {
    .career .logos {
      margin-top: 50px;
      padding: 80px 0; } }
  @media (max-width: 992px) {
    .career .logos {
      margin-top: 20px; } }
  @media (max-width: 576px) {
    .career .logos {
      padding: 40px 0px; } }
  .career .logos__title {
    text-align: center;
    padding-bottom: 97px; }
    @media (max-width: 576px) {
      .career .logos__title {
        padding: 0 20px 60px 20px; } }
  .career .logos__item {
    max-height: 90px;
    max-width: 150px; }
    @media (max-width: 1600px) {
      .career .logos__item {
        max-height: 80px;
        max-width: 130px; } }
    @media (max-width: 576px) {
      .career .logos__item {
        max-height: 60px;
        max-width: 100px; } }
  .career .logos .slick-slide {
    margin-left: 127px; }
    @media (max-width: 1600px) {
      .career .logos .slick-slide {
        margin-left: 80px; } }
    @media (max-width: 576px) {
      .career .logos .slick-slide {
        margin-left: 40px; } }

/*# sourceMappingURL=style.css.map*/