.wtwe-category-trip-wrapper.slick-slider{
    display: flex;
    justify-content: center;
    align-items: center;
}

.wtwe-category-trip-wrapper.slick-slider .slick-prev,
.wtwe-category-trip-wrapper.slick-slider .slick-next{
    position: relative;
}

.wtwe-category-trip-wrapper.slick-slider .slick-prev {
    left: 0;
}

.wtwe-category-trip-wrapper.slick-slider .slick-next {
    right: 0;
}

.wtwe-category-trip-wrapper .slick-list .slick-track {
    display: flex;
    gap: 20px;
}

.wtwe-category-trip-wrapper .wtwe-category-trip {
    position: relative;
    width: 300px;
    border-radius: 20px;
    height: 250px;
    overflow: hidden;
    transition: ease-in-out .25s box-shadow;
}

.wtwe-category-trip-wrapper .wtwe-category-trip .wtwe-trip-image-container {
    height: 100%;
}

.wtwe-category-trip-wrapper .wtwe-category-trip:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.wtwe-category-trip-wrapper .wtwe-category-trip:hover .wtwe-trip-image-container img {
    scale: 1.2;
    filter: blur(2px);
}

.wtwe-category-trip-wrapper .wtwe-category-trip:hover .wtwe-trip-content {
    padding-top: 100px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    transition: all ease-in-out 0.25s;
}

.wtwe-category-trip-wrapper .wtwe-category-trip:hover .wtwe-trip-overlay {
    opacity: 1;
    transform: translateY(-110px);
    transition: all ease-in-out .25s;
    transition-delay: 100ms;
}

.wtwe-category-trip-wrapper .wtwe-category-trip .wtwe-trip-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: ease-in 0.25s all;
}

.wtwe-category-trip-wrapper .wtwe-category-trip .wtwe-trip-overlay {
    position: absolute;
    z-index: 10;
    opacity: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: translateY(50px);
    transition: all ease-in-out .25s;
}

.wtwe-category-trip .wtwe-trip-content {
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    bottom: 0;
    width: 100%;
    transition: ease-in-out .25s padding;
}

.wtwe-category-trip .wtwe-trip-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    color: white;
}

.wtwe-category-trip .wtwe-trip-content .wtwe-trip-info .wtwe-trip-attr {
    font-size: 13px;
}