@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/jost/jost-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/jost/jost-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/jost/jost-latin.woff2") format("woff2");
}


html,
body {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  margin: 0;
  padding: 0;
  height: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
}

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

.imagefit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  text-align: left;
}
.imagefit img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

.imagefit-flex {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: left;
}
.imagefit-flex img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

.top-left img {
  object-position: top left;
}

.top-center img {
  object-position: top center;
}

.top-right img {
  object-position: top right;
}

.center-left img {
  object-position: center left;
}

.center-center img {
  object-position: center center;
}

.center-right img {
  object-position: center right;
}

.bottom-left img {
  object-position: bottom left;
}

.bottom-center img {
  object-position: bottom center;
}

.bottom-right img {
  object-position: bottom right;
}

.img-placeholder-16-9,
.img-placeholder-4-3 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.img-placeholder-4-3 {
  padding-bottom: 75%;
}

.border-shadow {
  border: 4px solid #fff;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
  color: #000;
}
a:active, a:visited, a:hover {
  color: #000;
}

.hidden {
  display: none;
}

.animate-up-execute > div,
.animate-up-execute > figure {
  transform: translateY(200px);
  animation-delay: 0.5s;
}
.animate-up-execute > div:nth-child(1n),
.animate-up-execute > figure:nth-child(1n) {
  animation: animate-up 1s ease forwards;
}
.animate-up-execute > div:nth-child(2n),
.animate-up-execute > figure:nth-child(2n) {
  animation: animate-up 1.5s ease forwards;
}
.animate-up-execute > div:nth-child(3n),
.animate-up-execute > figure:nth-child(3n) {
  animation: animate-up 2s ease forwards;
}
.animate-up-execute > div:nth-child(4n),
.animate-up-execute > figure:nth-child(4n) {
  animation: animate-up 2.5s ease forwards;
}
.animate-up-execute > div:nth-child(5n),
.animate-up-execute > figure:nth-child(5n) {
  animation: animate-up 3s ease forwards;
}
.animate-up-execute > div:nth-child(6n),
.animate-up-execute > figure:nth-child(6n) {
  animation: animate-up 3.5s ease forwards;
}

@keyframes animate-up {
  to {
    transform: translateY(0);
  }
}
.animate-side-single-execute {
  animation: animate-side-single 1s ease forwards;
  animation-delay: 0.5s;
}
.animate-side-single-execute:nth-child(odd) {
  transform: translateX(300px);
  opacity: 0;
}
.animate-side-single-execute:nth-child(even) {
  transform: translateX(-300px);
  opacity: 0;
}

@keyframes animate-side-single {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
section,
.section {
  position: relative;
}

.section-space {
  padding: 9rem 0 9rem 0;
}

.section-space-small {
  padding: 3rem 0 3rem 0;
}

.section-black-1 {
  background-image: url("../img/pattern-black-1.png");
  background-color: #000;
}

.section-black-2 {
  background-image: url("../img/pattern-black-2.png");
  background-color: #000;
}

.section-gold-1 {
  background-image: url("../img/pattern-gold-1.png");
  background-color: #cda979;
}

.section-gold-2 {
  background-image: url("../img/pattern-gold-2.png");
  background-color: #cda979;
}

.section-grey-1 {
  background-image: url("../img/pattern-grey-1.png");
  background-color: #444;
}

.section-grey-2 {
  background-image: url("../img/pattern-grey-2.png");
  background-color: #444;
}

.section-grey {
  background-color: #444;
}

.quadrat {
  position: absolute;
  left: 0;
  right: 0;
  top: -2.7rem;
  margin-left: auto;
  margin-right: auto;
  width: 5.4rem;
  height: 5.4rem;
  z-index: 10;
  animation: bounce 1s infinite 0s;
}

.content-width-1,
.content-width-2,
.content-width-3 {
  position: relative;
  height: 100%;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.content-width-1 {
  max-width: 100%;
}

.content-width-2 {
  max-width: 1500px;
  padding-left: 50px;
  padding-right: 50px;
}

.content-width-3 {
  max-width: 1220px;
  padding-left: 50px;
  padding-right: 50px;
}

#home {
  padding-top: 60px;
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
}
#home h1 {
  margin: 6rem 0 6rem 0;
  font-size: 3.2rem;
  line-height: 1.2em;
  font-weight: 700;
  color: #fff;
}

#hero-slider {
  background-color: #cda979;
}

