html, body {
  font-family: 'Roboto', sans-serif;
}

h2{
  display: flex;
  justify-content: center;

  font-size: 28px;
  color: var(--color--grey-medium-darker);
}

h3{
  display: flex;
  justify-content: flex-start;

  font-size: 20px;
  color: var(--color--blue-main);

  margin-top: 30px;
  margin-bottom: 20px;
}

footer {
  padding: 60px;

  display: flex;
  justify-content: space-between;

  font-size: 14px;
  color: var(--color--grey-medium-darker);

  text-align: left;
}

.footer__section {
  display: grid;
  grid-template-columns: 1fr;

  row-gap: 15px;
}

.footer__logo {
  display: flex;
  align-items: flex-start;
  justify-items: flex-start;
}

.footer__logo img {
  height: 45px;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;

  padding: 10px 60px;
  margin: 0 auto;

  background-color: rgb(0, 0, 0);

  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  align-content: center;
}

.header__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-content: center;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo img{
  /* width: 100%; */
  height: 45px;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color--white);
}

.header__menu__item {
  margin: 0px 10px;
  color: var(--color--white);
}

.header__menu__item:hover {
  color: var(--color--grey-medium-darker);
}



.pageBlock {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  padding: 60px;
}

.block--dark {
  background-color: black;
  color: white;
}

.block__content, .block__content--wide, .block__content--narrow {
  width: 800px;
}

.block__content--wide {
  width: 1200px;
}

.block__content--narrow {
  width: 400px;
}


.block__content__2clmn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 35px;
}

.block__content__3clmn {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 35px;
}

/* BACKGROUNDS  */
.BG_team {
  background-image: url('./assets/bg_team.jpg');
}

.BG_partner {
  background-image: url('./assets/bg_partner.jpg');
}

.BG_card {
  background-image: url('./assets/bg_card.jpg');
}

/* MAIN TEASER BLOCK  */
.blockTeaser {
  min-height: 100vh;

  /* margin-top: 80px; */

  display: grid;
  grid-template-columns: 1fr 2fr 3fr;


  align-items: center;

  /* white-space: pre; */

  text-align: left;

  line-height: 1.2;

  font-size: 40px;
  font-weight: 600;

  background-image: url('./assets/bg_main.png');
  /* background-position: 100%, 200%; */
  background-position-x: 10%;
  background-position-y: -20%;
  background-attachment: fixed;
  background-size: cover;

}


.blockTeaser__txt, .blockTeaser__txt--small {
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0), #000000 );

  margin-bottom: 10px;
}
.blockTeaser__txt--small {
  font-size: 16px;
  font-weight: 400;

  line-height: 1.5;
  margin-bottom: 20px;
}

.blockTeaser__content {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto 2fr;
}

/* MEDIA */
@media only screen and (max-width: 1921) {
  .blockTeaser {
    /* background-position: 100%, 200%; */
    background-position-x: 100%;
    background-position-y: -100%;
    background-attachment: fixed;
    background-size: cover;
  }

}

@media only screen and (max-width: 1200px) {
  .header__btnContainer {
    visibility: hidden;
    display: none;
  }
  .block__content__3clmn {
    display: grid;
    grid-template-columns: minmax(200px, 350px) minmax(200px, 350px) minmax(200px, 350px);
    column-gap: 10px;
  }

  .blockTeaser {
    background-attachment: fixed;
    background-position: 80% 30%;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 150% auto;
  }

}

@media only screen and (max-width: 900px) {
  footer {
    padding: 30px;
  }

  .header {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: 1fr 5fr;
    padding: 10px 30px;
  }

  .header__menu {
    visibility: hidden;
    display: none;
  }

  .header__btnContainer {
    visibility: hidden;
    display: none;
  }

  .header__content {

  }

  .pageBlock { 
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .block__content, .block__content--wide, .block__content--narrow {
    width: 100%;
  }
  
  .block__content--wide {
    width: auto;
  }
  
  .block__content--narrow {
    width: auto;
  }

  .block__content__3clmn {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .block__content__2clmn {
    grid-template-columns: 1fr;
   justify-items: center;
    column-gap: 0;
    row-gap: 30px;
  }

  .blockTeaser {
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr;
  
    font-size: 30px;
    font-weight: 600;
  
    word-wrap: break-word;

    background-attachment: fixed;
    background-position: 80% 30%;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 200% auto;

  
  }

  .blockTeaser__content {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto 2fr;
}

}

@media only screen and (max-width: 700px) {
  .header {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: auto 1fr;

  }
  .blockTeaser {
    grid-template-columns: auto 1fr;

    background-attachment: fixed;
    background-position: 70% 30%;
    background-size:contain;
      background-repeat: no-repeat;
  background-size: 350% auto;
  }
}