.slider-block{
    width: 100%;
    background-color: #262626;
}
.slider-content{
    position: relative;
    width: 100%;
    height: 483px;
}
.slider-header{
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 12;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.slider-logo{
    height: 82px;
    width: 398px;
}
.slider-logo > img{
    height: 100%;
    width: 100%;
}
.slider-header-link{
    position: relative;
    margin-bottom: 10px;
    margin-left: 40px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slider-header-link-arrow{
    margin-left: 8px;
    height: 6px;
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-header-link-arrow > img{
    height: 100%;
    width: 100%;
}
.slider-header-link-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 100%;
    transform: translateX(-50%);
    padding: 12px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.62);
    border-radius: 8px;
}
.slider-header-link-menu-item{
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}
.slider-header-link-menu-item:last-child{
    margin-bottom: 0;
}
.slider-header-link-text{
    color: #FFFFFF;
    cursor: pointer;
}
.slider-controls{}
.slider-arrow{
    padding: 25px 10px;
    position: absolute;
    top: 50%;
    height: 32px;
    width: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 11;
}
.slider-arrow > img {
    height: 100%;
    width: 100%;
}
.slider-arrow-left{
    left: 20px;
}
.slider-arrow-right{
    right: 20px;
}
.slider-buttons{
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}
.slider-button-item{
    margin: 0 12px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    /*cursor: pointer;*/
}
.slider-button-item.active{
    background: rgba(255, 255, 255, 0.6);
}
.slider-items{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.slider-item{
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    z-index: 9;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 700ms ease-in-out;
}
.slider-item.right{
    transform: translateX(0);
}
.slider-item.left{
    transform: translateX(-200%)
}
.slider-item.hidden{
    opacity: 0;
}
.slider-shadow{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #000000 100%), linear-gradient(90deg, #000000 0%, rgba(52, 52, 52, 0.1) 40%);;
    z-index: 10;
}
.slider-item-text{
    position: absolute;
    left: 40px;
    bottom: 55px;
    width: 80%;
    z-index: 11;
}
.slider-img{
    position: absolute;
    min-height: 100%;
    min-width: 100%;
}
.slider-item-header{
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
}
.slider-item-text-row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slider-item-label{
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149, 0, 0, 0.9);
    border-radius: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.slider-item-date{
    margin-left: 16px;
    color: #C4C4C4;
    font-size: 14px;
}
.slider-news-row{
    width: 100%;
    padding: 12px 45px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
}
.slider-news-item{
    max-width: 282px;
    display: flex;
    flex-direction: column;
}
.slider-news-img{
    width: 100%;
    height: 173px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}
.slider-news-img > img{
    /*min-height: 100%;*/
    /*min-width: 100%;*/
    width: 100%;
}
.slider-news-text{
    margin-top: 6px;
    min-height: 75px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.slider-news-title{
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}
.slider-news-info{
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slider-news-label{
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149, 0, 0, 0.9);
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.slider-news-date{
    margin-left: 12px;
    font-size: 12px;
    line-height: 14px;
    color: #C4C4C4;
}