@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,300;1,400&display=swap");
@import url("https://use.typekit.net/iny0czt.css");
:root {
  --clr-white: 0, 0%, 100%;
  --clr-black: 0, 0%, 0%;
  --clr-black--100: 0, 0%, 90%;
  --clr-gray: 0, 0%, 44%;
  --clr-gray--700: 0, 0%, 33%;
  --clr-base--200: 159, 73%, 61%;
  --clr-base--300: 159, 73%, 52%;
  --clr-base--400: 159, 73%, 42%;
  --clr-base: 159, 73%, 32%;
  --clr-base--600: 159, 73%, 27%;
  --clr-base--700: 159, 73%, 23%;
  --clr-base--800: 159, 73%, 23%;
  --clr-base--900: 159, 73%, 11%;
  --clr-second: 119, 73%, 32%;
  --clr-second--800: 119, 73%, 11%;
  --clr-third: 199, 73%, 32%;
  --clr-third--700: 199, 73%, 25%;
  --clr-third--900: 199, 73%, 15%;
}

:root {
  --hsl-white: hsl(0, 0%, 0%);
  --hsl-black: hsl(0, 0%, 100%);
  --hsl-gray: hsl(0, 0%, 44%);
  --hsl-gray--700: hsl(0, 0%, 33%);
  --hsl-base--200: hsl(159, 73%, 61%);
  --hsl-base--300: hsl(159, 73%, 52%);
  --hsl-base--400: hsl(159, 73%, 42%);
  --hsl-base: hsl(159, 73%, 32%);
  --hsl-base--600: hsl(159, 73%, 27%);
  --hsl-base--700: hsl(159, 73%, 23%);
  --hsl-base--800: hsl(159, 73%, 23%);
  --hsl-base--900: hsl(160, 72%, 11%);
  --hsl-second: hsl(119, 73%, 32%);
  --hsl-third: hsl(199, 73%, 32%);
}

:root {
  --ff-primary: "Roboto",sans-serif;
  --ff-secondary: "matrix-ii", serif;
}

:root {
  --fw-thin: 100;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
}

/*-------------------------------------------
  base-30-typo
 *------------------------------------------*/
:root {
  font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.6;
  font-family: var(--ff-primary);
  font-weight: var(--fw-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-secondary);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin: 0 0 0.5em 0;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin-top: 3rem;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

@media screen and (min-width: 38rem) {
  h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 48rem) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 56rem) {
  h1 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
p {
  margin: 0 0 0.5em 0;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

/** for details and comments check 
* https://github.com/jensimmons/cssremedy/blob/master/css/remedy.css
*/
/** or a reduced version with comments is here:
* https://piccalil.li/blog/a-modern-css-reset/
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

picture {
  display: contents;
}

source {
  display: none;
}

img, svg, video, canvas {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

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

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/* Setzt unnötige font Deklarationen zurück */
input,
button,
textarea,
select {
  font: inherit;
}

/* Falls Benutzer Animationen deaktiviert haben, erzeugt dieses Setting, dass dies auch so ist */
@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.grid {
  display: grid;
  gap: var(--gap, 1rem);
}

.flow > * + * {
  margin-top: var(--flow-space, 1rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}

.hide-element {
  display: none;
}

.btn {
  display: inline-block;
  padding: 1em 2em;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-third));
  border-radius: 10rem;
  transition: all ease-in-out 150ms;
  align-self: center;
}
.btn:hover {
  color: inherit;
  background-color: hsl(var(--clr-base--600));
}

.cards {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 56rem) {
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: hsl(var(--clr-black));
  background-color: hsl(var(--clr-base--400));
  background-image: url(../img/bg/bg-card-2.png);
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-size: contain;
  border: 1px solid white;
  border-radius: 1rem;
}

.card__icon {
  width: 25%;
  margin-block: 2rem;
  margin-inline: auto;
}

.icon-fa {
  fill: hsl(var(--clr-white), 0.7);
}

.card__title h4 {
  margin-block: 2em;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  font-weight: var(--fw-regular);
  font-weight: bold;
  text-transform: uppercase;
}
.card__title h4 span {
  color: hsl(var(--clr-black), 0.5);
}

.card__text {
  line-height: 1.75;
  margin-bottom: 2rem;
}

.main-menu a {
  display: block;
  margin-block: 0.75em;
  padding: 0.2rem 1.75rem;
  font-weight: var(--fw-medium);
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.15em;
  color: hsl(var(--clr-white));
}
.main-menu a.active {
  border: 1px solid hsl(var(--clr-white));
}
.main-menu a:hover {
  background-color: hsl(var(--clr-white), 0.1);
}
@media screen and (min-width: 28rem) {
  .main-menu a {
    text-align: left;
  }
}

.skip-link {
  position: absolute;
  margin-left: 5rem;
  padding: 0.5rem 1rem;
  color: var(--clr-white);
  background: var(--clr-black);
  border-radius: 0 0 0.25rem 0.25rem;
  transform: translateY(-120%);
  transition: transform 325ms ease-in;
}
.skip-link:focus {
  transform: translateY(0);
}
.skip-link:hover {
  color: var(clr-white);
  background-color: var(clr-gray);
}

section {
  position: relative;
  margin-bottom: 4rem;
  padding-block: 2rem;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 48rem) {
  section {
    padding-block: 4rem;
    padding-inline: 5rem;
  }
}
@media screen and (min-width: 56rem) {
  section {
    padding-inline: 8rem;
  }
}

.zacken {
  min-height: 8rem;
  -webkit-clip-path: polygon(0 10%, 6% 1%, 13% 12%, 24% 1%, 44% 15%, 47% 0%, 57% 20%, 67% 1%, 71% 12%, 82% 1%, 93% 13%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 10%, 6% 1%, 13% 12%, 24% 1%, 44% 15%, 47% 0%, 57% 20%, 67% 1%, 71% 12%, 82% 1%, 93% 13%, 100% 0, 100% 100%, 0 100%);
  background-color: hsl(var(--clr-base--800));
  margin-bottom: -6rem;
}

/*-------------------------------------------
 - Base
 - Footer
 - Hero
 - Know how
 - Lead
 - Portrait
 - Services (Dienstleistunge)
 - Testimonial
 *------------------------------------------*/
/*-------------------------------------------
 Base
 *------------------------------------------*/
.base {
  min-height: 20rem;
  margin-top: -4.2rem;
  padding-block: 6rem 8rem;
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-third));
}
@media screen and (min-width: 28rem) {
  .base {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-areas: "title title .    " ".     text  text ";
  }
}

