#post-slider-wrapper .post-feature {
    position: relative;
}

#post-slider-wrapper .feature-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(#00446e00, #00457085);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

#post-slider-wrapper .post-feature img {
    width: 100%;
    height: 335px;
    object-fit: cover;

}

#post-slider-wrapper .post-feature:hover .feature-overlay {
    opacity: 1;
    visibility: visible;
}

#post-slider-wrapper article.post-item {
    margin-left: 15px;
    margin-right: 15px;
}

#post-slider-wrapper .post-title {
    margin-top: 25px;
    text-align: center;
}

#post-slider-wrapper .feature-overlay a {
    position: absolute;
    top: calc(50% - 27.5px);
    left: calc(50% - 27.5px);
    text-decoration: none;
    background: #fff;
    width: 55px;
    height: 55px;
    border: 7px solid #70707040;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#post-slider-wrapper .feature-overlay a span {
    line-height: 0;
}

#post-slider-wrapper .post-title a {
    text-decoration: none;
}

#post-slider-wrapper .post-title a h3 {
    font-size: 20px;
    font-family: Raleway;
    line-height: 30px;
    font-weight: 700;
    color: #00446E;
    transition: all .5s ease;
    letter-spacing: 1.2px;

}

#post-slider-wrapper .post-title a h3:hover {
    color: #c2976b;
}

#post-slider-wrapper.post-slider button {
    position: absolute;
    top: calc(50% - 63px);
    z-index: 9;
    background: #E9E9E9;
    width: 40px;
    height: 40px;
    border-radius: 50px;
}


#post-slider-wrapper.post-slider button:focus,
#post-slider-wrapper.post-slider button:hover {
    background: #C2976B;
}

.post-slider button.slick-prev {
    left: -89px;
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-slider button.slick-prev:focus,
.post-slider button.slick-prev:hover {
    transform: rotate(-90deg);
}

.post-slider button.slick-prev::before {
    content: url('../images/arrow-wh-icon.svg');
    line-height: 0;
    opacity: 1 !important;
}

#post-slider-wrapper.post-slider button.slick-prev:focus::before,
#post-slider-wrapper.post-slider button.slick-prev:hover::before {
    content: url('../images/arrow-up-icon.svg');
}

#post-slider-wrapper.post-slider button.slick-next {
    right: -68px;
    transform: rotate(-90deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

#post-slider-wrapper.post-slider button.slick-next:focus,
#post-slider-wrapper.post-slider button.slick-next:hover {
    transform: rotate(90deg);
}

#post-slider-wrapper.post-slider button.slick-next::before {
    content: url('../images/arrow-wh-icon.svg');
    line-height: 0;
    opacity: 1 !important;
}

#post-slider-wrapper.post-slider button.slick-next:focus::before,
#post-slider-wrapper.post-slider button.slick-next:hover::before {
    content: url('../images/arrow-up-icon.svg');
}

#post-slider-wrapper.post-slider .slick-dots button {
    background: #B9A38A;
}

#post-slider-wrapper.post-slider .slick-dots button::before {
    color: #B9A38A;
    font-size: 14px;
    line-height: 22px;
}

#post-slider-wrapper.post-slider .slick-dots li.slick-active button:before {
    color: #fff;
}

#post-slider-wrapper.post-slider .slick-dots [role=presentation] button {
    background: transparent;
    width: 15px;
    height: 15px;
    border: 1px solid #464646;
    top: 30px;
}

#post-slider-wrapper.post-slider .slick-dots [role=presentation].slick-active button {
    background: #00446E;
}

#post-slider-wrapper.post-slider .slick-dots [role=presentation] button::before {
    content: '';
}

@media only screen and (max-width: 820px) {
    #post-slider-wrapper .post-feature img {
        height: 258px;
    }

    #post-slider-wrapper .post-title a h3 {
        font-size: 15px;
        font-weight: 800;
    }
}