.arrow-top a,
.arrow-bottom a {
  position: absolute;
  left: 0;
  right: 0;
  top: -3.6rem;
  margin-left: auto;
  margin-right: auto;
  width: 7.2rem;
  height: 7.2rem;
  background-image: url("../img/quadrat-arrow-top.svg");
  background-size: contain;
  border: none !important;
  animation: bounce 1s infinite 0s;
}

.arrow-bottom a {
  background-image: url("../img/quadrat-arrow-bottom.svg");
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translate(0px, 0px);
  }
  40% {
    transform: translate(0px, 15px);
  }
  60% {
    transform: translate(0px, 5px);
  }
}
#header-image {
  margin-top: 60px;
  height: 50vh;
  position: relative;
  background-color: #cda979;
}

#header-image .hero-imagefit img {
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

.grid-column {
  display: grid;
  column-gap: 3rem;
}

.grid-column-nospace {
  display: grid;
  column-gap: 0 !important;
}

.grid-column-50-50 {
  grid-template-columns: 1fr 1fr;
}

.grid-column-33-33-33,
.grid-column-33-33-33--50-50,
.grid-column-33-33-33--fix,
.grid-column-33-33-33--late {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-column-33-66 {
  grid-template-columns: 1fr 2fr;
}

.grid-column-25-25-50 {
  grid-template-columns: 1fr 1fr 2fr;
}

.grid-column-footer {
  grid-template-columns: 1fr auto 3fr;
}

.spacer {
  position: relative;
  text-align: center;
}

.spacer-height-small {
  height: 2rem;
}

.spacer-height-medium {
  height: 3rem;
}

.spacer-height-big {
  height: 6rem;
}

#headerheightscrolled {
  display: none;
  height: 50px;
}

.opendxp-editmode main {
  padding-top: 180px;
}

.opendxp-editmode #header-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode #header-image .opendxp_editable_image_alt {
  z-index: 2;
}

.opendxp-editmode .process-steps-grid > .opendxp_editable_block {
  display: contents;
}

.opendxp-editmode .image-text-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode .gallery-grid > .opendxp_editable_block {
  display: contents;
}

.opendxp-editmode .gallery-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode .home-service-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode .home-service-image .opendxp_editable_image_alt {
  z-index: 2;
}

.opendxp-editmode .content-editable-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode .content-editable-image .opendxp_editable_image_alt {
  z-index: 2;
}

.opendxp-editmode .home-hero-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode .home-hero-image .opendxp_editable_image_alt {
  z-index: 2;
}

.opendxp-editmode #home.fullscreen {
  height: auto;
  display: block;
}

.opendxp-editmode main #hero-slider {
  overflow: visible;
  z-index: auto;
}

.opendxp-editmode #hero-slider .swiper-wrapper {
  display: block;
  transform: none !important;
}

.opendxp-editmode #hero-slider .swiper-slide {
  width: 100%;
  height: 450px;
  margin-bottom: 20px;
}

.opendxp-editmode .services-list-image .opendxp_editable_image {
  width: 100%;
  height: 100%;
}

.opendxp-editmode .services-list-image .opendxp_editable_image_alt {
  z-index: 2;
}

#header {
  z-index: 20;
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
}

.header-content {
  height: 60px;
  padding-left: 70px;
  padding-right: 70px;
}

.header-content-width {
  position: relative;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s ease;
}

#logo {
  display: inline-block;
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  width: 400px;
  height: 160px;
  transition: width 0.5s ease, height 0.5s ease;
  background-image: url(../img/logo-ernst.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.4));
}

#header nav {
  position: absolute;
  right: 0;
  bottom: -20px;
  padding: 0 30px;
  font-weight: 300;
  text-transform: uppercase;
  z-index: 50;
}
#header nav .corner-left,
#header nav .corner-right {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
}
#header nav .corner-left {
  left: 0;
  background-image: url(../img/nav-corner-left.svg);
  background-position: bottom left;
}
#header nav .corner-right {
  right: 0;
  background-image: url(../img/nav-corner-right.svg);
  background-position: bottom right;
}
#header nav ul {
  list-style: none;
  padding: 0 10px 50px 10px;
  background-color: #000;
}
#header nav ul li {
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}
#header nav ul li:first-child {
  margin-left: 0;
}
#header nav ul li:last-child {
  margin-right: 0;
}
#header nav ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
}
#header nav ul li a:hover {
  color: #cda979;
  border-bottom: 1px solid #cda979;
}
#header nav ul li.act a {
  border-bottom: 1px solid #fff;
}
#header nav ul li.act a:hover {
  color: #fff;
}

