/*
 Theme Name:   Blueprint
 Theme URI:    https://bricksbuilder.io/
 Description:  Bricks Builder Child Theme.
 Author:       Francesco Zito | Visual Designer
 Author URI:   https://francescozito.it/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

* {
  --transition: .6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* -- The root styles must go in the element of the structure with the name "Hero" (Section). --*/


.slider-section {

  /* Styles applied to all elements except the first one */
  .slider-section__avatar-wrapper:not(:first-child) {
    margin-left: -1rem;
  }

  /* Mask for slider wrapper so that the slider does not overlap the info container (container left) */
  .slider-mask-dx {
    clip-path: inset(0 -100vw -1.5em 0);
  }

  @media(max-width: 991px) {
    .slider-mask-dx {
      clip-path: none;
    }
  }

  .slider-mask-sx {
    clip-path: inset(0 0 -1.5em -100vw);
  }

  @media(max-width: 991px) {
    .slider-mask-sx {
      clip-path: none;
    }
  }

  /*.slider-section__slider-wrapper {
    clip-path: inset(0 -100vw -1.5em 0);

    @media(max-width: 991px) {
      clip-path: none;
    }*/

  /* Slider styles */
  .slider-section__slider {

    /* Styles the internal slider container so that it does not hide the cards outside its container.*/
    .splide__track {
      overflow: visible;
    }
  }
}
}