.page-wheel-slider {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
}

.page-wheel-resp {
	display: none;
	padding-top: 80px;
}

.left-side, .right-side {
    position: absolute;
    width: 50%;
    box-sizing: border-box;
    transition: all 800ms;
}

.left-side {
    top: 0;
    left: 0;
}

.right-side {
    bottom: 0;
    right: 0;
}

.page-wheel-slider .page {
    height: 100vh;
    height: 100dvh;
}

.page-wheel-resp .page {
	min-height: 100vh;
}

.left-side .page, .image-resp.page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
}

.left-side .page img, .image-resp.page img {
    width: 100%;
	max-width: 800px;
}

.right-side .page, .page-resp.page {
    display:flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 10% 15%;
    box-sizing: border-box;
	
}

.page-resp.page {
	padding: 64px 32px;
}
.page-resp.page > div, .page-resp.page > h1 {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.page-resp.page .slider-back {
	display: none;
}

.slider-back {
    width: fit-content;
    text-align: left;
    margin-bottom: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    text-decoration: none;
    cursor: pointer;
}

.slider-back span {
    background-image: url("/images/svg/StrelicaBela.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 8px;
}

.right-side .page h1, .page-resp.page h1 {
    font-size: 3rem;
    font-family: CenturyGothicBold;
}

.slider-desc {
    line-height: 1.5;
    font-size: 1.25rem;
}

.slider-link {
    font-size: 1.25rem;
    padding-top:16px;
    margin-top:16px;
    text-align: left;
    width: 100%;
}

.slider-link a {
    color: #fff;
}

.right-side .page-1, .page-wheel-resp .page-resp.page-1 {
    background-color: var(--color-blue);
}
.right-side .page-2, .page-wheel-resp .page-resp.page-2 {
    background-color: var(--color-red);
}
.right-side .page-3, .page-wheel-resp .page-resp.page-3 {
    background-color: var(--color-purple);
}
.right-side .page-4, .page-wheel-resp .page-resp.page-4 {
    background-color: var(--color-orange);
}
.right-side .page-5, .page-wheel-resp .page-resp.page-5 {
    background-color: var(--color-green);
}

.slider-navigator-wrapper {
    position: absolute;
    width: 30%;
    bottom: 7%;
    right: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.slider-navigator-body {
    height: 2px;
    background-color: #fff8;
    width: calc(100% - 64px);
    position: relative;
}

.nav-slider
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
    transition: left 800ms;
}

@media screen and (max-height: 880px) {
	.right-side .page h1 {
		font-size: 2rem;
	}
	.slider-desc {
		font-size: 1.125rem;
	}
}

@media screen and (max-width: 1200px), screen and (max-height: 720px) {
	.page-wheel-slider {
		display: none;
	}

	.page-wheel-resp {
		display: block;
	}
}

@media only screen and (max-width: 800px), screen and (max-height: 720px) {
	.page-resp.page h1 {
		font-size: 2.5rem;
	}
	.slider-desc {
		font-size: 1.125rem;
	}
}

@media only screen and (max-width: 480px), screen and (max-height: 720px) {
	.page-resp.page h1 {
		font-size: 2rem;
	}
}