div.image-slider {
    position: relative;
    width: 100%;
    height: 860px;
    margin: 100px 0px 100px 0px;
}
div.image-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
div.image-slider .img.foreground-image {
    width: 50%;
}
div.image-slider .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.image-slider .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 860px;
    background: #361B0E;
}
div.image-slider .slider::-moz-range-thumb {
    width: 1px;
    height: 860px;
    background: #361B0E;
}
div.image-slider .slider-button {
    pointer-events: none;
    position: absolute;
    width: 75px;
    height: 75px;
	border-radius: 50%;
    background-color: #361B0E;
    left: calc(50%);
    top: calc(50%);
    display: flex;
    justify-content: center;
    align-items: center;
	transform: translateX(-45px);
}
div.image-slider .slider-button:after {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}
div.image-slider .slider-button:before {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

div.image-slider .hint {
	position: absolute;
	border-radius: 21px;
	border: 1px solid #361B0E;
	padding: 17px 23px;
	color: #361B0E;
	top: 44px;
	right: 44px;
	letter-spacing: 0.53px;
	line-height: 25px;
	font-size: 15px;
	max-width: 243px;
}

@media (max-width: 778px) {
	div.image-slider .hint {
		display: none;
	}
}