/* BLOC ACTIONS */
.actions {
  background-color: #2fa59b;
  position: relative;
  overflow: hidden;
  margin-top: -120px;
}

@media screen and (min-width: 1025px) {
  .actions {
    margin-top: -130px;
  }
}

.actions .diagonale {
  background-color: white;
  transform: rotate(7deg);
  width: 110%;
  height: 200px;
  position: absolute;
  top: -201px;
  left: 50%;
  transform: translateX(-50%);
  rotate: 355deg;
}

@media screen and (min-width: 1025px) {
  .actions .diagonale {
    rotate: 357deg;
  }
}

.actions--container {
  padding: 189px 0 64px;
}

.actions--header {
  color: white;
  margin-bottom: 24px;
}

@media screen and (min-width: 1025px) {
  .actions--header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
  }
}

.actions h2 {
  font-size: 1.75rem;
  line-height: 34px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1025px) {
  .actions h2 {
    font-size: 3rem;
  }
}

.actions--item-img {
  height: 182px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .actions--item-img {
    height: 250px;
  }
}

.actions--item-img::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(100.01deg, #be2577 0.78%, #dc0955 97.37%);
  opacity: 0;
  transition: opacity 0.6s;
  position: absolute;
  left: 0;
  top: 0;
}

.actions--item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s;
}

.actions--item-content {
  background-color: #ffffff;
  padding: 24px;
  height: 250px;
  display: flex;
  flex-direction: column;
}

.actions--item-content .btn {
  margin-top: auto;
}

.actions--item-content p {
  font-size: 0.875rem;
  line-height: 22px;
}

.actions--item-content h3 {
  font-size: 1.375rem;
  line-height: 26px;
  margin-bottom: 8px;
}

.actions--item {
  overflow: hidden;
  border-radius: 16px;
}

.actions--item:hover img {
  transform: scale(1.02);
  transition: transform 0.6s;
}

.actions--item:hover .actions--item-img::before {
  opacity: 0.3;
  z-index: 1;
  transition: opacity 0.6s;
}

.actions--item:hover .btn span {
  transform: translateX(8px);
}

.actions .owl-stage-outer {
  margin: 0 -16px;
}

.actions .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.actions .owl-nav button {
  position: relative;
  height: 44px;
  width: 44px;
  border: 1px solid #ffffff !important;
  border-radius: 16px;
}

@media screen and (min-width: 1025px) {
  .actions .owl-nav button {
    width: 52px;
    height: 52px;
  }
}

.actions .owl-nav button::before {
  content: "";
  display: block;
  -webkit-mask: url("../images/chevron-right.svg");
  mask: url("../images/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  z-index: 9;
  background: #ffffff;
  height: 100%;
  width: 100%;
}

.actions .owl-nav button.owl-prev::before {
  transform: rotate(180deg);
}

.actions .owl-nav button:hover {
  background: #ffffff;
  transition: all 0.3s;
}

.actions .owl-nav button:hover::before {
  background: #2fa59b;
  transition: all 0.3s;
}

/* FIN BLOC ACTIONS */