/* COLORS */
/* FONTS */
#node-gutscheine #intro {
  padding-top: 150px;
  background-color: #111111;
  position: relative;
  z-index: 30;
  padding-bottom: 50px;
}
#node-gutscheine #intro::before {
  content: '';
  width: 100%;
  height: 200px;
  background-color: #111111;
  position: absolute;
  bottom: 100%;
  left: 0;
}
#node-gutscheine #intro .introwrapper .h1 {
  color: #fff;
}
#node-gutscheine #intro .introwrapper .h1 strong {
  color: #ef0003;
}
#node-gutscheine #intro .introwrapper .text {
  color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: 0s;
  transition-delay: 0s;
  display: block;
}
#node-gutscheine #intro .introwrapper .text strong {
  color: #ef0003;
}
#node-gutscheine #intro .introwrapper .h1.animate + .text {
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 1.5s;
  transform: translateY(0);
  opacity: 1;
}
#node-gutscheine #gutscheine {
  position: relative;
  z-index: 30;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #fff;
  padding-bottom: 100px;
}
#node-gutscheine #gutscheine .gutscheine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
#node-gutscheine #gutscheine .gutscheine::before {
  content: '';
  width: calc( 100% + 120px);
  height: 150px;
  background-color: #111111;
  position: absolute;
  top: 0;
  left: -60px;
  z-index: -1;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a {
  border-radius: 10px;
  border: 2px solid #ef0003;
  overflow: hidden;
  display: block;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a .icon {
  background-color: #ef0003;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 75px;
  overflow: hidden;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a .icon img {
  height: 150px;
  margin: 0 auto;
  transition: transform 0.5s ease;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a .wrapper {
  padding: 20px 20px;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a .wrapper .titel {
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.5s ease;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a .wrapper .text {
  margin-bottom: 5px;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a .wrapper .price {
  font-weight: 700;
}
#node-gutscheine #gutscheine .gutscheine .gutschein a:hover .icon img {
  transform: scale(1.1);
}
#node-gutscheine #gutscheine .gutscheine .gutschein a:hover .wrapper .titel {
  color: #ef0003;
}
/* <= 374px */
@media screen and (max-width: 374px) {
  #node-gutscheine #gutscheine .gutscheine .gutschein a .icon {
    padding: 50px;
  }
}