.base__title {
  grid-area: title;
  margin: 0 0 0.5 0;
  font-family: var(--ff-primary);
  font-weight: var(--fw-thin);
  font-size: 2rem;
  line-height: 1.2;
  color: hsl(var(--clr-white), 0.2);
}
@media screen and (min-width: 20rem) {
  .base__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 48rem) {
  .base__title {
    font-size: 4rem;
  }
}

.base__content {
  margin: 0;
  grid-area: text;
}
.base__content ul {
  margin-bottom: 0.5rem;
}
.base__content ul li {
  padding-left: 1.5rem;
}
.base__content ul li::before {
  content: "";
  display: inline-block;
  height: 1.5rem;
  width: 2rem;
  margin-left: -2rem;
  background-image: url(../img/bg/bg-list-dot.svg);
  background-repeat: no-repeat;
  background-size: 0.8rem;
  background-position: center top;
  transform: translateY(0.75rem);
}
.base__content a {
  border-bottom: 1px solid hsl(var(--clr-white));
}
.base__content a:hover {
  color: hsl(var(--clr-third--900));
  border-bottom: 1px solid hsl(var(--clr-third--900));
}

/*-------------------------------------------
 Blogs
 *------------------------------------------*/
.blogs {
  min-height: 20rem;
  margin-top: -6rem;
  padding-block: 8rem 4rem;
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-base--800));
}
@media screen and (min-width: 38rem) {
  .blogs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-areas: "t t t . . . ." "w w w w w w w";
    gap: 1rem;
  }
}
@media screen and (min-width: 48rem) {
  .blogs {
    padding-block: 4rem;
    padding-inline: 5rem;
  }
}
@media screen and (min-width: 56rem) {
  .blogs {
    grid-template-areas: "t t t . . . ." ". w w w w w .";
    padding-inline: 8rem;
  }
}

.blogs__title {
  margin: 0 0 2rem 0;
  font-family: var(--ff-primary);
  font-weight: var(--fw-thin);
  font-size: 4rem;
  line-height: 1.2;
  color: hsl(var(--clr-white), 0.2);
}
@media screen and (min-width: 38rem) {
  .blogs__title {
    grid-area: t;
  }
}

@media screen and (min-width: 38rem) {
  .blogs__wrapper {
    grid-area: w;
  }
}

