:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 75ch;
}

html,
body,
div,
main,
section,
article,
nav,
header,
footer,
ul {
  max-width: none;
}

html {
  font-size: 100%;
  font-size: clamp(14px, 0.8rem + 0.25vw, 1.2rem);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fff;
}

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

ul {
  padding-left: 0;
  list-style-position: inside;
}
ul:not([class]) li::marker {
  content: ">   ";
  color: #e31e24;
}

img {
  max-width: 100%;
}

p + p {
  margin-top: 1.5rem;
}

h1,
h2,
h3 {
  font-weight: 400;
  color: #e31e24;
}
h1 + *,
h2 + *,
h3 + * {
  margin-top: 0.6666666667rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1rem;
}

.l-constrained {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.l-center {
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
}

.l-flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-footer {
  margin-top: auto;
  padding: 0.6666666667rem;
  border-top: 0.1975308642rem solid #e31e24;
  background-color: #2b2a29;
  color: #fff;
}

.header {
  z-index: 1000;
}
.header__langbar, .header__navbar {
  padding: 0.6666666667rem;
}
.header__langbar-inside, .header__navbar-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__langbar {
  background-color: #2b2a29;
  color: #fff;
  font-size: 0.6666666667rem;
}
.header__phone {
  margin-right: 1.5rem;
  font-size: 1rem;
}
.header__logo {
  margin: 0.4444444444rem 1rem 0.4444444444rem 0;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: calc(15rem + 2.5vw);
  background-color: #2b2a29;
  overflow: hidden;
}
.slider > img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.4;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .slider > img {
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.slider__motto {
  width: 100%;
  max-width: 70rem;
  padding: 0.25em 0.75em;
  font-size: calc(1.8rem + 1vw);
  text-align: right;
  z-index: 100;
}
@media only screen and (min-width: 45em) {
  .slider__motto {
    font-size: 2.5rem;
  }
}
.slider__motto > p {
  position: relative;
  display: inline-block;
  color: #fff;
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  overflow-x: auto;
  list-style: none;
}
.navigation__list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 1rem;
  padding-left: 0;
}
.navigation__list > li:last-child {
  padding-right: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1em;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #fff;
  z-index: 100;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  -o-transition: transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}
.skip-link:focus {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.inline-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0.5em 0;
}
.inline-list > li:not(:last-child) {
  margin-right: 1em;
}
.inline-list > li {
  list-style-type: none;
}

.logo {
  display: inline-block;
  vertical-align: middle;
  width: 12rem;
  height: auto;
}
.logo--small {
  width: 8rem;
}

.lang-list__link {
  padding: 0.4444444444rem 0;
}
.lang-list__flag {
  width: 1.5em;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.lang-list__lang-title {
  display: none;
  margin-left: 0.4444444444rem;
}
@media only screen and (min-width: 30em) {
  .lang-list__lang-title {
    display: inline;
  }
}

.content-section {
  padding: 3.375rem 1.5rem;
}
.content-section::after {
  content: "";
  display: block;
  clear: both;
}
.content-section--grey {
  background-color: #f4f4f4;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.services-wrapper {
  padding: 0.6666666667rem;
  background-color: #e31e24;
  color: #fff;
}
.services__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  overflow-x: auto;
}
.services__list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.services__list > li + li {
  margin-left: 1.5rem;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@supports (display: grid) {
  .columns {
    display: -ms-grid;
    display: grid;
    grid-gap: 2.25rem;
  }
}
@media only screen and (min-width: 50em) {
  .columns {
    -ms-grid-columns: 1fr 2.25rem 1fr 2.25rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.columns__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  float: left;
}
.columns__column-image {
  display: block;
  width: auto;
  height: 15rem;
  padding-top: 0.6666666667rem;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .columns__column-image {
    width: 100%;
    height: 10rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.columns__column-pushed {
  width: 100%;
  padding-top: 1.5rem;
  margin-top: auto;
}

.contact__list {
  list-style: none;
  padding-left: 0;
}

.u-vh {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.u-text-small {
  font-size: 0.6666666667rem;
}