/**********
Slider Styling
***********/

.home-slider {
    height: 680px;
    width: 100%;
    position: relative;
    margin-top: 0 !important;
}

.home-slider .slick-dots {
    position: absolute;
    bottom: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 50%;
    transform: translateX(-50%);
}

.home-slider .slick-dots li {
    float: left;
    margin-left: 4px;
}

.home-slider .slick-dots button {
    color: transparent;
    background: transparent;
    border: 3px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    padding: 0;
}

.home-slider .slick-dots .slick-active button {
    background: #fff;
}

.home-slider a {
    text-decoration: none;
}

.home-slider-item {
    height: 680px;
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

/**********
Basic Teaser Styling
***********/
.home-slider-content {
    background: rgba(175, 181, 132, 0.7);
    font-family: "Karla", sans-serif;
    position: absolute;
    z-index: 2;
    max-width: 516px;
    max-height: 516px;
    width: 100%;
    aspect-ratio: 1 / 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 50%;
    --offset: 50px;
    left: var(--offset);
    transform: translateY(-50%);
}

.home-slider-title {
    font-size: 40px;
    font-weight: 600;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
}

.home-slider-title span {
    line-height: 0.8;
}

.home-slider-title span.black {
    color: #000;
}

.home-slider-text {
    font-size: 40px;
    z-index: 2;
    line-height: 1;
    font-style: italic;
    color: #fff !important;
    text-decoration: none;
    width: 100%;
    padding: 20px 0;
}

.home-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}


.home-slider-title,
.home-slider-text,
a .home-slider-title,
a .home-slider-text {
    color: #000000;
}

.home-slider-item {
    background: rgba(175, 181, 132, 1);
}

@media (max-width: 768px) {
    .home-slider-content {
        position: static;
        max-width: 140%;
        width: 140%;
        background: rgba(175, 181, 132, 1);
        transform: translate(-15%, 0) scale(0.65);
    }
    .home-slider-content {
        height: 330px;
    }
    .home-slider-image {
        max-height: 350px;
    }

    .home-slider-title {
        padding-top: 0;
    }

    .home-slider-text {
        padding-bottom: 0;
    }

    .home-slider-image {
        position: relative;
    }

    .home-slider .slick-dots button {
        width: 15px;
        height: 15px;
    }
    .home-slider .slick-dots {
        left: 15px;
        bottom: auto;
        transform: translateY(-50%);
        top: 175px;
    }
    .home-slider .slick-dots li {
        float: none;
    }
}