.pagescrolled .header-content {
  height: 50px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 30px;
  margin-right: 30px;
}
.pagescrolled .header-content-width {
  max-width: 100%;
  margin: 0 auto;
  padding-left: -50px;
  padding-right: -50px;
}
.pagescrolled #logo {
  width: 250px;
  height: 100px;
}
.pagescrolled #header nav ul {
  list-style: none;
  padding: 0 10px 50px 10px;
  background-color: #000;
}
.pagescrolled #header nav ul li a {
  font-size: 18px;
}

/* Mobilenavigation */
#hamburger {
  z-index: 100;
  display: none;
  position: absolute;
  right: 0;
  top: 10px;
  width: 33px;
  height: 33px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
#hamburger span {
  background: #fff;
  display: block;
  height: 3px;
  margin: 7px 0;
  position: relative;
  transform: rotate(0);
  top: 0;
  left: 0;
  opacity: 1;
  transition: none 0.5s ease;
  transition-property: transform, top, left, opacity;
}
#hamburger.nav-open span.top-bar {
  transform: rotate(45deg);
  top: 10px;
}
#hamburger.nav-open span.middle-bar {
  opacity: 0;
  left: -40px;
}
#hamburger.nav-open span.bottom-bar {
  transform: rotate(-45deg);
  top: -10px;
}
#hamburger.nav-open {
  display: inherit;
}

.small-screen #header nav {
  display: none;
  position: absolute;
  z-index: -1;
  top: 60px;
  padding-top: 100px;
  left: -100px;
  right: -100px;
  height: 120vh;
  background-image: url("../img/pattern-black-1.png");
  background-color: #000;
}
.small-screen #header nav ul {
  background-color: rgba(0, 0, 0, 0);
}
.small-screen #header nav ul li {
  float: none;
  margin: 0;
}
.small-screen #header nav ul li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.small-screen #header nav ul li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.small-screen #header nav ul li a {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding: 20px 0 20px 0;
  font-size: 30px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
}

.small-screen #header nav ul li a:hover,
.small-screen #header nav ul li.act a {
  color: #000;
  background-color: #cda979;
}
.small-screen.pagescrolled #header nav {
  top: 50px;
  padding-top: 90px;
}
.small-screen #hamburger {
  display: inherit;
}

main p,
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main address {
  margin: 0;
  padding: 0;
}
main h1,
main .h1 {
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1.2em;
  margin-bottom: 0.2em;
}
main h2,
main .h2 {
  font-size: 2.5rem;
  line-height: 1.3em;
  margin-bottom: 0.4em;
}
main .number {
  display: inline-block;
  padding-right: 0.5em;
  padding-bottom: 0.4em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #cda979;
}
main .number span {
  color: #cda979;
  font-size: 1.4em;
}
main h2.gallery {
  display: inline-block;
  color: #cda979;
  border-top: 2px solid #cda979;
  padding: 0.3em 0.5em 0 0.5em;
  margin-bottom: 1em;
  margin-top: 3rem;
}
main h2.list {
  padding-left: 1.2em;
}
main h2.list:before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  transform: rotate(45deg);
  border: 0.12em solid #fff;
  margin-left: -1.4em;
  margin-top: 0.3em;
}
main h3,
main .h3 {
  font-size: 2.2rem;
  line-height: 1.3em;
  margin-bottom: 0.5em;
}
main p,
main ul,
main ol,
main table,
main em,
main figcaption,
main address {
  font-size: 2rem;
  line-height: 1.3em;
  font-style: normal;
}
main p {
  margin-bottom: 0.5em;
}
main p.lead {
  font-weight: 300;
  font-size: 3rem;
  margin-bottom: 0.6em;
}
main .small {
  font-size: 1.8rem;
}
main .center {
  text-align: center;
}
main .right {
  text-align: right;
}
main .white {
  color: #fff !important;
}
main b,
main strong,
main .strong {
  font-weight: 700;
}
main figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
  line-height: 1.2em;
}
main a {
  border-bottom: 1px solid #000;
}
main a:hover {
  border-bottom: 2px solid #000;
}
main a.button {
  position: relative;
  display: inline-block;
  margin: 0.8rem;
  padding: 0.4em 0.8em;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  border-bottom: none !important;
  background-color: #000;
  cursor: pointer;
  transition: all 0.1s;
  --notchSize: 10px;
  --no-notchSize: 0px;
  clip-path: polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--no-notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--no-notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--no-notchSize)));
}
main a.button:hover {
  background-color: #444;
  transform: scale(1.08);
  transform-origin: 50% 50%;
}
main ul {
  margin: 0;
  padding-left: 1.4em;
  list-style: none;
}
main ul li {
  margin-bottom: 0.5em;
}
main ul li:before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  transform: rotate(45deg);
  border: 0.12em solid #000;
  margin-left: -1.4em;
  margin-top: 0.3em;
}
main ol {
  margin: 0;
  padding-left: 1.2em;
}
main ol li {
  margin-bottom: 0.5em;
}
main ol li:before {
  position: relative;
  margin-left: -1.2em;
}
main .service {
  background-color: #444;
  width: 85%;
  min-height: 350px;
  display: grid;
}
main .service .text {
  padding: 3rem 3rem 3rem 3rem;
}
main .service .img {
  position: relative;
}
main .service:nth-child(odd) {
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 3rem 0;
}
main .service:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  margin: 0 0 3rem auto;
}
main .service:nth-child(even) .text {
  order: 1;
}
main .service:nth-child(even) .img {
  order: 2;
}