.blog {
  position: relative;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  grid-template-areas: "timeline aside" "timeline content";
  gap: 2rem;
}
@media screen and (min-width: 28rem) {
  .blog {
    display: grid;
    grid-template-columns: 1.5fr 1.25rem 2fr;
    grid-template-areas: "aside timeline content";
    gap: 2rem;
  }
}
@media screen and (min-width: 38rem) {
  .blog {
    grid-template-columns: 1.5fr 2rem 2.5fr;
  }
}
@media screen and (min-width: 48rem) {
  .blog {
    grid-template-columns: 1fr 3rem 3fr;
  }
}

.blog__aside {
  grid-area: aside;
  padding-bottom: 1rem;
}
@media screen and (min-width: 28rem) {
  .blog__aside {
    grid-area: aside;
    padding-bottom: 4rem;
    transform: translateY(-3rem);
    text-align: right;
  }
}

.blog__issue {
  position: relative;
  font-family: var(--ff-secondary);
  font-size: 5rem;
}
.blog__issue::after {
  display: block;
  position: absolute;
  opacity: 0.5;
  content: "";
  background-image: url(../img/bg/bg-dot.svg);
  background-size: 0.5rem;
  bottom: 0.5rem;
  height: 0.5rem;
  width: 100%;
}

.blog__date {
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
}

.blog__author {
  font-size: 0.75rem;
  color: hsl(var(--clr-white), 0.3);
}

.blog__timeline {
  grid-area: timeline;
  background-image: url(../img/bg/bg-timeline-dot.svg), url(../img/bg/bg-timeline-line.svg);
  background-repeat: no-repeat, repeat-y;
  background-size: 1.25rem;
  background-position: center top;
}

.blog:last-child .blog__timeline {
  grid-area: timeline;
  background-repeat: no-repeat repeat-y;
  background-size: 1.25rem;
  background-position: center bottom;
  background-image: url(../img/bg/bg-timline-dot-upside-down.svg), url(../img/bg/bg-timeline-line.svg);
}

.blog__content {
  grid-area: content;
  padding-bottom: 4rem;
}
.blog__content img {
  width: 80%;
}
@media screen and (min-width: 56rem) {
  .blog__content img {
    width: 60%;
    transform: translateX(8rem);
    float: right;
    margin-left: -8rem;
  }
}
.blog__content .call-to-claim {
  font-size: 1.5rem;
  font-weight: var(--fw-thin);
  color: hsl(var(--clr-white), 0.6);
}
@media screen and (min-width: 28rem) {
  .blog__content {
    grid-area: content;
  }
}

/*-------------------------------------------
 Footer
 *------------------------------------------*/
footer {
  margin-top: -6rem;
  padding-block: 2rem;
  padding-inline: 1.5rem;
  color: hsl(var(--clr-white));
  -webkit-clip-path: polygon(0 5%, 6% 1%, 13% 5%, 24% 1%, 44% 5%, 47% 0%, 57% 5%, 67% 1%, 71% 5%, 82% 1%, 93% 3%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 5%, 6% 1%, 13% 5%, 24% 1%, 44% 5%, 47% 0%, 57% 5%, 67% 1%, 71% 5%, 82% 1%, 93% 3%, 100% 0, 100% 100%, 0 100%);
  background-color: hsl(var(--clr-base--900));
}
@media screen and (min-width: 48rem) {
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "address social";
    min-height: 10rem;
    margin-top: -6rem;
    padding-block: 4rem;
    padding-inline: 5rem;
  }
}
@media screen and (min-width: 56rem) {
  footer {
    padding-inline: 8rem;
  }
}

.footer__address {
  grid-area: address;
}
.footer__address .lw-logo-circle {
  width: 40px;
  fill: white;
  margin-bottom: 0.75em;
}
.footer__address a {
  transition: color ease-in-out 150ms;
}
.footer__address a:hover {
  color: hsl(var(--clr-white), 0.6);
}

.footer__social {
  grid-area: social;
}
.footer__social h6 {
  margin-top: 3.5rem;
  font-family: var(--ff-primary);
}
.footer__social a {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 2rem;
  color: hsl(var(--clr-white), 0.3);
  transition: color ease-in-out 150ms;
}
.footer__social a:hover {
  color: hsl(var(--clr-white), 0.6);
}

/*-------------------------------------------
 Hero
 *------------------------------------------*/
