.miko-owl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.miko-owl .section-title {
    max-width: 50%;
    flex: 0 0 50%;
    padding-left: 4rem;
}

.miko-owl .owl-carousel {
    max-width: 50%;
    flex: 0 0 50%;
}

.section-title .title {
    margin-bottom: 0;
}

.miko-owl .item {
    overflow: hidden;
}

.miko-owl .item-image {
    height: 100%;
}

.miko-owl .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.miko-owl .item-image:hover img {
    transform: scale(1.05);
}

.miko-owl .item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.miko-owl .item-content .item-location,
.miko-owl .item-content .item-title {
    margin-bottom: 0;
}
.miko-owl .owl-theme .owl-nav{
    text-align: left;
}
.miko-owl .owl-theme .owl-nav button {
    width: 40px;
    height: 40px;
    padding: 6px !important;
    border-radius: 999px;
    border: 1px solid #ffffff;
    place-items: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    color: white;
    margin: 0 6px 0 0;
}

@media screen and (max-width: 823px) {
    .miko-owl .section-title {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .miko-owl .section-title {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .miko-owl .owl-carousel {
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 1rem;
    }

}