main .service.image-text--left .img {
  order: 1;
}

main .service.image-text--left .text {
  order: 2;
}

main .service.image-text--right .text {
  order: 1;
}

main .service.image-text--right .img {
  order: 2;
}

main .image-text .image-text-text--dark {
  color: #fff;
  background-color: #444;
}

main .image-text .image-text-text--light {
  color: #000;
  background-color: #fff;
}

main .image-text .image-text-text--gold {
  color: #000;
  background-color: #cda979;
}

main .image-text .image-text-text--dark a {
  color: #fff;
  border-bottom-color: #fff;
}

main .image-text .image-text-text--light a,
main .image-text .image-text-text--gold a {
  color: #000;
  border-bottom-color: #000;
}

main .image-text .image-text-text--dark ul li::before {
  border-color: #fff;
}

main .image-text .image-text-text--light ul li::before,
main .image-text .image-text-text--gold ul li::before {
  border-color: #000;
}

main .section-black-1,
main .section-black-2,
main .section-grey-1,
main .section-grey-2,
main .section-grey {
  color: #fff;
}
main .section-black-1 h1,
main .section-black-1 .h1,
main .section-black-2 h1,
main .section-black-2 .h1,
main .section-grey-1 h1,
main .section-grey-1 .h1,
main .section-grey-2 h1,
main .section-grey-2 .h1,
main .section-grey h1,
main .section-grey .h1 {
  color: #cda979;
}
main .section-black-1 p.lead,
main .section-black-2 p.lead,
main .section-grey-1 p.lead,
main .section-grey-2 p.lead,
main .section-grey p.lead {
  color: #fff;
}
main .section-black-1 a,
main .section-black-2 a,
main .section-grey-1 a,
main .section-grey-2 a,
main .section-grey a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
main .section-black-1 a:hover,
main .section-black-2 a:hover,
main .section-grey-1 a:hover,
main .section-grey-2 a:hover,
main .section-grey a:hover {
  border-bottom: 2px solid #fff;
}
main .section-black-1 a.button,
main .section-black-2 a.button,
main .section-grey-1 a.button,
main .section-grey-2 a.button,
main .section-grey a.button {
  color: #000;
  background-color: #cda979;
}
main .section-black-1 a.button:hover,
main .section-black-2 a.button:hover,
main .section-grey-1 a.button:hover,
main .section-grey-2 a.button:hover,
main .section-grey a.button:hover {
  color: #fff;
  background-color: #444;
}
main .section-black-1 ul li:before,
main .section-black-2 ul li:before,
main .section-grey-1 ul li:before,
main .section-grey-2 ul li:before,
main .section-grey ul li:before {
  border: 0.12em solid #fff;
}
main .section-grey-1 a.button:hover,
main .section-grey-2 a.button:hover,
main .section-grey a.button:hover {
  color: #fff;
  background-color: #000;
}
main #impressum p,
main #impressum address {
  font-size: 1.8rem;
}
main #impressum a {
  border-bottom: none;
}
main #impressum a:hover {
  color: #cda979;
}
main #hero-slider {
  overflow: hidden;
  z-index: -1;
}
main .slider-cut {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}
main #inspration-slider figure {
  position: relative;
}
main #inspration-slider figure figcaption {
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
main #inspration-slider figure figcaption p {
  display: inline;
  padding: 0.2em 1em;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  --notchSize: 5px;
  clip-path: polygon(0% var(--notchSize), var(--notchSize) 0%, calc(100% - var(--notchSize)) 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));
}

