/** CSS Easing functions */ /* Bulma Utilities */
.wp-block-starter-photos-carrousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: clamp(3rem, 2.4512rem + 2.2517vw, 5.125rem);
  margin-bottom: clamp(3rem, 2.4512rem + 2.2517vw, 5.125rem);
}
.wp-block-starter-photos-carrousel .carrousel {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  width: calc(100% - clamp(2.5rem, 1.9189rem + 2.3841vw, 4.75rem) - 60px);
}
.wp-block-starter-photos-carrousel .carrousel.slick-initialized {
  opacity: 1;
}
.wp-block-starter-photos-carrousel .carrousel figure {
  padding: 1rem 0;
  -webkit-transform: scale(0.75);
       -o-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: -webkit-transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition: -o-transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95), -webkit-transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95), -o-transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.wp-block-starter-photos-carrousel .carrousel figure.slick-current {
  -webkit-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.wp-block-starter-photos-carrousel .carrousel figure figcaption {
  border-left: 2px solid white;
  padding-left: 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  display: block;
  width: 87.5%;
  margin: 1rem auto 0;
}
.wp-block-starter-photos-carrousel button.carrousel-nav {
  display: block;
  width: clamp(1.25rem, 0.9594rem + 1.1921vw, 2.375rem);
  height: auto;
  padding: 0;
  color: var(--wp--preset--color--white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.wp-block-starter-photos-carrousel button.carrousel-nav:hover {
  opacity: 1;
}
