.promo {
    overflow: hidden;
    padding-top: 55px;
    position: relative;
    height: 620px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider {
   /* display: none;    */
}


.slider_button {
    /*display: flex;*/
	 display: none;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: absolute;
    z-index: 2;
    color: lightgrey;
    transition: opacity .5s;
    /* cursor: pointer; */
    border: 2px solid lightgrey;
}

.slider_button--enabled {
    background-color: white;
    border: 2px solid #45C8D0;
    color: #45C8D0;
    cursor: pointer;
}

.slider_button--enabled:hover {
    background-color: #45C8D0;
    color: white;
}

.slider_button--prev {
    left: calc(50% - 640px);
    bottom: 100px;
    transform: rotate(180deg);
}

.slider_button--next {
    left: calc(50% - 565px);
    bottom: 100px;
}

.slider_button--invisible {
    display: none;
}

.slider_list {
    display: flex;
    justify-content: end;
    position: absolute;
    left: 0;
    transition: left .4s;
}

.slider_item {
    position: relative;
    display: flex;
    width: 100vw;
    height: 610px;
    background-position: center;
    background-size: cover;
}

.item_title_wrapper {
    /* position: absolute; */
    padding-left: calc(50% - 640px);
}

.slider_item_title {
    display: inline-block;
    margin-top: 50px;
    padding: 9px 5px;
    text-transform: uppercase;
    font-size: 44px;
    font-weight: 600;
    background-color: #1D1D1D;
    color: #FFFFFF;
    line-height: 68px;
}

.slider_item_tagline {
    font-size: 44px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 14px;
    max-width: 595px;
  
}

.image_wrapper {
    flex-grow: 1;
    background-image: url(../image/slider/backgr.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 673px;
	background-position: 0, 50% 40px;
}

@media (max-width: 1324px) {
    .promo {
        width: 100%;
    }

    .slider_button--prev {
        left: 22px;
        bottom: 0;
        transform: rotate(180deg);
    }

    .slider_button--next {
        left: 102px;
        bottom: 0;
    }

}

@media (max-width: 1324px) {
    .item_title_wrapper {
        padding: 0 22px;
    }

}

@media (max-width: 1000px) {
    .promo {
        height: calc(100vw *2 + 50px);
    }

    .slider_item {
        flex-direction: column-reverse;
        width: 100vw;
        height: calc(100vw *2 - 44px);
        padding-right: 44px;
        box-sizing: border-box;
    }

    .item_title_wrapper {
        flex-grow: 20;
        padding: 0;
    }

    .slider_item_title {
        box-sizing: border-box;
        font-size: 44px;
        line-height: 50px;
    }

    .slider_item_tagline {
        font-size: 39px;
        line-height: 55px;
    }

    /*.image_wrapper {
        flex-grow: 0;
        flex-shrink: 0;
        height: calc(100vw - 44px);
        max-height: calc(100vw - 44px);
        background-size: auto 100%, 100% auto;
        background-position: 50%, 50%;
    }*/
	
	.image_wrapper {
    flex-grow: 0;
    flex-shrink: 0;
    height: calc(100vw - 44px);
    max-height: calc(100vw - 120px);
    background-size: auto 100%, 100% auto;
    background-position: 0%, 50%;
	}

    .slider_button--prev {
        left: 0;
        bottom: 0;
        transform: rotate(180deg);
    }

    .slider_button--next {
        left: 80px;
        bottom: 0;
    }


}


@media (min-width: 350px) and (max-width: 600px) {
.slider_item_tagline {
    font-size: 36px;
    line-height: 55px;
}
.promo {
    height: calc(100vw* 2 + 10px);
}
}	

@media (min-width: 320px) and (max-width: 349px) {
.slider_item_tagline {
    font-size: 30px;
    line-height: 50px;
}
.promo {
    height: calc(100vw* 2 + 10px);
}
}	