.container1 {
    width: unset;
    margin: 0 auto;
}

span {
    width: 40%
}

.container1 h1 {
    width: 50%;
    text-align: left;
    color: #E39B3A;
    font-family: 'Bree Serif', serif;
    text-align: left;
}

.container1 p {
    color: white;
    width: 40%;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.carousel-item1 > div {
    height: 550px;
    text-align: center;
    color: #fff;
    padding: 100px 100px;
}

.item-1 {
    background-image: url("../img/eventos-slide-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.item-2 {
    background-image: url("../img/eventos-slide-2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.item-3 {
    background-image: url("../img/eventos-slide-3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Carousel */

.carousel1 {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-container1 {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 500%;
    transition: transform 0.3s cubic-bezier(.694, .0482, .335, 1);
}

.carousel-item1 {
    position: relative;
    float: left;
    width: 20%;
}

/* Next / Prev Buttons */

.carousel-prev1,
.carousel-next1 {
    position: absolute;
    top: 50%;
    opacity: 0.7;
    border-radius: 50%;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.carousel-prev1 {
    left: 2%;
    padding-right: 3px;
}

.carousel-prev1::before {
    content: '\f053';
    font-family: "FontAwesome";
}

.carousel-next1 {
    right: 2%;
    padding-left: 3px;
}

.carousel-next1::before {
    content: '\f054';
    font-family: "FontAwesome";
}

.carousel-prev1:hover,
.carousel-next1:hover {
    opacity: 1;
}

/* Pagination */

.carousel-pagination1 {
    list-style: none;
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    width: 20%;
    padding: 0;
/*    margin: 0 auto;*/
    text-align: center;
    z-index: 10;
}

.carousel-bullet1 {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    cursor: pointer;
    margin: 0 7px;
    border-radius: 50%;
    opacity: 0.5;
    transition-property: transform, opacity, background-color;
    transition-duration: 0.3s;
}

.carousel-bullet1:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.carousel-bullet1.active-bullet, 
.carousel-bullet1.active-bullet:hover {
    opacity: 1;
    background-color: #fff;
    cursor: default;
}

@media (max-width: 768px) {
    .container1 h1 {
        font-size: 18px;
        width: 80%;
    }
    
    .container1 p {
        width: 80%;
        font-size: 14px;
    }
    
    .carousel-item1 > div {
        height: 400px;
        padding: 50px 70px;
    }
    
}

@media (max-width: 576px) {
    .carousel-pagination1 {
        width: 45%;
    }

}
