/* COLORS */
/* FONTS */
#node-blog #intro {
  background-color: #111111;
  position: relative;
  z-index: 30;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 150px 0 100px 0;
}
#node-blog #intro::before {
  content: '';
  width: 100%;
  height: 200px;
  background-color: #111111;
  position: absolute;
  bottom: 100%;
  left: 0;
}
#node-blog #intro .introwrapper .icon {
  height: 120px;
  width: 120px;
  margin-bottom: 30px;
}
#node-blog #intro .introwrapper .icon .lottie {
  height: 100%;
  width: 100%;
}
#node-blog #intro .introwrapper .icon .lottie svg {
  width: 100%;
}
#node-blog #intro .introwrapper .h1 {
  color: #fff;
}
#node-blog #intro .introwrapper .h1 strong {
  color: #ef0003;
}
#node-blog #intro .introwrapper .text {
  color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: 0s;
  transition-delay: 0s;
  display: block;
}
#node-blog #intro .introwrapper .text strong {
  color: #ef0003;
}
#node-blog #intro .introwrapper .h1.animate + .text {
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 2s;
  transform: translateY(0);
  opacity: 1;
}
#node-blog #blog {
  background-color: #ef0003;
  z-index: 20;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  visibility: visible;
  padding: 200px 0 100px 0;
  position: relative !important;
  height: auto !important;
  padding-top: 100px;
  min-height: unset !important;
}
#node-blog #blog::before {
  content: '';
  width: 100%;
  height: 50px;
  background-color: #ef0003;
  z-index: 0;
  position: absolute;
  bottom: 100%;
  left: 0;
}
#node-blog #blog .h1 {
  color: #fff;
}
#node-blog #blog .h1.animated strong {
  color: #111111;
}
#node-blog #blog .blog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  grid-template-rows: 1fr 1fr;
}
#node-blog #blog .blog .blogbeitrag a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  gap: 10px;
  padding: 15px 20px;
}
#node-blog #blog .blog .blogbeitrag a .titel {
  font-weight: 700;
  transition: color 0.5s ease;
}
#node-blog #blog .blog .blogbeitrag a .icon-arrow-right {
  color: #ef0003;
  display: block;
  transition: transform 0.5s ease;
}
#node-blog #blog .blog .blogbeitrag a:hover .titel {
  color: #ef0003;
}
#node-blog #blog .blog .blogbeitrag a:hover .icon-arrow-right {
  transform: translateX(5px);
}
#node-blog #kontakt {
  background-color: #fff;
  z-index: 10;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  position: relative !important;
  height: auto !important;
  padding-top: 100px;
  min-height: unset !important;
}
#node-blog #kontakt::before {
  content: '';
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 0;
  position: absolute;
  bottom: 100%;
  left: 0;
}
