.features-wrapper {
    background-color: var(--main-color);
    padding-bottom: 6.25rem;
}

.features-wrapper .features-content {
    display: flex;
    gap: 1.5625rem;
}

.features-wrapper .features-item {
    padding: 2.5rem 1.125rem 2rem;
    
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-color: #FFF;
    box-shadow: 0 4px 4px 0 rgba(174, 174, 174, 0.25);

    display: flex;
    flex-direction: column;
    align-items: center;
    
    max-width: 16.875rem;
    box-sizing: border-box;
}

.features-wrapper .features-item .features-image {
    margin-bottom: 1.5625rem;
}

.features-wrapper .features-item .features-image img {
    max-width: 5rem;
    max-height: 5rem;
}

.features-wrapper .features-item .features-title {
    margin-bottom: 0.9375rem;

    color: var(--main-color);
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.875rem;
    text-align: center;
}

.features-wrapper .features-item .features-description {

    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
    text-align: center;
}

.features-wrapper .slick-controls {
    display: none;
}

@media (max-width: 1160px) {
    .features-wrapper .slick-slide .features-item {
        width: 16.875rem !important;
        display: flex !important;
        min-height: 20.5625rem;
    }

    .features-wrapper .slick-slide > div {
        display: flex;
        justify-content: center;
    }

    .features-wrapper .slick-track:before,
    .features-wrapper .slick-track:after {
        content: unset;
    }

    .features-wrapper .slick-controls .arrow-right,
    .features-wrapper .slick-controls .arrow-left {
        display: flex;
        justify-content: center;
        align-items: center;

        height: 2.5rem;
        width: 2.5rem;
        background-color: #fff;
        border-radius: 1000%;
        padding: 0.625rem;
        box-sizing: border-box;
        box-shadow: 0 4px 4px 0 rgba(174, 174, 174, 0.25);
        border: solid 1px transparent;
    }

    .features-wrapper .slick-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .features-wrapper .slick-controls .arrow-left span {
        content: url(../images/chevron.svg);
        transform: rotate(180deg);
    }

    .features-wrapper .slick-controls .arrow-right span {
        content: url(../images/chevron.svg);
    }
    

    .features-wrapper .slick-controls .arrow-right:hover,
    .features-wrapper .slick-controls .arrow-left:hover{
        border: solid 1px var(--castanho);
        background-color: var(--castanho);
    }

    .features-wrapper .slick-controls .slick-dots {
        position: initial !important;
        display: flex;
        gap: 0.625rem;
        justify-content: center;
        align-items: center;
    }

    .features-wrapper .slick-controls .slick-dots li {
        margin: 0;
        padding: 0;
        height: 0.75rem;
        width: 0.75rem;
    }

    .features-wrapper .slick-controls .slick-dots li button {
        padding: 0;
        height: 100%;
        width: 100%;
        border-radius: 1000%;
        background-color: #828282;
    }

    .features-wrapper .slick-controls .slick-dots li button::before {
        content: unset;
    }

    .features-wrapper .slick-controls .slick-dots li.slick-active {
        height: 1rem;
        width: 1rem;
    }

    .features-wrapper .slick-controls .slick-dots li.slick-active button {
        background-color: #50A7FE;
    }

    .features-wrapper {
        padding-bottom: 3.75rem;
    }
}