.hero {
  display: grid;
  min-height: 40rem;
  margin-bottom: 2rem;
  padding: 0;
}
.hero h1 {
  position: absolute;
  top: 20rem;
  left: 2rem;
  right: 2rem;
  font-weight: var(--fw-regular);
  color: hsl(var(--clr-white));
}
@media screen and (min-width: 28rem) {
  .hero h1 {
    left: 16rem;
    top: 3rem;
    width: 40%;
  }
}
@media screen and (min-width: 38rem) {
  .hero h1 {
    left: 16rem;
    width: 40%;
  }
}

video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -5;
}

/*-------------------------------------------
 Know How
 *------------------------------------------*/
.know-how {
  padding-bottom: 5rem;
}

.know-how__title {
  margin-bottom: 1em;
  font-size: 5rem;
  font-weight: var(fw--thin);
  color: hsl(var(--clr-black--100));
}

/*-------------------------------------------
 Lead
 *------------------------------------------*/
.lead {
  margin: 0 0 4rem 0;
  font-family: var(--ff-secondary);
  font-size: 1rem;
  line-height: 1.5;
  color: hsl(var(--clr-gray--700));
}
@media screen and (min-width: 38rem) {
  .lead {
    margin: 0 0 4rem 25%;
    font-size: 1.25rem;
    line-height: 2.5;
  }
}

/*-------------------------------------------
 Portrait
 *------------------------------------------*/
.portrait {
  margin-bottom: 0;
  z-index: -10;
}
@media screen and (min-width: 28rem) {
  .portrait {
    display: grid;
    grid-template-columns: 1.25fr 1.5fr;
    grid-template-areas: "image content";
    justify-items: end;
    align-items: center;
    margin-bottom: -7rem;
  }
}

.portrait__image {
  grid-area: image;
  text-align: center;
}
.portrait__image img {
  display: inline-block;
  max-width: 12rem;
  padding-right: 2rem;
  transform: translateY(1rem);
}
@media screen and (min-width: 28rem) {
  .portrait__image img {
    transform: translateY(0);
    text-align: right;
  }
}
@media screen and (min-width: 38rem) {
  .portrait__image img {
    max-width: 16rem;
  }
}
@media screen and (min-width: 56rem) {
  .portrait__image img {
    max-width: 18rem;
  }
}

.portrait__content {
  grid-area: content;
  padding-bottom: 4rem;
}

.portrait__quote {
  position: relative;
  padding-inline: 2em;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}
.portrait__quote:before {
  content: "“";
  position: absolute;
  top: -3.5rem;
  left: -0.5rem;
  font-family: var(--ff-primary);
  font-weight: var(--fw-medium);
  font-size: 6rem;
  color: hsl(var(--clr-third));
}
.portrait__quote:after {
  content: "”";
  position: absolute;
  bottom: -6rem;
  right: 0rem;
  font-family: var(--ff-primary);
  font-weight: var(--fw-medium);
  font-size: 6rem;
  color: hsl(var(--clr-third));
}
@media screen and (min-width: 38rem) {
  .portrait__quote {
    margin-top: 0;
    line-height: 1.75;
  }
}

.portrait__author {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: right;
  margin-right: 4em;
  padding-left: 2rem;
}
@media screen and (min-width: 48rem) {
  .portrait__author {
    line-height: 1.75;
  }
}

/*

  padding-block: 2rem;
  padding-inline: 1.5rem;

  @media screen and (min-width: $tablet-m) {
    padding-block: 4rem;
    padding-inline: 5rem;
  }

  @media screen and (min-width: $desk-s) {
    padding-inline: 8rem;
  }
*/
/*-------------------------------------------
 Services (Dienstleistungen)
 *------------------------------------------*/
.services {
  min-height: 20rem;
  padding-block: 2rem;
  padding-inline: 1.5rem;
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-base--800));
}
@media screen and (min-width: 38rem) {
  .services {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-areas: "t t t . . . ." "w w w w w w w";
    gap: 1rem;
  }
}
@media screen and (min-width: 48rem) {
  .services {
    padding-block: 4rem;
    padding-inline: 5rem;
  }
}
@media screen and (min-width: 56rem) {
  .services {
    grid-template-areas: "t t t . . . ." ". w w w w w .";
    padding-inline: 8rem;
  }
}

.services__title {
  margin: 0 0 2rem 0;
  font-family: var(--ff-primary);
  font-weight: var(--fw-thin);
  font-size: 4rem;
  line-height: 1.2;
  color: hsl(var(--clr-white), 0.2);
}
@media screen and (min-width: 38rem) {
  .services__title {
    grid-area: t;
  }
}

