.pest-splide {
    width: 100%;
}


.pest-item {
    min-height: 210px;
    border-radius: var(--radius--sm);
    border-width: 1px;
    border-color: #dddddd;
    background: #ffffff;
    border-style: solid;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
    transition: 0.3s all ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    height: 100%;

    &:hover {
        transform: translateY(-5px) scale(1.03);
        border-color: var(--green);
        box-shadow: #00000029 0px 4px 8px;

        & .pest-item--image {
            border-color: #22c55e36;
        }
    }

}

.bg-off-white {
    background: #f7f5ef;
}


.pest-item--image {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: center;

    & img {
        width: 70%;
        height: auto;

    }

    &.pest-item--image--tall img {
        height: 70%;
        width: auto;
    }
}

.pest-splide .splide__slide {
    padding: 8px;
}

.pest-splide .splide__arrow {
    background: #002a5c;
    opacity: 1;
    color: #ffffff;
}

.pest-splide .splide__arrow svg {
    width: 60%;
    height: auto;
}

.pest-splide .splide__pagination {
    bottom: -1.6em;
}

button.splide__arrow.splide__arrow--prev {
    transform: rotate(180deg) translateY(20px);
}

.splide__arrow {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    transform: translateY(-20px);
}

@media (max-width:668px) {
    .splide__arrow {
        height: 30px;
        width: 30px;
    }

    button.splide__arrow.splide__arrow--prev {
        left: 0px;
    }

    button.splide__arrow.splide__arrow--next {
        right: 0px;
    }
}