/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-carousel {
  margin: 6rem 0;
}
.block-carousel__heading {
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 600;
  color: var(--wp--preset--color--blue-grey);
  margin-bottom: 4rem;
}
.block-carousel__slider {
  width: 100%;
  overflow: hidden;
  padding-right: 1px;
}
@media (min-width: 1025px) {
  .block-carousel__slider {
    padding-right: 0;
    padding-left: 1px;
  }
}
.block-carousel__slider > .swiper-wrapper {
  margin-bottom: 4rem;
}
.block-carousel__slider > .swiper-wrapper > * {
  border: 1px solid var(--wp--preset--color--blue-grey);
  border-radius: 10px;
  height: auto;
  background: #FFF;
  width: 100%;
  padding: 2rem 2rem 0;
  position: relative;
}
.block-carousel__slider > .swiper-wrapper > * p {
  color: var(--wp--preset--color--secondary);
  font-weight: 700;
}
.block-carousel__slider > .swiper-wrapper > *.headertext {
  text-align: center;
  background: var(--wp--preset--color--off-white);
}
.block-carousel__slider > .swiper-wrapper > *.headertext header {
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1025px) {
  .block-carousel__slider > .swiper-wrapper > *.headertext header {
    min-height: 8rem;
  }
}
.block-carousel__slider > .swiper-wrapper > *.headertext header h4 {
  color: var(--wp--preset--color--biege);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--wp--preset--font-size--size-26);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1441px) {
  .block-carousel__slider > .swiper-wrapper > *.headertext header h4 {
    font-size: var(--wp--preset--font-size--size-36);
  }
}
.block-carousel__slider > .swiper-wrapper > *.headertext p {
  color: var(--wp--preset--color--blue-grey);
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-carousel__slider > .swiper-wrapper > *.download {
  background: var(--wp--preset--color--off-white);
}
.block-carousel__slider > .swiper-wrapper > *.download p {
  text-align: center;
}
.block-carousel__slider > .swiper-wrapper > *.download .block-carousel__download {
  width: 5.6rem;
  margin: 3rem auto;
}
.block-carousel__slider > .swiper-wrapper > a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-carousel__slider > .swiper-wrapper > a > * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-carousel__slider > .swiper-wrapper > a:hover {
  background-color: rgba(172, 146, 138, 0.1);
  border-color: var(--wp--preset--color--biege);
  text-decoration: none;
}
.block-carousel__slider > .swiper-wrapper > a:hover > * {
  transform: scale(1.05);
}
.block-carousel__pagination {
  display: flex;
  gap: 2rem;
  width: 100%;
}
.block-carousel__pagination > .swiper-pagination-bullet {
  width: 6rem;
  height: 1rem;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  opacity: 1;
}
.block-carousel__pagination > .swiper-pagination-bullet:after {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  background-color: var(--wp--preset--color--blue-grey);
  margin-top: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-carousel__pagination > .swiper-pagination-bullet-active:after, .block-carousel__pagination > .swiper-pagination-bullet:hover:after {
  height: 3px;
  margin-top: 0px;
}
.block-carousel__pagination > .swiper-pagination-bullet:hover:after {
  background-color: var(--wp--preset--color--biege);
}
.block-carousel.aligncenter .block-carousel__heading {
  text-align: center;
}
.block-carousel.aligncenter .block-carousel__pagination {
  justify-content: center;
}