@media screen and (min-width: 38rem) {
  .services__wrapper {
    grid-area: w;
  }
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  grid-template-areas: "timeline aside" "timeline content";
  gap: 2rem;
}
@media screen and (min-width: 28rem) {
  .service {
    display: grid;
    grid-template-columns: 1.5fr 1.25rem 2fr;
    grid-template-areas: "aside timeline content";
    gap: 2rem;
  }
}
@media screen and (min-width: 38rem) {
  .service {
    grid-template-columns: 1.5fr 2rem 2.5fr;
  }
}
@media screen and (min-width: 48rem) {
  .service {
    grid-template-columns: 1fr 3rem 3fr;
  }
}

.service__aside {
  grid-area: aside;
  padding-bottom: 1rem;
}
.service__aside h4 {
  line-height: 1.4;
}
.service__aside div {
  font-size: 0.75rem;
  color: hsl(var(--clr-white), 0.6);
}
@media screen and (min-width: 28rem) {
  .service__aside {
    padding-bottom: 4rem;
    text-align: right;
  }
}

.service__timeline {
  grid-area: timeline;
  background-image: url(../img/bg/bg-timeline-dot.svg), url(../img/bg/bg-timeline-line.svg);
  background-repeat: no-repeat, repeat-y;
  background-size: 1.25rem;
  background-position: center top;
}

.service:last-child .service__timeline {
  grid-area: timeline;
  background-repeat: no-repeat, repeat-y;
  background-size: 1.25rem;
  background-position: center bottom;
  background-image: url(../img/bg/bg-timeline-dot-upside-down.svg), url(../img/bg/bg-timeline-line.svg);
}

.service__content {
  grid-area: content;
  padding-bottom: 4rem;
}
.service__content .call-to-claim {
  font-size: 1.5rem;
  font-weight: var(--fw-thin);
  color: hsl(var(--clr-white), 0.6);
}

/*-------------------------------------------
 Testimonial
 *------------------------------------------*/
.testimonial {
  min-height: 20rem;
  color: hsl(var(--clr-white));
  -webkit-clip-path: polygon(0% 0%, 10% 6%, 20% 2%, 29% 4%, 37% 8%, 41% 1%, 48% 6%, 54% 2%, 62% 4%, 71% 3%, 80% 8%, 89% 4%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0% 0%, 10% 6%, 20% 2%, 29% 4%, 37% 8%, 41% 1%, 48% 6%, 54% 2%, 62% 4%, 71% 3%, 80% 8%, 89% 4%, 100% 0, 100% 100%, 0 100%);
  background-color: hsl(var(--clr-base--800));
}
@media screen and (min-width: 28rem) {
  .testimonial {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-areas: "title title .    " ".     text  text ";
  }
}

.testimonial--weiss {
  background-color: hsl(var(--clr-base--600));
  margin-top: -6rem;
}

.testimonial__title {
  grid-area: title;
  margin: 0 0 0.5em 0;
  font-family: var(--ff-primary);
  font-weight: var(--fw-thin);
  font-size: 2rem;
  line-height: 1.2;
  color: hsl(var(--clr-white), 0.2);
}
@media screen and (min-width: 20rem) {
  .testimonial__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 48rem) {
  .testimonial__title {
    font-size: 4rem;
  }
}

.testimonial__wrapper {
  margin: 0;
  margin-left: 3rem;
  grid-area: text;
}

.testimonial__quote {
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: var(--ff-secondary);
  font-style: italic;
}

.testimonial__author {
  padding-right: 2rem;
  font-family: var(--ff-secondary);
  text-align: right;
}

body {
  background-image: url(../img/bg/bg-dot.svg);
  background-size: 1.25rem;
}

.container {
  max-width: 96rem;
  margin-inline: auto;
}

.navigation {
  height: 800px;
  width: 100%;
  padding: 0;
  background: linear-gradient(to bottom, rgba(22, 141, 99, 0.8) 20%, transparent 40%);
}
@media screen and (min-width: 28rem) {
  .navigation {
    width: 12rem;
    background: linear-gradient(to bottom, rgba(22, 141, 99, 0.8) 40%, transparent 80%);
  }
}

.branding {
  width: 12rem;
  padding: 1.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 28rem) {
  .branding {
    width: 100%;
    margin-block: 2rem 4rem;
    padding: 1.75rem;
  }
}
/*# sourceMappingURL=sourcemap/styles.css.map */
