.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-overlay{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000052;
}

.slide-overlay h3{
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 42px;
    margin: 8px 0;
}

.slide-overlay p{
    color: #fff;
    padding: 0 5% 28px 5%;
    text-align: center;
}

.slider-expand{
    position: absolute;
    height: 40px;
    bottom: -41px;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    border: 1px solid #e9e9e9;
    border-radius: 0 0 4px 4px;
    border-top: none;
    font-size: 14px;
    padding: 0 48px;
}

.slider-expand a{
    color: #3e77aa;
    text-decoration: none;
}

.slider-expand span{
    color: #a6a5a5;
}

.slider-expand a:hover{
    color: #f84147;
}

.slide_viewer {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slide_group {
    height: 100%;
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 0;
}

.slide-content{
    height: 96%;
    width: 96%;
    z-index: 1;
    position: relative;
    color: #fff;
    padding: 0 100px;
    box-sizing: border-box;
}

.slide h3{
    color: #ff5100;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 62px;
    margin: 8px 0;

}

.slide .slide-date{
    color: #e9e9e9;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 56px;
    margin: 8px 0;
}

.slide .slide-description{
    padding-right: 10%;
}

.slider .slide .slide-content .slide-options{
    margin-top: 28px;
}

.slider .slide .slide-content .slide-options .slide-option a{
    background-color: #ff5100;
    color: #fff;
    transition: 0.3s;
    padding: 6px 15px;
    border-radius: 4px;
}

.slider .slide .slide-content .slide-options .slide-option a:hover{
    background-color: #ff5100;
    color: #fff;
    transform: scale(1.1);
}

.slide:first-child {
    display: flex;
}

.slide_buttons {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    bottom: -5px;
}

a.slide_btn {
    color: #474544;
    font-size: 42px;
    margin: 0 0.175em;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
    color: #428CC6;
    cursor: pointer;
}

.directional_nav {
    /* height: 340px; */
    margin: 0 auto;
    max-width: 90vw;
    position: relative;
    top: -300px;
    z-index: 5;
}

.previous_btn {
    bottom: 0;
    left: 20px;
    margin: auto;
    position: absolute;
    top: 0;
}

.next_btn {
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
}

.previous_btn, .next_btn {
    cursor: pointer;
    height: 65px;
    opacity: 0.5;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    width: 65px;
}

.previous_btn:hover, .next_btn:hover {
    opacity: 1;
}
