:root {
  --gray: #424242;
  --gelb: #ffb03b;
  --green: #9fa862;
  --red: rgb(152, 15, 4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.img-fluid {
  width: 100%;
  height: auto;
}

.container-flex {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
}

.colu {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.container-flex .itemcol {
  flex: 0 1 auto;
}

.one,
.two,
.three,
.four,
.five,
.six,
.seven,
.eight {
  flex: 0 1 auto;
  width: 300px;
  height: 300px;
}
@media (max-width: 576px) {
  .one,
  .two,
  .three,
  .four,
  .five,
  .six,
  .seven,
  .eight {
    flex: 0 1 auto;
    width: 320px;
    height: 320px;
  }
}
@media (min-width: 577px) {
  .one,
  .two,
  .three,
  .four,
  .five,
  .six,
  .seven,
  .eight {
    flex: 0 1 auto;
    width: 320px;
    height: 320px;
  }
}
@media (min-width: 900px) {
  .one,
  .two,
  .three,
  .four,
  .five,
  .six,
  .seven,
  .eight {
    flex: 0 1 auto;
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .one,
  .two,
  .three,
  .four,
  .five,
  .six,
  .seven,
  .eight {
    flex: 0 1 auto;
    width: 280px;
    height: 280px;
  }
}

.one {
  background-image: url("../img/home/hochzeitsfloristik.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.one:hover {
  background: url("../img/home/hochzeitsfloristik-2.jpg") no-repeat;
  background-size: cover;
}

.two {
  background-image: url("../img/home/beet-balkon.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.two:hover {
  background: url("../img/home/beet-balkon-2.jpg") no-repeat;
  background-size: cover;
}

.three {
  background-image: url("../img/home/dekorationen-accessoires.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.three:hover {
  background: url("../img/home/dekorationen-accessoires-2.jpg") no-repeat;
  background-size: cover;
}

.four {
  background-image: url("../img/home/baumschulen.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.four:hover {
  background: url("../img/home/baumschulen-2.jpg") no-repeat;
  background-size: cover;
}

.five {
  background-image: url("../img/home/stauden.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.five:hover {
  background: url("../img/home/stauden-2.jpg") no-repeat;
  background-size: cover;
}

.six {
  background-image: url("../img/home/trauerfloristik.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.six:hover {
  background: url("../img/home/trauerfloristik-2.jpg") no-repeat;
  background-size: cover;
}

.seven {
  background-image: url("../img/home/schnittblumen.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.seven:hover {
  background: url("../img/home/schnittblumen-2.jpg") no-repeat;
  background-size: cover;
}

.eight {
  background-image: url("../img/home/onlineshop.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.eight:hover {
  background: url("../img/home/onlineshop-2.jpg") no-repeat;
  background-size: cover;
}

.hinweistext {
  color: var(--gray);
  text-align: center;
  width: 100%;
  max-width: 300px;
}
@media (max-width: 576px) {
  .hinweistext {
    flex: 0 1 auto;
    width: 320px;
  }
}
@media (min-width: 577px) {
  .hinweistext {
    flex: 0 1 auto;
    max-width: 320px;
  }
}
@media (min-width: 900px) {
  .hinweistext {
    flex: 0 1 auto;
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .hinweistext {
    flex: 0 1 auto;
    max-width: 280px;
  }
}

.hinweistext span {
  font-size: 110%;
  line-height: 160%;
  color: #000000;
  font-weight: 600;
}

.bg-gelb {
  background-color: var(--gelb);
}

.bg-green {
  background-color: rgb(159, 168, 98);
  background: #9fa862;
}
.bg-green p {
  color: #000000;
}

.bg-red {
  background-color: var(--red);
}

.two-col {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.two-col a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.two-col a:hover {
  text-decoration: none;
  color: #ffffff;
}
@media (max-width: 991.99px) {
  .two-col {
    -moz-column-count: 1;
         column-count: 1;
  }
}

p .display {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: black;
  font-weight: 700;
  -moz-column-count: 1;
       column-count: 1;
}

.butn {
  background: var(--gray);
  border: 2px solid var(--gray);
  border-radius: 16px;
  font-family: Arial;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 16px 8px 16px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1.5rem;
}
.butn:hover {
  background: var(--gray);
  text-decoration: none;
  color: var(--gelb);
}

.shop {
  color: #000000;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
}
.shop div {
  padding: 1rem 0;
}

.filminfo {
  font-size: 120%;
  font-weight: 500;
  color: #000000;
  line-height: 2rem;
}

.abstand {
  margin-top: 0;
}
@media (max-width: 991.99px) {
  .abstand {
    margin-top: 1rem;
  }
}/*# sourceMappingURL=home.css.map */