:root {
	--app-height: 100%;
	--main-color: #254cf5;
	--main-font: "Quicksand", sans-serif;
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
}

img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

::-webkit-scrollbar {
	width: 10px;
}
  
::-webkit-scrollbar-track {
	background-color: #fff;
}
  
::-webkit-scrollbar-thumb {
	background-color: #254cf5;
}
  
::-webkit-scrollbar-thumb:hover {
	background-color: #323232;
}

html,
body {
	background-color: #EEEEEE;
	margin: 0;
	font-family: var(--main-font);
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	height: var(--app-height);
}

.container {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
}

a {
	text-decoration: none;
}

.buttonBadge {
	padding: 5px 10px;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    bottom: -24px;
    right: 0px;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
	border-top: none;
    width: 100%;
}

.buttonBadge:hover {
	background-color: rgba(0,0,0,0.2);
}

.button {
	color: #fff;
	background-color: rgba(37, 76, 245, 1);
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	padding: 20px 40px;
	border-radius: 20px 20px 0px 0px;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: inline-block;
	text-transform: uppercase;
	width: 100%;
	border: 1px solid rgba(255,255,255,0.1);
	border-bottom: none;
}

.button:hover {
	background-color: rgba(37, 76, 245, 0.7);
}

.button:focus {
	outline: 0;
	border: 2px solid #ffffff;
	box-shadow: 0 0 2px 2px var(--main-color);
}

header {
	background-color: #254cf5;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 9999999;
}

header img {
	width: 100px;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.title {
	margin-top: 0px;
	margin-bottom: 20px;
}

.description {
	margin-top: 0px;
	margin-bottom: 0px;
}

.section .description:not(:last-child) {
	margin-bottom: 20px;
}

#welcome {
	background-color: #fff;
	color: #323232;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	position: relative;
}

#welcome .container, .learnMore {
	z-index: 9999999;
}

#welcome h1.title {
	font-size: 40px;
}

#welcome h2.title {
	font-size: 30px;
	opacity: 0.8;
}

#welcome #svgBg {
	position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
}

.infoWrapper {
	margin-bottom: 40px;
}

.info {
	margin-top: 20px;
	margin-bottom: 0px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	text-shadow: 1px 1px rgba(0,0,0,0.4);
}

.info a {
	color: rgba(255,255,255,0.7);
}

.learnMore {
	text-transform: uppercase;
    font-size: 12px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
	cursor: pointer;
	text-align: center;
}

.learnMore span {
	background-image: linear-gradient(75deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 33.33%, rgba(255, 255, 255, 0) 66.67%, rgba(255, 255, 255, 0) 100%);
  	background-size: 300% 100%;
  	background-position-x: calc(100% - var(--percentage));
  	background-clip: text;
  	-webkit-background-clip: text;
  	color: rgba(255, 255, 255, 0.2);
	animation: animatedLearnMore 2s ease infinite;
	animation-direction: alternate;
}

.section {
	/*scroll-snap-align: start;*/
	/*display: grid;
  	grid-template-columns: 1fr 1fr;
	justify-items: center;*/
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding: 40px;
	position: relative;
}

.section.single {
	grid-template-columns: 1fr;
}

.buttonWrapper {
	width: 300px;
    position: relative;
	margin: 0 auto;
    margin-bottom: calc(40px) !important;
    max-width: 100%;
}

.section img {
	width: 300px;
    max-width: 100%;
    border-radius: 5px;
	margin: 0 auto;
	margin-bottom: 20px;
	display: block;
}

#section1 {
	background-color: #254cf5;
	background-image: linear-gradient(rgba(37, 76, 245, 1), rgba(37, 76, 245, 0.1)), url("../images/section2.png");
	color: #fff;
}

#section2 {
	background-color: #254cf5;
	background-image: linear-gradient(rgba(37, 76, 245, 1), rgba(37, 76, 245, 0.1)), url("../images/section1.png");
	color: #fff;
}

#section2 .astronaut {
	position: relative;
}

#section2 .astronaut img:first-child {
	width: 100px;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 0 0.75rem #fff);
    position: absolute;
    margin-left: calc(50% - 50px);
    bottom: calc(50% - 50px);
    margin-bottom: 0px;
}

