/* owl */
.owl-carousel .item {
    text-align: center;
    padding: 20px;
    height: 600px;
    color: #ffffff;
    font-size: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.owl-carousel .item h2 {
    font-weight: bold;
}

.owl-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 95%;
    margin: auto;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    color: white !important;
    padding: 10px 15px;
    font-size: 50px !important;
    cursor: pointer;
    transition: background 0.3s ease;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* end owl */