/**
* Block Name: teaser_cards
*/

section.teaser_cards.color_light {
  background: rgba(243, 250, 239, 0.84);
}
section.teaser_cards.color_dark {
  background: rgba(0, 0, 0, 0.74);
}
section.teaser_cards.color_green {
  background: rgba(115, 198, 64, 0.64);
}
section.teaser_cards.color_light.full_color {
  background: #f3faef;
}
section.teaser_cards.color_dark.full_color {
  background: #000;
}
section.teaser_cards.color_green.full_color {
  background: #73c640;
}
section.teaser_cards .bg_wrapper {
  top: 0px;
  left: 0px;
  z-index: -2;
}

section.teaser_cards.color_dark h2 {
  color: #73c640;
}

section.teaser_cards .container:not(.swiper-container) .card_wrapper:nth-child(n + 4) {
  margin-top: 30px;
}

section.teaser_cards .teaser_card {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: border-color 0.3s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
  transition: border-color 0.3s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
  transition: border-color 0.3s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  transition: border-color 0.3s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
  -webkit-transition: border-color 0.3s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  -ms-transition: border-color 0.3s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

section.teaser_cards .teaser_card .titel_wrapper {
  min-height: 50px;
}

section.teaser_cards .teaser_card .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #000;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  transition: border-color 0.3s ease-in-out;
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  -ms-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
}

section.teaser_cards a.teaser_card:hover .icon {
  border: 1px solid #73c640;
}

section.teaser_cards .teaser_card .icon img {
  height: 100%;
  width: 100%;
  padding: 8px;
}

section.teaser_cards .teaser_card hr {
  border-top: 1px solid #e2f2d9;
  width: calc(100% + 2 * 30px);
  margin-left: -30px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

section.teaser_cards a.teaser_card:hover {
  border-color: #73c640;
  -webkit-box-shadow: 0 5px 17px -5px rgba(0, 0, 0, 0.13);
          box-shadow: 0 5px 17px -5px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

section.teaser_cards a.teaser_card:hover hr {
  border-color: #73c640;
}

/* Swiper Styles: */

section.teaser_cards .container.swiper-container .row {
  margin: 0;
}

section.teaser_cards .card_wrapper.swiper-slide {
  height: initial;
}

section.teaser_cards .swiper_nav {
  position: relative;
}
section.teaser_cards .swiper_nav::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 1.5px);
  width: 3px;
  height: 12px;
  background: #73c640;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
}

section.teaser_cards .swiper_nav:hover::after {
  transform: scaleY(2);
  -webkit-transform: scaleY(2);
  -moz-transform: scaleY(2);
  -ms-transform: scaleY(2);
  -o-transform: scaleY(2);
}

section.teaser_cards .button-prev,
section.teaser_cards .button-next {
  cursor: pointer;
}

section.teaser_cards.color_green .swiper_nav::after {
  background: #fff;
}

section.teaser_cards.color_dark .button-prev,
section.teaser_cards.color_dark .button-next {
  fill: #fff;
}

section.teaser_cards .swiper-button-disabled {
  opacity: 0.5;
}

/* Media Queries: */

@media (max-width: 767.98px) {
  section.teaser_cards .container:not(.swiper-container) .card_wrapper:nth-child(n + 2) {
    margin-top: 30px;
  }
}

@media (max-width: 1199.98px) {
  section.teaser_cards .container:not(.swiper-container) .card_wrapper:nth-child(n + 3) {
    margin-top: 30px;
  }
}
