/* customer css */	
.header-slider img.header-slider__img--mobile {
    width: 100%;
	height: auto;
	display: none;
}

.header-slider img.header-slider__img--desktop {
    width: 100%;
	max-width: 1920px;
	height: auto;
	margin: 0 auto;
	display: block;
}

@media(max-width:480px) {
    .header-slider img.header-slider__img--mobile {
        display: block;
    }

    .header-slider img.header-slider__img--desktop {
        display: none;
    }
}

#header .header-slider__shadow {
    background: unset;
}

.video-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-direction: row;
    padding: 0 15px;
}

.video-item {
    position: relative;
    padding: 0 0 330px 0;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 585px;
}

.video-item iframe, .video-item object, .video-item embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(max-width:800px) {
    .video-wrap {
        flex-direction: column;
    }
    .video-item{
        padding: 0 0 56.25% 0;
    }
}
.banner-slider__item{
    background-color: #232c35;
}