#home {
  padding: 1em;
  flex-flow: row wrap;
  position: fixed;
  z-index: 1000;
  display: flex;
}

@media screen and (min-width: 1300px) {
  #home {
    flex-flow: row nowrap;
  }
}
.nav-links {
  align-self: flex-end;
  flex: 10;
  display: flex;
  align-self: flex-end;
  margin: 0;
}

.services-dropdown {
  position: relative;
  z-index: 1;
}
.services-dropdown:hover .services-dropdown__content {
  display: flex;
}
.services-dropdown__content {
  position: absolute;
  background-color: white;
  display: none;
  flex-flow: column;
  width: max-content;
  z-index: 3;
}

.blackout {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.blackout.hidden {
  display: none;
}

.logo {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: max-content max-content;
}
.logo__image {
  grid-column: 1;
  grid-row: 1/span 2;
  height: 5rem;
  width: 5rem;
  margin: 1em;
  transition: ease transform 0.5s;
}
.logo__image:hover {
  transform: scale(1.5);
  outline: none !important;
}
.logo__brand, .logo__subline {
  color: black;
  margin: 0;
  background: none;
  font-family: Corbel, sans-serif;
}
.logo__brand {
  grid-column: 2;
  grid-row: 1;
  font-size: 2.5rem;
  margin-top: auto;
}
.logo__subline {
  grid-column: 2;
  grid-row: 2;
  font-size: 1rem;
  margin-left: auto;
}

@media screen and (max-width: 550px) {
  .logo__image {
    height: 4rem;
    width: 4rem;
  }
  .logo__brand {
    font-size: 1.2rem;
  }
  .logo__subline {
    font-size: 0.7rem;
  }
}
.banner-text h1 {
  color: black;
}

.wave-video,
#wave-video {
  opacity: 0.8;
  top: 0;
}

.wpr-video {
  position: fixed;
  top: 16vh;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.banner {
  height: 100vh;
}

.above-banner {
  position: absolute;
  top: 16vh;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.above-banner .banner-text {
  margin: 0;
}

.whitepane {
  background: white;
  width: 100vw;
}

.services {
  padding-top: 1em;
}
.services__header {
  margin: 0em 1em 1em 1em;
}
.services__header * + * {
  margin-top: 1em;
}
.services__subtitle {
  text-decoration: underline;
}
.services__subline {
  color: #36454f;
}
.services .column-box {
  margin: 0 3% 0 3%;
}
.services .column-box a{
	text-decoration: none;
	color: #36454f;
}

.services .column-box a:hover{
  color: black;
  cursor: pointer;
  text-decoration: underline;
  font-weight: bolder;

}

.card-product {
  display: flex;
  height: max-content;
  flex-flow: row wrap;
  justify-content: center;
  margin: auto;
}
.card-product-infos {
  margin: auto;
}
.card-product div {
  flex-basis: 50%;
}
.card-product img {
  width: 100%;
  height: 350px;
}
.card-product img:hover, .card-product img:focus {
  opacity: 0.9;
}
.card-product h2 {
  color: grey;
}

@media screen and (max-width: 1100px) {
  .card-product .effect {
    order: -1;
  }
  .card-product div {
    flex-basis: 100%;
    min-width: 300px;
    max-width: 400px;
  }
}
.review {
  display: block;
}
.review-author {
  font-weight: normal;
  text-align: right;
}

.quote-button-small {
  background-image: url(../images/button.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 1em;
  text-align: center;
  text-decoration: none;
}

.submit-button {
  background-color: #042da9;
  opacity: 0.8;
  border: none;
  color: #fff;
  font-size: 16px;
  outline: none;
  box-shadow: 2px 2px 5px black;
}

.tile__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.tile .front,
.tile .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
}
.tile .front img,
.tile .back img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tile .front {
  background: lightgrey;
}
.tile .back {
  background: grey;
  display: flex;
  flex-flow: column;
}
.tile:hover .tile__inner {
  transform: rotateY(180deg);
}

/*# sourceMappingURL=additions.css.map */