main .process-steps-download-text {
  text-align: center;
}

main .process-steps-download-text p {
  font-weight: 300;
  font-size: 3rem;
}

main .services-list-imagefit img {
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

.sl-wrapper .sl-image .sl-caption {
  text-align: center;
  font-size: 1.8rem;
}

.sl-overlay {
  background: #000;
  opacity: 0.8;
}

.lightbox a {
  line-height: 1px;
  display: inline-block;
  overflow: hidden;
  border: none !important;
}

.lightbox img {
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* easeInOutCubic */
}

.lightbox img:hover {
  transform: scale(1.2);
  transform-origin: 50% 50%;
}

.sl-wrapper .sl-close {
  color: #fff;
}

.sl-wrapper .sl-navigation button {
  color: #fff;
}

.sl-wrapper .sl-navigation button.sl-prev,
.sl-wrapper .sl-navigation button.sl-next,
.sl-wrapper .sl-close {
  font: "Jost", sans-serif;
  font-weight: 400;
  font-size: 5rem;
}

/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 1300px) {
  /* START */
  #logo {
    width: 300px;
    height: 120px;
  }

  #header nav ul li a {
    font-size: 18px;
  }

  main .service {
    width: 100%;
  }
  main .service:nth-child(odd) {
    grid-template-columns: 2fr 3fr;
  }
  main .service:nth-child(even) {
    grid-template-columns: 3fr 2fr;
  }
}
/* END */
/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 1100px) {
  /* START */
  html,
body {
    font-size: 9px;
  }

  .header-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* END */
/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 950px) {
  /* START */
  .grid-column-33-33-33 {
    grid-template-columns: 1fr;
  }

  .grid-column-33-66,
.grid-column-33-33-33--50-50 {
    grid-template-columns: 1fr 1fr;
  }

  #header-image {
    height: 40vh;
  }
}
/* END */
/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 750px) {
  /* START */
  .content-width-2 {
    max-width: 1460px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .content-width-3 {
    max-width: 1180px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* END */
/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 750px) {
  /* START */
  .section-space {
    padding: 6rem 0 6rem 0;
  }

  .grid-column-33-33-33--fix {
    column-gap: 1.5rem;
  }
  .grid-column-33-33-33--fix figcaption {
    display: none;
  }

  .grid-column-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .grid-column-footer address {
    margin-bottom: 1rem;
  }
  .grid-column-footer .right {
    text-align: center;
  }
}
/* END */
/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 650px) {
  /* START */
  html,
body {
    font-size: 8px;
  }

  #logo,
.pagescrolled #logo {
    width: 200px;
    height: 80px;
  }

  #header-image {
    height: 30vh;
  }

  .grid-column-50-50,
.grid-column-33-66,
.grid-column-33-33-33--late {
    grid-template-columns: 1fr;
  }

  main h1,
main .h1 {
    font-size: 3.8rem;
  }
  main h2,
main .h2 {
    font-size: 2.2rem;
  }
  main p.lead,
  main .process-steps-download-text p {
    font-size: 2.5rem;
  }
}
/* END */
/* Responsive (Breakpoint) -------------------------------- */
@media only screen and (max-width: 540px) {
  /* START */
  .grid-column-33-33-33--50-50 {
    grid-template-columns: 1fr;
  }

  #home h1 {
    font-size: 2.4rem;
    margin: 6rem 0 3rem 0;
  }

  main h1,
main .h1 {
    font-size: 3rem;
  }
  main h2,
main .h2 {
    font-size: 2.2rem;
  }
  main p.lead,
  main .process-steps-download-text p {
    font-size: 2.4rem;
  }
  main .service:nth-child(odd) {
    grid-template-columns: 1fr;
  }
  main .service:nth-child(even) {
    grid-template-columns: 1fr;
  }
  main .service:nth-child(even) .text {
    order: 2;
  }
  main .service:nth-child(even) .img {
    order: 1;
  }
  main .service .img {
    min-height: 25vh;
  }
}
/* END */

/*# sourceMappingURL=app-230502.css.map */
