.slick-slider-projects.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slide-project {
    width: 870px;
    height: 490px;
    margin-right: 20px;
}

.slide-project a {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 490px;
    width: 870px;
    position: relative;
}

.slide-project h2 {
    font-size: 28px;
    position: absolute;
    bottom: 50px;
    left: 20px;
    color: white;
    display: none;
}

.slide-project span {
    font-size: 16px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    display: none;
}

.slider-buttons-projects {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

.slider-buttons-projects .slick-arrow {
    width: 45px;
    height: 45px;
    top: 0;
    transform: none;
    -webkit-transform: none;
    background-image: var(--chevrone-next);
    background-repeat: no-repeat;
    background-position: center;
    border: 0;
    border-radius: 50%;
    background-color: #F3F3F3;
    cursor: pointer;
}

.slider-buttons-projects .slick-arrow-prev {
    left: 0;
    transform: rotate(180deg);
}

.slider-buttons-projects .slick-arrow-next {
    right: 0;
    order: 3;
}

.slider-dots-projects .slick-new-dots {
    background-color: #F3F3F3;
    height: 8px;
    border-radius: 50px;
    display: none !important;
    align-items: center;
    padding: 0;
    list-style: none;
    margin-top: 30px;
    justify-content: center;
}

.slider-dots-projects .slick-new-dots li {
    background-color: #C8C8C8;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
}

.slider-dots-projects .slick-new-dots li.slick-active {
    background-color: #FF4800;
}

.slider-dots-projects .slick-new-dots li button {
    display: none;
}

@media (max-width: 780px) {
    .slider-buttons-projects {
        display: none;
    }

    .slide-project {
        width: calc(100vw - 40px);
        aspect-ratio: 16 / 9;
        margin-right: 5px;
    }

    .slide-project a {
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        height: 100%;
        width: 100%;
        position: relative;
    }

    .slide-project h2 {
        font-size: 20px;
        bottom: 46px;
    }

    .slide-project span {
        font-size: 12px;
    }

    .slider-dots-projects .slick-new-dots {
        display: flex !important;
    }

    .block-header h2 {
        font-size: 30px;
    }
}