.screen-body, #screenCarousel {
 width: 100vw;
 height: 100vh;
 overflow: hidden;
 position: relative;
}

img {
 width: 100%;
}

.screen-slide {
 width: 100%;
 height: 100%;
 opacity: 0;
 visibility: hidden;
 position: absolute;
 transition: opacity 0.8s ease, visibility 0.8s ease;

 &.is-visible {
	display: initial !important;
	position: relative;
	opacity: 1;
	visibility: visible;
 }

 &.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
 }
}

.screen-content:not(.img) {
 padding: 3rem;
}

.screen-content {

 strong, b {
	font-family: var(--font-title);
	color: var(--pole);
 }

 &.gallery {
	height: 100%;
	width: 100%;
	background-color: var(--color-blue-light);

	.gallery-grid {
	 width: 100%;
	 height: 100%;
	 display: grid;
	 gap: 2rem;

	 &.grid {
		grid-template-columns: repeat(2, 1fr);
	 }
	}

	.gallery-item {
	 overflow: hidden;
	 border-radius: 2rem;
	 position: relative;

	 &.gradient {
		&::after {
		 content: '';
		 position: absolute;
		 left: 0;
		 bottom: 0;
		 width: 100%;
		 height: 100%;
		 z-index: 1;
		 background: linear-gradient(0deg,rgba(9, 51, 66, 1) 0%, rgba(9, 51, 66, 0.15) 25%, rgba(255, 255, 255, 0) 100%);		}
	 }

	 .caption {
		position: absolute;
		z-index: 11;
		color: white;
		left: 1rem;
		bottom: 1rem;
		font-family: var(--font-title);
		color: var(--pole);
	 }

	 &:nth-child(odd) {
		border-top-right-radius: 0;
		border-bottom-left-radius: 0;
	 }

	 &:nth-child(even) {
		border-top-left-radius: 0;
		border-bottom-right-radius: 0;
	 }

	 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	 }
	}
 }

 &.text {
	width: 100%;
	height: 100%;
	color: white;
	display: flex;
	align-items: center;
	background-color: var(--color-blue-dark);

	.text {
	 background-color: var(--color-blue-light);
	 padding: 3rem;
	 border-radius: 2rem;
	 border-top-right-radius: 0;
	 border-bottom-left-radius: 0;
	 width: 100%;
	 font-size: 2.5rem;

	 p, ul, a {
		font-size: 2.5rem;
	 }
	}
 }

 &.text-img {
	width: 100%;
	height: 100%;
	background-color: var(--color-blue-dark);
	color: white;

	.text-img-wrapper {
	 display: grid;
	 grid-template-rows: 1fr 1fr;
	 gap: 2rem;
	 height: 100%;

	 &.img-top {

		.img {
		 order: 1;
		}

		.text {
		 order: 2;
		}
	 }

	 &.img-bottom {

		.text {
		 order: 1;
		}

		.img {
		 order: 2;
		}
	 }

	 .img, .text {
		width: 100%;
		border-radius: 2rem;
		border-top-right-radius: 0;
		border-bottom-left-radius: 0;
	 }

	 .img {
		overflow: hidden;

		img {
		 width: 100%;
		 height: 100%;
		 object-fit: cover;
		}
	 }

	 .text {
		background-color: var(--color-blue-light);
		padding: 3rem;
		font-size: 2.5rem;

		p, ul, a {
		 font-size: 2.5rem;
		}
	 }
	}
 }

 &.img {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	 background-color: var(--color-blue-light);

	.wrapper {
	 width: 100%;
	 height: auto;
	 display: flex;
	}

	img {
	 width: 100%;
	 height: auto;
	 object-fit: contain;
	}
 }
 &.quote {
	width: 100%;
	height: 100%;
	color: white;
	background-color: var(--color-blue-light);

	&.grid {
	 display: grid;
	 gap: 2rem;
	 grid-template-rows: 1fr 1fr;
	 background-color: var(--color-blue-dark);

	 .quote-wrapper {
		border-radius: 2rem;
		border-top-right-radius: 0;
		border-bottom-left-radius: 0;
		padding: 3rem;
		background-color: var(--color-blue-light);
	 }

	 &.img-top {

		.img {
		 order: 1;
		}

		.quote-wrapper {
		 order: 2;
		}
	 }

	 &.img-bottom {

		.quote-wrapper {
		 order: 1;
		}

		.img {
		 order: 2;
		}
	 }
	}

	.img {
	 overflow: hidden;
	 width: 100%;
	 border-radius: 2rem;
	 border-top-right-radius: 0;
	 border-bottom-left-radius: 0;

	 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	 }
	}

	.quote-wrapper {
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 gap: .5rem;
	 width: 100%;
	 height: 100%;

	 .quote-text {
		font-family: var(--font-base);
		font-style: italic;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: flex-start;

		.quote-mark {
		 font-size: 8rem;
		 line-height: 1;
		 color: var(--pole);

		 &:nth-child(2) {
			align-self: flex-end;
		 }
		}
	 }

	 .quote-author {
		text-align: left;
		align-self: flex-start;
		font-size: 2rem;
		color: var(--pole);
		margin-bottom: 1rem;
	 }

	 .pole-logo {
		height: 5rem;
		width: auto;
		align-self: flex-start;
		margin-top: auto;

		img {
		 height: 100%;
		 width: auto;
		}
	 }
	}
 }
}