.accordion {
    max-width: 100%;
}

.accordion .section {
    position: relative;
    margin: 0 20px 50px;
}

.accordion .section .section-title {
    position: relative;
    margin: 0;
    padding: 10px 50px;
    background: linear-gradient(90deg, #e75f29, #e30a19);
    color: white;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
}

.accordion .section .section-title::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font: 1.5em;
}

.accordion .section.active .section-title::before {
    content: '-';
}

.accordion .section .content {
    position: relative;
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}

/* CAROUSEL SLIDER */

.carousel-slider .owl-prev {
    left: 0 !important;
}

.carousel-slider .owl-next {
    right: 0 !important;
}