:root {
	--title-color: rgb(255, 255, 255);
	--subtitle-color: rgb(161, 161, 161);
	--btn-color: rgb(128, 128, 128);
	--text-color: #fff;

	--bg-color: #000;
	--tag-color: #000;
	--tag-bg-color: #e6e2df;
	
	--title-font-family: 'Arial', sans-serif;
	--txt-font-family: 'Arial', sans-serif;
	
	--swiper-theme-color: #fff;
}

.container .logo {
	padding: 1em 4em 1em 4em;
}

.container .logo img {
	display: block;
	max-width: 240px;
	max-height: 60px;
}

[data-layout="horizontal"] ~ [class*="swiper-button"]{
  display: none;
}


/* *********   WEBSTORY ITEM PAGE   *********** */

.webStoryPage {
	font-family: var(--txt-font-family);
	font-weight: 300;
	color: var(--text-color);
}


/* page-link */

.webStoryPage .page-link {
	margin: 2em 0 .5em 0;
}

.webStoryPage .page-link a {
	display: inline-block;
	color: #fff;
	background: rgba(0, 0, 0, .75);
	border: 2px var(--btn-color) solid;
    padding: 0.6em 1.5em;
	border-radius: 3em;
	margin-right: 1em;
	margin-bottom: .5em;
	text-decoration: none;
}

.webStoryPage .page-link a:hover {
	border: 2px #fff solid;
}


/* page-section */

.webStoryPage .page-section span {
	font-size: .85em;
	margin-right: 5px;
	padding: 1px 6px 3px 6px;
}


/* page-text */

.swiper-slide .webStoryPage .page-text {
	font-size: 1.2em;
}

.swiper-slide .webStoryPage h1 {
	color: var(--title-color);
	font-family: var(--title-font-family);
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2.5em;
	line-height: 1em;
}

.swiper-slide .webStoryPage h2 {
	color: var(--subtitle-color);
	margin-top: 0;
	font-size: 1.8em;
	line-height: 1.2em;
	font-weight: 400;
}

.swiper-slide .webStoryPage .page-text p > a {
	color: inherit;
	font-weight: bold;
	text-decoration: none;
	border-bottom: #fff 2px solid;
}

.swiper-slide .webStoryPage.animation {
	transition: all 1s ease-out;
}

/* page-info */

.page-info {
	margin-top: 2em;
	margin-bottom: .5em;
	font-size: 0.9em;
}

/* page-author */

.page-author {
	font-weight: 300;
}

.page-author:not(:first-child)::before {
	content: "|";
	padding-right: .75em;
	padding-left: .75em;
	opacity: .25;
}



/***************************************************/
/**************      PAGE LAYOUT    ****************/
/***************************************************/


.swiper.webStory {
	width: 95vw;
	height: 95vh;
	box-shadow: 0 10px 10px rgb(0 0 0 / 0.5);
	background: #000;
}

.swiper.webStory.fullscreen {
	width: 100vw;
	height: 100vh;
}

.swiper.webStory > .swiper-slide {
	font-size: 18px;
	background: #000;
	overflow: hidden;
}

.swiper.webStory > .swiper-button-next,
.swiper.webStory > .swiper-button-prev {
	display: none;
}

.webStoryPage {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
	background-color: var(--bg-color);
}

.webStoryPage .page-background {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	overflow: hidden;
}