#section3 {
	background-color: #254cf5;
	background-image: linear-gradient(rgba(37, 76, 245, 1), rgba(37, 76, 245, 0.4)), url("../images/section3.png");
	color: #fff;
}

#section4 {
	background-color: #254cf5;
	background-image: linear-gradient(rgba(37, 76, 245, 1), rgba(37, 76, 245, 0.4)), url("../images/section4.png");
	color: #fff;
}

#section5 {
	background-color: #254cf5;
	background-image: linear-gradient(rgba(37, 76, 245, 1), rgba(37, 76, 245, 0.1)), url("../images/welcome.png");
	color: #fff;
}

#section5 a {
	color: #fff;
	text-decoration: underline;
	display: inline-block;
}

#section5 a.ph {
	display: block;
}

footer { 
	background-color: #254cf5;
    color: #fff;
    padding: 40px;
	/*scroll-snap-align: start; */
	text-align: center;
}

footer a {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
}

.footer_links,
.footer_social_links {
	margin-top: 40px;
}

.footer_links p:first-child {
	margin-top: 0em;
}

.footer_links p:last-child {
	margin-bottom: 0em;
}

main {
	height: calc(100% - 82.81px);
	overflow-y: auto;
}

@media (min-height: 600px) {
	main {
		/*scroll-snap-type: y mandatory;*/
	}
}

@media (orientation: portrait) {
	/*#welcome, .section {
		min-height: calc(100% - 82.81px);
	}*/
}

@media (orientation: landscape) {
	.info {
		margin-bottom: 40px;
	}
	/*#welcome, .section {
		min-height: calc(100% - 82.81px);
	}*/
}

@media (max-width: 700px) {
	#welcome h1.title, .section h1.title {
		font-size: 25px;
	}
	#welcome h2.title, .section h2.title {
		font-size: 20px;
	}
	.section {
		grid-template-columns: 1fr;
	}
	.section img {
		width: 300px;
		margin-bottom: 20px;
	}
	.sectionText {
		width: 100%;
	}
	html, body {
		font-size: 14px;
	}
}

@media (max-width: 500px) {
	#section1 .astronaut {
		width: 100px;
	}
}

@media (max-width: 280px) {
	#welcome h1.title, .section h1.title {
		font-size: 25px;
	}
	#welcome h2.title, .section h2.title {
		font-size: 15px;
	}
	p {
		font-size: 13px;
	}
	.info {
		font-size: 12px;
	}
	.learnMore {
		font-size: 10px;
	}
	#section1 .astronaut {
		width: 75px;
	}
}

@keyframes animatedLearnMore {
	0% {
		background-position-x: 100%;
	}
	10% {
		background-position-x: 90%;
	}
	20% {
		background-position-x: 80%;
	}
	30% {
		background-position-x: 70%;
	}
	40% {
		background-position-x: 60%;
	}
	50% {
		background-position-x: 50%;
	}
	60% {
		background-position-x: 40%;
	}
	70% {
		background-position-x: 30%;
	}
	80% {
		background-position-x: 20%;
	}
	90% {
		background-position-x: 10%;
	}
	100% {
		background-position-x: 0%;
	}
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}

.trustpilot-widget {
	padding-bottom: 20px;
}

.embyPreviewContainer {
	width: 300px;
    aspect-ratio: 1 / 1;
    position: relative;
    text-align: center;
    max-width: 100%;
	margin: 0 auto;
	margin-bottom: 40px;
}

.emby-image-area {
	margin: 20px auto;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 5px;
}
.emby-bubble {
	position: absolute;
	padding: 5px 10px;
	background-color: rgba(37, 76, 245, 0.5);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
	color: #fff;
	width: 80%;
	font-size: 12px;
	border: 1px solid rgba(255,255,255,0.1);
}
.embyPreviewContainer .emby-bubble:first-child {
	border-radius: 50px 50px 5px 50px;
}
.embyPreviewContainer .emby-bubble:last-child {
	border-radius: 50px 50px 50px 5px;
}
.emby-bubble.command {
	top: -20px;
	right: -20px; /* Adjusted to overlap the image area */
}
.emby-bubble.response {
	bottom: -20px;
	left: -20px; /* Adjusted to overlap the image area */
}

@media (max-width: 699px) {
	.embyPreviewContainer {
		margin-bottom: 40px !important;
	}
}