/* ===== STYLE 5 ===== */
.style-5{
  position:relative;
  width:100%;
  min-height:450px;
  background-size:cover;
  background-position:center;
  border-radius:40px;
  margin-bottom:40px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.style-5::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.style-5 .content-box{
  position:relative;
  z-index:2;
  padding:60px;
  max-width:600px;
  color:white;
}

.style-5.reverse{
  justify-content:flex-end;
}

.style-5.reverse .content-box{
  text-align:right;
}

.style-5 .btn {
  background: #7d2ae8;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(125, 42, 232, 0.4);
}