.webStoryPage .page-background > img,
.webStoryPage.frame-cover .page-background > img {
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.webStoryPage.frame-contain .page-background > img {
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.webStoryPage .page-background > video,
.webStoryPage .page-background > iframe {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.webStoryPage .page-content {
	position: absolute;
	z-index: 2;
	box-sizing: border-box;
	padding: 6em 4em 3em 4em;
	width: 100%;
	pointer-events: none;
    max-height: 100%;
    overflow: hidden;
}

.webStoryPage .page-content a {
	pointer-events: auto;
}

.webStoryPage .page-text {
	display: inline-block;
}

.webStoryPage.h-25-75,
.webStoryPage.h-40-60,
.webStoryPage.h-50-50,
.webStoryPage.h-60-40,
.webStoryPage.h-75-25,
.webStoryPage.image-text,
.webStoryPage.text-image {
	padding: 0;
}

.webStoryPage.h-25-75 > *,
.webStoryPage.h-40-60 > *,
.webStoryPage.h-50-50 > *,
.webStoryPage.h-60-40 > *,
.webStoryPage.h-75-25 > *,
.webStoryPage.image-text > *,
.webStoryPage.text-image > * {
	width: 50%;
	position: relative;
}

.webStoryPage.h-25-75 .page-background,
.webStoryPage.h-40-60 .page-background,
.webStoryPage.h-50-50 .page-background,
.webStoryPage.h-60-40 .page-background,
.webStoryPage.h-75-25 .page-background,
.webStoryPage.image-text .page-background,
.webStoryPage.text-image .page-background {
	height: 100%;
}

.webStoryPage.text-image {
	flex-direction: row-reverse;
}

.webStoryPage.h-25-75 .page-background { flex: 0 0 25%; }
.webStoryPage.h-25-75 .page-content { flex: 0 0 75%; }

.webStoryPage.h-40-60 .page-background { flex: 0 0 40%; }
.webStoryPage.h-40-60 .page-content { flex: 0 0 60%; }

.webStoryPage.h-50-50 .page-background { flex: 0 0 50%; }
.webStoryPage.h-50-50 .page-content { flex: 0 0 50%; }

.webStoryPage.h-60-40 .page-background { flex: 0 0 60%; }
.webStoryPage.h-60-40 .page-content { flex: 0 0 40%; }

.webStoryPage.h-75-25 .page-background { flex: 0 0 75%; }
.webStoryPage.h-75-25 .page-content { flex: 0 0 25%; }

.webStoryPage.text-image.h-25-75 .page-background { flex: 0 0 75%; }
.webStoryPage.text-image.h-25-75 .page-content { flex: 0 0 25%; }

.webStoryPage.text-image.h-40-60 .page-background { flex: 0 0 60%; }
.webStoryPage.text-image.h-40-60 .page-content { flex: 0 0 40%; }

.webStoryPage.text-image.h-50-50 .page-background { flex: 0 0 50%; }
.webStoryPage.text-image.h-50-50 .page-content { flex: 0 0 50%; }

.webStoryPage.text-image.h-60-40 .page-background { flex: 0 0 40%; }
.webStoryPage.text-image.h-60-40 .page-content { flex: 0 0 60%; }

.webStoryPage.text-image.h-75-25 .page-background { flex: 0 0 25%; }
.webStoryPage.text-image.h-75-25 .page-content { flex: 0 0 75%; }

/* ------------------- */

.webStoryPage.v-25-75,
.webStoryPage.v-40-60,
.webStoryPage.v-50-50,
.webStoryPage.v-60-40,
.webStoryPage.v-75-25,
.webStoryPage.image-text.v-25-75,
.webStoryPage.image-text.v-40-60,
.webStoryPage.image-text.v-50-50,
.webStoryPage.image-text.v-60-40,
.webStoryPage.image-text.v-75-25 {
	flex-direction: column;
}

.webStoryPage.text-image.v-25-75,
.webStoryPage.text-image.v-40-60,
.webStoryPage.text-image.v-50-50,
.webStoryPage.text-image.v-60-40,
.webStoryPage.text-image.v-75-25 {
	flex-direction: column-reverse;
}

.webStoryPage.v-25-75 .page-background, .webStoryPage.text-image.v-25-75 .page-background { flex: 0 0 25%; position: relative; width: 100%; }
.webStoryPage.v-25-75 .page-content, .webStoryPage.text-image.v-25-75 .page-content { flex: 0 0 75%; position: relative; width: 100%; }

.webStoryPage.v-40-60 .page-background, .webStoryPage.text-image.v-40-60 .page-background { flex: 0 0 40%; position: relative; width: 100%; }
.webStoryPage.v-40-60 .page-content, .webStoryPage.text-image.v-40-60 .page-content { flex: 0 0 60%; position: relative; width: 100%; }

.webStoryPage.v-50-50 .page-background, .webStoryPage.text-image.v-50-50 .page-background { flex: 0 0 50%; position: relative; width: 100%; }
.webStoryPage.v-50-50 .page-content, .webStoryPage.text-image.v-50-50 .page-content { flex: 0 0 50%; position: relative; width: 100%; }

.webStoryPage.v-60-40 .page-background, .webStoryPage.text-image.v-60-40 .page-background { flex: 0 0 60%; position: relative; width: 100%; }
.webStoryPage.v-60-40 .page-content, .webStoryPage.text-image.v-60-40 .page-content { flex: 0 0 40%; position: relative; width: 100%; }

.webStoryPage.v-75-25 .page-background, .webStoryPage.text-image.v-75-25 .page-background { flex: 0 0 75%; position: relative; width: 100%; }
.webStoryPage.v-75-25 .page-content, .webStoryPage.text-image.v-75-25 .page-content { flex: 0 0 25%; position: relative; width: 100%; }

.webStoryPage.text-image.v-25-75 .page-background { flex: 0 0 75%; position: relative; width: 100%; }
.webStoryPage.text-image.v-25-75 .page-content { flex: 0 0 25%; position: relative; width: 100%; }

.webStoryPage.text-image.v-40-60 .page-background { flex: 0 0 60%; position: relative; width: 100%; }
.webStoryPage.text-image.v-40-60 .page-content { flex: 0 0 40%; position: relative; width: 100%; }

.webStoryPage.text-image.v-50-00 .page-background { flex: 0 0 50%; position: relative; width: 100%; }
.webStoryPage.text-image.v-50-00 .page-content { flex: 0 0 50%; position: relative; width: 100%; }

.webStoryPage.text-image.v-60-40 .page-background { flex: 0 0 40%; position: relative; width: 100%; }
.webStoryPage.text-image.v-60-40 .page-content { flex: 0 0 60%; position: relative; width: 100%; }

.webStoryPage.text-image.v-75-25 .page-background { flex: 0 0 25%; position: relative; width: 100%; }
.webStoryPage.text-image.v-75-25 .page-content { flex: 0 0 75%; position: relative; width: 100%; }

/* ---- frame-cover (default) ---- */

.swiper.swiperGallery {
	width: 100%;
	height: 100%;
	position: relative;
}

.swiper.swiperGallery .swiper-slide {
	background: #000;
	overflow: hidden;
}

.frame-cover .swiper.swiperGallery .swiper-slide img,
.swiper.swiperGallery .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.frame-contain .swiper.swiperGallery .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ---- gallery-strip ---- */

.frame-strip .swiper.swiperGallery .swiper-slide,
.gallery-strip .swiper.swiperGallery .swiper-slide {
	background: #000;
	overflow: hidden;
	width: auto;
}

.frame-strip .swiper.swiperGallery.swiper-slide img,
.gallery-strip .swiper.swiperGallery.swiper-slide img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.frame-strip .swiper.swiperGallery,
.gallery-strip .swiper.swiperGallery {
	padding: 3rem 0;
	box-sizing: border-box;
}

/* ---- pagination ---- */

.swiper.swiperGallery {
	position: relative;
}

.swiperSub-button-next,
.swiperSub-button-prev {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 1em 1.5em;
	color: #fff;
	border-radius: 100%;
	transform: scale(.8);
}

.swiperSub-button-next::after,
.swiperSub-button-prev::after {
	font-size: 2em;
}

.swiperSub-button-next { right: 1%; }
.swiperSub-button-prev { left: 1%; }

.swiperSub-button-next.swiper-button-disabled,
.swiperSub-button-prev.swiper-button-disabled {
	display: none;
}


/* ---- SUGESTÕES ---- */

.webStoryPage.suggestions .page-content{
  max-width: unset;
}

.webStoryPage.suggestions .page-content{
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.webStoryPage .sugg-bttns-wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.sugg-bttns-wrap > .sugg-bttn{
  flex: 0 0 24rem;
  max-width: 100%;

  display: flex;
  gap: 30px;

  padding: 20px;
  border-radius: 5px;

  background-color: var(--tag-bg-color);
  color: var(--text-color);

  text-decoration: none;

  box-shadow: 0 0 0 4px transparent;
  transition: all .25s ease-out;
}
.sugg-bttns-wrap > .sugg-bttn:hover{
  box-shadow: 0 0 0 4px var(--title-color);
}

.sugg-bttn > .sugg-icon{
  display: grid;
  place-items: center;
  height: 100%;
}
.sugg-icon > svg{
  width: 24px;
}

.sugg-bttn > .sugg-item{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sugg-bttn .sugg-sublabel{
  font-size: .8rem;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.sugg-bttn .sugg-label{
  font-size: 1.4rem;
  color: var(--title-color);
}


/* *** RESPONSIVE MOBILE **** */

@media (max-width: 720px) {

	html,
	body {
		display: block;
		position: relative;
		overflow: hidden;
	}

	.container {
		height: 100vh;
		overflow: auto;
		position: initial;
	}

	.container .logo {
		padding: 1em 3em !important;
	}
	
	.controllers {
		background-color: rgba(0, 0, 0, 0.7);
	}

	.swiper.webStory {
		overflow-y: initial;
		width: auto;
		height: auto;
	}

	.swiper.webStory > .swiper-wrapper {
		transform: translate3d(0, 0, 0) !important;
	}

	.swiper.webStory .webStoryPage,
	.swiper.webStory > .swiper-wrapper,
	.swiper.webStory > .swiper-wrapper > .swiper-slide,
	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-text,
	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-content,
	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-background {
		display: block;
		position: inherit;
		height: auto !important;
		width: 100% !important;
	}

	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-background img {
		width: 100% !important;
		max-width: 100% !important;
	}

	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-content {
		padding: 3em 2.5em;
	}

	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-text {
		font-size: 1em;
		line-height: 1.5em;
		padding: initial;
		background-color: transparent;
	}

	.swiper.webStory > .swiper-wrapper > .swiper-slide .page-text h1 {
		font-size: 1.8em;
	}

	.swiper.swiperGallery .swiper-slide img {
		width: 100%;
		height: 400px;
		object-fit: cover;
	}

	.swiperSub-button-next,
	.swiperSub-button-prev {
		transform: scale(.6);
	}

	.swiperSub-button-next { right: 0; }
	.swiperSub-button-prev { left: 0; }

  .webStoryPage .page-background > video,
  .webStoryPage .page-background > iframe {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    width: 100%;
  }
  .webStoryPage .page-background > .audio-warning{
    display: none;
  }

}