.border_radius {
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.mixin-colore-sfondo.sfondo-rosa {
  background-color: #F5EDE7;
}
.mixin-colore-sfondo.sfondo-azzurro {
  background-color: #EDF4F9;
}
.mixin-colore-sfondo.sfondo-acquamarina {
  background-color: #E9F4F4;
}
.mixin-colore-sfondo.sfondo-beige {
  background-color: #EEEBE3;
}
.mixin-colore-sfondo.sfondo-grigio_chiaro {
  background-color: #F8F9FA;
}
.mixin-colore-sfondo.sfondo-grigio_scuro {
  background-color: #51575E;
}
.mixin-colore-sfondo.sfondo-grigio_scuro .title-component,
.mixin-colore-sfondo.sfondo-grigio_scuro p,
.mixin-colore-sfondo.sfondo-grigio_scuro h1,
.mixin-colore-sfondo.sfondo-grigio_scuro h2,
.mixin-colore-sfondo.sfondo-grigio_scuro h3,
.mixin-colore-sfondo.sfondo-grigio_scuro h4,
.mixin-colore-sfondo.sfondo-grigio_scuro h5,
.mixin-colore-sfondo.sfondo-grigio_scuro h6 {
  color: white;
}
.mixin-colore-sfondo.sfondo-grigio_scuro .swiper-button-next,
.mixin-colore-sfondo.sfondo-grigio_scuro .swiper-button-prev {
  background-color: white;
}
.gallery {
  padding-top: 20px;
}
.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}
.gallery .swiper-gallery {
  --h: 260px;
  height: var(--h);
  overflow: hidden;
}
.gallery .swiper-gallery .swiper-wrapper {
  align-items: center;
}
.gallery .swiper-gallery .swiper-slide {
  width: auto;
}
.gallery .swiper-gallery img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .gallery .swiper-gallery {
    --h: 180px;
  }
}
@media (min-width: 1200px) {
  .gallery .swiper-gallery {
    --h: 320px;
  }
}
.gallery .swiper-gallery-button-prev {
  background-image: url(../../img/landing-pages/landing-business-talk/arrow-slider.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 992px) {
  .gallery .swiper-gallery-button-prev {
    left: 100px;
  }
}
.gallery .swiper-gallery-button-next {
  background-image: url(../../img/landing-pages/landing-business-talk/arrow-slider.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 992px) {
  .gallery .swiper-gallery-button-next {
    right: 100px;
  }
}
