/* owlcarousel */

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 0.5) !important;
    margin: 0px;
    border-radius: 100px;
    padding: 0px 18px !important;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: #ebeaeab8 !important;
}

.owl-nav .owl-prev span,
.owl-nav .owl-next span {
    font-size: 30px;
    color: white;
}

.slide {
    height: 230px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabs li:hover {
    background-color: var(--color-main);
    color: var(--color-white);
}

.articles {
    padding: 20px 0px;
    box-shadow: 0px 1px 7px 0px rgba(221, 213, 213, 0.17);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.articles .article {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--color-white);
    padding: 12px;
}

.articles .article img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.articles .article p {
    padding: 15px 5px;
}

@media (min-width: 640px) {
    .slide {
        height: 400px;
    }
}