/* USER VARIABLES SECTION */

:root {
    --index: calc(1vw + 1vh);
	--accent: #CC8869;
	--text: #333;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: roboto-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--padding: 120px;
	--transition: cubic-bezier(.4, 0, 0, 1);
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src:
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-regular-webfont.woff2") format("woff2"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-regular-webfont.woff") format("woff"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-regular-webfont.ttf") format("ttf");
    font-family: "roboto-st"; font-weight: 400; font-style: normal; }
@font-face {
    font-family: "roboto-st";
    font-weight: 400;
    font-style: italic;
    src:
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-italic-webfont.woff2") format("woff2"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-italic-webfont.woff") format("woff"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-italic-webfont.ttf") format("ttf");}
@font-face { src:
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-bold-webfont.woff2") format("woff2"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-bold-webfont.woff") format("woff"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-bold-webfont.ttf") format("ttf");
    font-family: "roboto-st"; font-weight: 700; font-style: normal; }
@font-face { src:
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-bolditalic-webfont.woff2") format("woff2"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-bolditalic-webfont.woff") format("woff"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/roboto-bolditalic-webfont.ttf") format("ttf");
    font-family: "roboto-st"; font-weight: 700; font-style: italic; }
@font-face {
    font-family: "assassin-st";
    font-weight: 700;
    font-style: italic;
    src:
    url("/web/20240301133408im_/https://pos1er.com/fonts/assassin.woff2") format("woff2"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/assassin.woff") format("woff"),
    url("/web/20240301133408im_/https://pos1er.com/fonts/assassin.ttf") format("ttf");}

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */

body, html {
	height: 100%;
}

.showcase {
	background-color: #000;
	height: 100%;
	position: relative;
	color: #fff;
	/* overflow: hidden; */
}
.showcase::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	box-shadow: inset 0 0 500px #000;
}
.showcase::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(/web/20240301133408im_/https://pos1er.com/images/light.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center -65px;
	animation: k-light 3s ease-in-out infinite;
}
.showcase__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .48;
}
.showcase__content-wrapper {
	position: relative;
	z-index: 2;
	height: 100%;
	padding: var(--padding) 0;
}
.showcase__content-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(/web/20240301133408im_/https://pos1er.com/images/glow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	animation: k-glow 1.6s ease-in-out infinite;
}
.showcase__header {
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 1;
	top: 4%;
	font-family: assassin-st, sans-serif;
	font-size: 32px;
	color: rgba(255, 255, 255, .75);
}
.showcase__header span {
	color: var(--accent);
}
.showcase-carousel .swiper-wrapper {
	transition: var(--transition);
}
.showcase-carousel__item {
	position: relative;
	height: calc(100vh - var(--padding)*2.4);
	text-align: center;
	opacity: .25;
	transform: scale(.75);
	transition: opacity 1.8s var(--transition), transform 1.8s var(--transition)
}
.showcase-carousel__item::after {
	content: '';
	width: 120px;
	height: 0;
	position: absolute;
	box-shadow: 0 0 45px 10px #010101;
	bottom: 5px;
	left: calc(50% - 60px);
}
.showcase-carousel__item p {
	position: absolute;
    /* margin: 0 0 0 25 vw; */
	bottom: calc(20px - 10vh);
	width: 100%;
	font-family: assassin-st, sans-serif;
	font-size: calc(var(--index) * 2.5);
	color: rgba(255, 255, 255, .5);
	text-shadow: rgb(58 78 94) 0 0 10px;
}
.showcase-carousel__item.swiper-slide-active {
	opacity: .8;
	transform: scale(.98);
}
.showcase-carousel__image-wrapper > * {
	position: absolute;
	width: 100%;
	height: 100%;
	perspective: 150px;
	transform-style: preserve-3d;
}
.showcase-carousel__image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.showcase-carousel__image-left {
	perspective-origin: left center;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.showcase-carousel__image-right {
	perspective-origin: right center;
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
	/* Фикс вертикальной полосы на некоторых дисплеях */
	margin-left: -.55px
}
.showcase-carousel__image-left .showcase-carousel__image {
	animation: k-left-side 2s ease-in-out infinite;
	animation-direction: alternate;
}
.showcase-carousel__image-right .showcase-carousel__image {
	animation: k-right-side 2s ease-in-out infinite;
	animation-direction: alternate;
}

/* NAVIGATION */

.showcase-navigation {
	overflow: hidden;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.showcase-navigation > * {
	position: absolute;
	height: 100%;
	width: 50%;
	outline: none;
	cursor: pointer;
}
.showcase-navigation__next {
	right: 0;
}
.showcase-navigation > *::before {
	content: '?';
	font-family: assassin-st;
	opacity: 0;
	transition: opacity .75s ease-out;
	position: absolute;
	transform: rotate(-90deg);
	left: 50px;
	top: 50%;
	font-size: 45px;
}
.showcase-navigation > *:hover::before {
	opacity: .25;
}
.showcase-navigation__next::before {
	transform: rotate(90deg);
	right: 50px;
	left: auto;
}
.showcase-navigation > *.swiper-button-disabled {
	display: none;
}

/* ANIMATIONS */

@keyframes k-light {
	0% {
		opacity: .2;
	}
	50% {
		opacity: .3;
	}
	100% {
		opacity: .2;
	}
}
@keyframes k-glow {
	0% {
		opacity: .6;
	}
	50% {
		opacity: .8;
	}
	100% {
		opacity: .6;
	}
}
@keyframes k-left-side {
	0% {
		transform: rotateY(-1deg) scaleX(.92);
	}
	100% {
		transform: rotateY(0deg) scaleX(1);
	}
}
@keyframes k-right-side {
	0% {
		transform: rotateY(0deg) scaleX(1);
	}
	100% {
		transform: rotateY(1deg) scaleX(.92);
	}
}


/* BUTTONS */

.hide {
    display: none !important;
}

.button-box a {
    
    display: block;
    width: 320px;
    height: 320px;
    position: absolute;
    left: calc(40% - 30px);
    top: calc(35% - 30px);
    z-index: 5;
    opacity: 0;
}
/*
     FILE ARCHIVED ON 13:34:08 Mar 01, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:43:31 Jun 12, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.556
  exclusion.robots: 0.021
  exclusion.robots.policy: 0.01
  esindex: 0.01
  cdx.remote: 38.489
  LoadShardBlock: 97.714 (3)
  PetaboxLoader3.datanode: 108.46 (4)
  load_resource: 590.81
  PetaboxLoader3.resolve: 565.662
*/