@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

:root {
  --white: #fbfbfb;
  /*--white: #f9f9f9;*/
  --black: #36383F;
  --gray: #85888C;

  /*--header-background-color: rgb(0, 145, 246);*/
  /*--header-text-color: #e4e4e4;*/
  /*--header-text-shadow: text-shadow: 1px 1px 2px rgba(0,0,0,0.5);*/
  /*--header-background-color: rgb(116, 196, 255);*/
  --header-background-color: #e5f2f8;

  --header-text-color: #2e2e2e;
  /*--header-text-shadow:  #e0e0e0 1px 1px 0;*/
  --header-text-shadow: none;

  /*--header-button-border: groove #b5b8c073 2px;*/
  --header-button-border: solid 2px rgba(0, 0, 0, 0);
}

/* variables*/

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  font-family: "Fira Sans Condensed", sans-serif;
}

header {
  position: sticky;
  /*background-color: #60b4df;*/
  /*background: linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);*/
  background-image: linear-gradient(to top, rgba(55, 55, 55, 0.1) 0%, rgba(55, 55, 55, 0.1) 10%, rgba(183, 180, 180, 0.3) 90%, rgba(255, 255, 255, 0.6) 100%);
  background-size: auto;
  background-position: 0% 0%;
  background-repeat: repeat;
  background-color: var(--header-background-color);
  box-shadow: 1px 1px 5px 0px var(--gray);
  z-index: 1000;
  /*height: 3rem;*/
  /*height: 80px;*/
  width: 100%;
  top: 0;
  padding: 10px;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

main, .header .wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
main {
  width: 100%;
  padding: 10px;
}

header ul {
  list-style: none;
  vertical-align: baseline;
}

header li {
  font-family: "Fira Sans", sans-serif;
  font-weight: bolder;
  /*vertical-align: baseline;*/
  text-shadow: var(--header-text-shadow);
}

/* Logo */
.logo {
  /*font-family: "Fira Sans", sans-serif;*/
  font-family: "Times New Roman", "Merriweather", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;

  display: inline-block;
  color: var(--white);

  padding: 4px;
  background: #282828;
  border: outset #3d434e 1px;
  margin-right: 10px;
}

.header .logo a {
  color: var(--white);
}


/*header li:hover {*/
/*  background-color: #178acc*/
/*}*/
header li {
  border: outset 1px rgba(128, 128, 128, 0.0);

  /*border-bottom:  outset 1px rgba(128, 128, 128, 0.0);*/
}

header li:hover {
  background: rgba(226, 226, 226, 0.5);
  border-top: outset 1px rgba(255, 255, 255, 0.99);
  border-left: outset 1px rgba(255, 255, 255, 0.99);
  border-right: outset 1px rgba(138, 138, 138, 0.2);
  border-bottom: outset 1px rgba(138, 138, 138, 0.2);
}

header li:active {
  /*filter: brightness(70%);*/
  background: rgba(0, 0, 0, 0.1);
  border: inset 1px rgba(226, 226, 226, 0.5);
}


.logo a {
  padding: 1px 6px;
  border: groove #3d434e 2px;
}


nav:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  border-left: groove #dadce6 2px
}

.navigation ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.navigation ul li {
  text-align: center;
  flex: 1 1 0;
}

header a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px;

}

header a, header a:hover, header a:visited, header a:active {
  color: var(--header-text-color);
  text-decoration: none;
  font-weight: 500;
}

.jumbotron {
  min-height: 320px;
  padding: 50px;
  background-color: var(--header-background-color);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.jumbotron .production-image {
  position: relative;
  display: inline-block;
  float: right;
  margin: 4px;
}


.jumbotron h1 {
  font-size: 4rem;
}

.jumbotron h2 {
  font-size: 2rem;
}

.jumbotron p {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 600px ) {
  .header .logo {
    font-size: 1.2rem;
  }

  .header .navigation li {
    font-size: 0.85rem;
  }

  .header a {
    padding: 4px;
  }

  .jumbotron {
    padding: 20px;
    min-height: 180px;
  }


  .jumbotron h1 {
    font-size: 2rem;
  }

  .jumbotron h2 {
    font-size: 1.5rem;
  }

  .jumbotron p {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .jumbotron .production-image {
    /*top: 10px;*/
    /*right: 10px;*/
    /*bottom: 10px;*/
    width: 120px;
  }
}

html {
  scroll-padding-top: 73px; /* height of sticky header */
}

[data-tooltip]:hover::after {
  display: block;
  position: absolute;
  content: attr(data-tooltip);
  border: 1px solid black;
  background: yellow;
  padding: .25em;
}
