/*!
Theme Name: Yoakum 
Author: Eisenberg Inc.
Version: 1.0.0
*/

.full-width-content-slider {
    width: 100%;
    position: relative;
    padding-bottom: var( --standard-padding);
}

.slider-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 500px; /* Set a consistent height */
}

.slider-content {
    display: flex;
    width: 100%;
    height: 100%; /* Ensure it matches the height of the slider-item */
}

.slider-text-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    height: 100%; /* Ensure it matches the height of the slider-item */
}

.slider-text {
    max-width: 647px;
    padding: 20px;
    box-sizing: border-box;
    /* Remove flex properties */
    height: 100%; /* Ensure it matches the height of the slider-item */
    display: block; /* Ensure content is block-level */
    padding-top: 10%;
}

.slider-text h2 {
    font-size: 3.25rem;
    color: var(--accent-lb);
}

.slider-text ul {
    padding-left: 0;
    margin: 0 0 1.5em 2em;
}

.slider-text a:hover {
    color: #fff;
    background-color: var(--orange);
}

.slider-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 100%; /* Ensure it matches the height of the slider-item */
    width: 100%; /* Ensure it takes the full width of the column */
    background-repeat: no-repeat; /* Ensure the background image does not repeat */
}

.slider-button {
    display: inline-block; /* Ensure the button is inline-block */
    padding: 10px 20px;
    background-color: var(--accent-lb);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.slider-button:hover {
    background-color: var(--accent-db);
}

.slick-prev,
.slick-next {
    background-color: rgba(112,112,112,0.5);
    color: white;
    border: none;
    padding: 10px;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
}

.slick-prev i,
.slick-next i {
    font-size: 37px;
}


.slick-prev {
    left: 10% !important;
}

.slick-next {
    right: 10% !important;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(112,112,112,1);
    color: #fff;
}

.slick-prev:focus, .slick-next:focus {
    color: #fff;
    outline: none;
    background: rgba(112,112,112,1);
}

.slick-dots {
    text-align: center;
    margin-top: 20px; /* Adjust as needed */
    bottom: 0;
    position: relative;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px; /* Adjust spacing between dots */
}

.slick-dots li button {
    width: 15px; /* Adjust dot size */
    height: 15px; /* Adjust dot size */
    border-radius: 50%;
    background: var(--accent-lb); /* Dot color */
    border: none;
    padding: 0;
    position: relative;
    outline: none;
    cursor: pointer;
}

/* Remove the default button styling */
.slick-dots li button::before {
    content: none;
}

.slick-dots li.slick-active button {
    background: var(--accent-db); /* Active dot color */
}

.slick-dots li.slick-active button::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px; /* Adjust outer circle size */
    height: 25px; /* Adjust outer circle size */
    border: 2px solid var(--accent-db); /* Outer circle color */
    border-radius: 50%;
    box-sizing: border-box;
}



@media (max-width: 1830px) { 

    .slick-prev {
        left: 5% !important;
    }

    .slick-next {
        right: 5% !important;
    }
}

@media (max-width: 1600px) { 

    .slick-prev {
        left: 0 !important;
    }

    .slick-next {
        right: 0 !important;
    }
}


@media (max-width: 1430px) { 

    .slider-text {
        padding-left: 40px;
    }

    .slick-prev,
    .slick-next {
        width: 35px;
        height: 35px;
        top: 40%;
    }

    .slick-prev i,
    .slick-next i {
        font-size: 15px;
    }

}


/* Media query for 992px and below */
@media (max-width: 992px) {
    .slider-item {
        flex-direction: column;
        height: auto;
    }
    .slider-text-wrapper {
        justify-content: center;
        height: auto;
    }
    .slider-text {
        max-width: 100%;
        height: auto;
    }
    .slider-image {
        display: none;
    }
}
