.marquee-slider {
    padding-bottom: 25px;
}

.marquee-slider .slider .item .inner {
    position: relative;
    width: 100%;
    height: 512px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
}

.marquee-slider .slider .item .inner::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(47, 59, 64, 0.1), rgba(47, 59, 64, 0.1));
}

.marquee-slider .slider .item-content {
    position: relative;
    z-index: 1;
    max-width: 595px;
    padding: 25px 14px 14px;
    text-align: center;
    background-color: rgba(203, 84, 91, 0.9);
}

.marquee-slider .slider .item-content h4,
.marquee-slider .slider .item-content .description p {
    color: #f5f5f0;
}

.marquee-slider .slider .item-content h4 {
    letter-spacing: 1px;
}

.marquee-slider .slider .link-cont {
    padding-bottom: 20px;
}

.marquee-slider .slider .link-cont a {
    display: inline-block;
    padding: 12px 15px;
    width: 100%;
    max-width: 270px;
    font-size: 20px;
    color: #f5f5f0;
    background-color: transparent;
    border: 2px solid #f5f5f0;
    border-radius: 2px;
    transition: border-color 0.3s ease-out, color 0.3s ease-out, background-color 0.3s ease-out;
}

.marquee-slider .slider .link-cont a:hover {
    color: inherit;
    background-color: #f5f5f0;
    border: 2px solid transparent;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 1025px) {
    .marquee-slider {
        padding-bottom: 100px;
    }

    .marquee-slider .slider .item .inner {
        padding-top: 122px;
        padding-bottom: 122px;
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }

    .marquee-slider .slider .item-content {
        padding-left: 25px;
        padding-right: 25px;
    }

    .marquee-slider .slider .description {
        padding-bottom: 0;
    }
}

/* Slick dots */

.marquee-slider .slider .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: auto;
    z-index: 1;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.marquee-slider .slider .slick-dots li:not(:last-child) {
    margin-right: 8px;
}

.marquee-slider .slider .slick-dots li {
    border: 2px solid #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.marquee-slider .slider .slick-dots li button {
    font-size: 0;
    background-color: #fff;
    width: 5px;
    height: 5px;
    padding: 4px;
    border-radius: 100%;
    opacity: 0;
}

.marquee-slider .slider .slick-dots li.slick-active button {
    opacity: 1;
}

.marquee-slider .slider .slick-dots li button::before {
    content: "";
}

@media (min-width: 1025px) {
    .marquee-slider .slider .slick-dots {
        bottom: 80px;
    }
}
            