/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

.content {
	width: 100%;
	font-family: Tahoma;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
	background: #282c34;
	backdrop-filter: blue(30px);
	border-radius: 20px;
	box-shadow: 0 0.5px 0 1px rgba(255,255,255, 0.23) inset, 0 1px 0 0 rgba(255, 255, 255, 0.23) inset, 0 4px 16px rgba(0,0,0,0.12);
	padding: 0 0;
	z-index: 10;
	max-width: 80rem;
  	color: #fff;
}

.info {
	padding: 0 35px;
	text-align: justify;
	box-sizing: border-box;
	color: #fff;
	flex-grow: 1;
	order: 2;
}

.info p {
	color: #000;
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 0px;
	line-height: 1.0;
	display: block;
    unicode-bidi: isolate;
	color: #fff;
	word-wrap:normal;
}
.info h1 {
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	margin-bottom: 10px;
	line-height: 1.5;
	margin-left: 20px;
}

.logo {
	display: flex;
	width: auto;
	height: auto;
	align-items: center;
	justify-content: flex-start;
}
.logo h1 {
	margin-left: 15px;
	align-items: center;
	justify-content: flex-start;
}
.logo p {
	display: block;
}

.info strong {
	color: #fff;
	font-weight: 1000;
	font-size: 1.0rem;
	margin-bottom: 20px;
	line-height: 1.5;
	margin-top: 20px;
}

.movie-night {
	/*background: linear-gradient(225deg,#ff3cac 0%,#784ba0 50%,#2b86c5 100%); */
}

.btn {
	display: block;
	padding: 10px 40px;
	margin: 10px auto;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 4px;
	outline: none;
	text-decoration: none;
	color: #fff;
	background: rgba(200,200,200,0.9);
	box-shadow: 0 6px 30px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
	margin-bottom: 100px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
	transition-timing-function: cubic-bezier(0.6,4,0.3,0.8);
	animation: gelatine 0.5s 1;
	background:#5CADF9;
	color: #fff;
}

@keyframes gelatine{
	0%,100%{
		transform: scale(1,1);
	}
	25% {
		transform: scale(0.9, 1.1);
	}
	50% {
		transform: scale(1.1,0.9);
	}
	75% {
		transform: scale(0.95,1.05)
	}
}

/* SWIPER*/

.swiper {
    width: 350px;
    height: 600px;
    padding: 50px 0;
    flex-grow: 1;
    order: 1;
}

.swiper-slide {
	position: relative;
	box-shadow: 0 15px 50px rgba(0,0,0,0.2);
	border-radius: 10px;
	user-select: none;
}

.swiper-slide img {
	position: absolute;
	inset:0;
	width: 80%;
	height: 80%;
	object-fit: cover;
}
.img-position {
	object-position: 100% 0%;
}

.overlay {
	position: absolute;
	inset:0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top,#0f2027,transparent,transparent);
	background-repeat: no-repeat;
	background-size: cover;
}

.overlay span {
	position: absolute;
	top:0;
	right: 0;
	color: #fff;
	padding: 7px 18px;
	margin: 10px;
	border-radius: 20px;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-weight: 700;
	font-family: inherit;
	background: #ffffff18;
	box-shadow: inset 2px -2px 20px #d6d6d633,inset -3px 3px 3px #ffffff66;
	backdrop-filter: blur(74px);
}

.overlay h2 {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.4;
	margin: 0 0 20px 20px;
}
.download {
	display: flex;
	position: absolute;
	width: auto;
	height: 100px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.download p {
	justify-content: center;
	width: 100px;
	margin: 10px;
	display: inline;
	flex-direction: column;
	text-align: center;
}
.copyright {
	text-align: center;
	width: 100%;
	margin: 10px;
	font-family: Tahoma;
	font-size: 0.8rem;
	margin-top: 50px;
	grid-area: foot;
}

.copyright a {
	text-decoration: none;
	color: #000;
}
