@charset "utf-8";
/* CSS Document */

@media 	only screen and( -webkit-min-device-pixel-ratio: 1.25 ),
       	only screen and(      -o-min-device-pixel-ratio: 5/4 ),
       	only screen and( min-resolution: 120dpi ),
       	only screen and( min-resolution: 1.25dppx ) {
    		body {
        		font-size: 1rem;
    		}
		}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	background-color: #ecf0f1;
	font-weight: 400;
	color: black;
}

::-moz-selection { /* Code for Firefox */
	color: black;
	background: #f7cb70;
  }
  
::selection {
	color: black;
	background: #f7cb70;
}

a {
	color: inherit;
	text-decoration: none;
}

.separator {
	width: 50%;
	margin-left: 25%;
	height: 0;
	border-bottom: 2px solid #f7cb70;
}
.separatorMargin {
	margin: 0;
	width: 100%;
	height: 120px;
}

/* Image Modal */

.modal {
    display: none; 
    position: fixed; 
    z-index: 99; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
	position: absolute;
	top: calc(50% + 26px);
	left: 50%;
    margin: auto;
    display: block;

	width: 90%;
	max-width: calc((100vh - 52px - 50px) * 16 / 9);
	height: calc(100vh - 52px - 50px);
    
    /* max-width: 700px; */
	transform: translate(-50%, -50%);
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
	overflow: hidden;

	background-position: center;
	background-size: cover;
}

.modal-text {
	margin: 0 25px;
	margin-top: 50px;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
}

.modal-subtext {
	margin: 0 25px;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
}

.modal-content img {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.modal-content .HighlightCoverText {
	padding-right: 20px;
	font-size: 1.5rem;
	font-weight: 200;
}

.close {
    position: absolute;
    top: 70px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
	cursor: pointer;
	z-index: 1;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
}

/*  */

#HomeCover {
	position: relative;
	margin-top: 52px;
	width: 100%;
	height: calc(100vh - 52px);
	display: flex;
	
    background-color: #111;
	background-image: url("../img/Cover_BG.jpg");
	background-size: cover;
	background-position: center 60%;
	
	overflow: hidden;
}

#ScrollBall {
	position: absolute;
	width: 100%;
	top: 100vh;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: white;

	animation: BallAnimation 2s infinite;
}

#Ball {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	background-color: white;
	border-radius: 50vh;
}

#ScrollText {
	text-align: center;
	width: 100%;
}

@keyframes BallAnimation {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(50px);
		color: rgba(255,255,255,0);
    }
	30%, 70% {
		color: rgba(255,255,255,0);
	}
    40%, 60% {
        transform: translate(-50%, -50%) translateY(-100px);
		color: rgba(255,255,255,1);
    }
}

#Cover3DSample {
	position: relative;
	width: 100%;
	height: 100%;
	background-image: url("../img/Cover_Main.png");
	background-size: cover;
	background-position: center;
	
	/*filter: blur(20px);
	transform: scale(1.5);*/
    transform-origin: 50% 50%;

	margin-top: -100px;
		
	transition: transform filter 0.3s ease;
	-webkit-transition: transform filter 0.3s ease;
	/* z-index: 2; */
	pointer-events: none;
	/*z-index: 100;*/
}

#CoverTitle {
	position: absolute;
    width: 90%;
	bottom: calc( 20% + 40px);
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	color: #222;
}

#CoverSubtitle {
	position: absolute;
    width: 90%;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	font-size: 1rem;
	font-weight: 300;
	color: #222;
}

#CoverSignUp {
	position: relative;
	/* bottom: 50px; */
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	color: #222;

	display: block;
	margin: 0 auto;
	max-width: 300px;
	overflow: hidden;
	border-radius: 20px;
	padding: 5px 20px;
	/* background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); */
	margin-top: 50px;
}

.GetLicenseButton {
    /*position: relative;
    width: fit-content;
	padding: 5px 20px;
	border-radius: 5px;

    background-color: #222222;
	color: #ddd;
	font-weight: 300;
	cursor: pointer;

    margin: 0 auto; font-size: 1rem; margin-top: 15px; margin-left: 50%; transform:translateX(-50%);
    border: 1px solid white;
    background-color: transparent;*/

    position: relative;
    width: fit-content;
    padding: 5px 20px;
    

    font-size: 1rem;
    font-weight: 300;
    color: #ddd;
    cursor: pointer;

    margin: 0 auto; font-size: 1rem; margin-top: 15px; margin-left: 50%; transform:translateX(-50%);

    background-color: transparent;

    /* Soft black shadow around the button */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);*/

    /* Inner white glow */
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2), 
                0 4px 10px rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;

    /* Optional smooth transition when hovering */
    transition: all 0.1s ease;
}

.GetLicenseButton:hover {
	background-color: #f7cb70;
	color: #222;
    border-top: 1px solid rgba(255, 255, 255, 1);

    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2), 
                0 4px 10px rgba(0, 0, 0, 1);
}

.UnrealEngineLogo {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: block;
    width:13%;
    max-width:450px;
}

#mc_embed_signup {
	background: none !important;
}

#mc_embed_signup form {
	margin: 0 !important;
	text-align: center !important;
}

#mc_embed_signup .helper_text {
	background: none !important;
}

#mc_embed_signup h2 {
	margin: 12px auto !important;
	margin-bottom: 0px !important;
	text-align: center !important;
	font-size: 1rem !important;
}

#mc_embed_signup .button {
	position: relative;
	display: block !important;
	margin: 0 auto !important;
	margin-top: 3px !important;
	margin-bottom: 10px !important;
	background-color: #f7cb70 !important;
	color: #222 !important;
	font-weight: 400 !important;

	box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

#mc_embed_signup .mc-field-group input {
	text-align: center !important;
}

#mc_embed_signup .button:hover {
	/* border: 1px solid #222 !important; */

	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#mc_embed_signup .mc-field-group {
	padding-bottom: 0 !important;
}

#mc_embed_signup .indicates-required {
	display: none !important;
}

.VideoContainer {
	position: relative;
	display: block;
	width: 100%;
	/* height: 0;
	padding-bottom: 30%; */
	overflow: hidden;
}

#FeaturesMenu {
	position: relative;
	width: 100%;
	height: 25px;
	line-height: 25px;
	display: flex;
	border-bottom: 3px solid #f7cb70;
	margin-top: -28px;
	left: 0;
	font-size: 0.8em;
	font-weight: 400;
	
	transition: width 0.2s ease;
	-webkit-transition: width 0.2s ease;
	z-index: 98;
}

.FeaturesMenuItem {
	flex: 1;
	display: inline-block;
	background-color: #222;
	border: 1px solid black;
	border-bottom: none;
	text-align: center;
	color: white;
	border-radius: 5px 5px 0 0;
	cursor: pointer;

	transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
}

.flex0 {
	flex: 0;
	width: 0;
	overflow: hidden;
}

.FeaturesMenuItem:hover {
	/* background-color: #000; */
	color: #222;
	background-color: #f7cb70;
	font-weight: 400;
}

.FeaturesMenuItem.selected {
	color: #222;
	background-color: #f7cb70;
	font-weight: 600;
}

#OverviewContainer, #EditorModeContainer {
	display: block;
	position: relative;
}

#OverviewContainer .FeaturesSectionHighlightImg {
	cursor: pointer;
}

.OverviewHighlights {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	max-width: 80%;
	justify-content: center;
	margin: 0 auto;
	margin-top: 30px;
	gap: 35px;

	/* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px; */
}

.OverviewHighlight {
	/* display: flex; */
	position: relative;
	flex: 1;
	min-width: 200px;
	max-width: 300px;
	align-items: center;
	text-align: center;
	font-weight: 400;
	background-color: #222;
	color: white;
	border-radius: 10px;
	border-top: 1px solid #ccc;
	padding: 20px 30px;

	box-shadow: rgba(0, 0, 0, 1) 0px 10px 10px -5px inset;
	border-bottom: 1px solid white;

	transition: 0.2s ease;

	/* padding: 15px 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer; */
}

.OverviewHighlightLink {
	background-color: #111;
	color: #ddd;
}

.OverviewHighlightLink:hover {
	background-color: #222;
	color: white;
	box-shadow: rgba(0, 0, 0, 1) 0px 0px 10px -5px inset;
	/*padding-top: 18px;
	padding-bottom: 22px;*/
}

.OverviewHighlightFullRow {
	flex: 1 0 100%;
	max-width: 100%;
}

.OverviewHighlightNoIcon {
	display: flex;
}

.OverviewHighlight::before {
	display: none;
    content: "✔";
    position: absolute;
	text-align: center;
    right: 12px;
    top: 50%;
	color: #222;
	transform: translate(-50%, -50%);
}

.OverviewHighlightIcon {
	display: block;
	position: relative;
	margin: 0 auto;
	margin-bottom: 10px;
	width: 60px;
	height: 60px;
	background-position: center;
	background-size: cover;
}

.OverviewHighlightText {
	font-size: 0.8rem;
	font-weight: 300;
	margin-top: 12px;
}

#OverviewContainer .FeaturesSectionHighlight {
	max-width: 400px;
	min-width: 350px;
}

#FeaturesInterfaceContainer {
	position: relative;
	z-index: 97;
}

#FeaturesInterface {
	position: absolute;
	top: 0;
	left: 0;
	width: 398px;
	/* width: 0; */
	height: calc(100vh - 52px - 27px);
	background-color: #333;
	font-size: 0.8rem;
	font-weight: 400;
	overflow: hidden;

	transition: width 0.2s ease;
}

#FeaturesInterfaceMain {
	position: relative;
	overflow-y: scroll;
	overflow-x: hidden;
	height: calc(100% - 100px);
}

#FeaturesInterfaceMainTooltip {
	position: absolute;
	bottom: 100%;
	padding: 22px;
	background: rgba(255, 255, 255, 0.75);
	color: #000;
	pointer-events: none;
	display: none;
	font-weight: 400;
}

#FeaturesInterfaceMainImgContainer {
	position: relative;
	display: flex;
	white-space: nowrap;
	transition: 0.3s ease;
	overflow-y: hidden;
	overflow-x: visible;
	width: 1984px;
}

.FeaturesInterfaceMainImgDiv {
	flex: 0 0 auto;
}

#FeaturesInterfaceMainImg01, #FeaturesInterfaceMainImg02, #FeaturesInterfaceMainImg03, #FeaturesInterfaceMainImg04 {
	pointer-events: none;
	position: relative;
}

#FeaturesInterfaceBottom {
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: 0;
	background-color: #191919;
	border-top: 2px solid #444; 
}

#FeaturesInterfaceBottomInfo {
	position: absolute;
	top: 50%;
	left: 22px;
	transform: translate(0,-50%);
}

.FeaturesInterfaceBottomInfoItem {
	display: block;
	width: fit-content;
	position: relative;
	color: #ddd;
	font-size: 1em;
	pointer-events: none;
	letter-spacing: 0.5px;
	font-weight: 400;
}

.useBatch {
	position: relative;
	display: block;
}

.useBatch::after {
	content: "";
	width: 12px;
	height: 12px;
	background-color: #333;
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
	border: 1px solid #000;
}

#FeaturesInterfaceBottomShoot {
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 50px;
	top: 25px;
	right: 15px;
	text-align: center;
	border: 1px solid #f7cb70;
	color: white;
	border-radius: 50vh;
	cursor: pointer;
}

#FeaturesInterfaceBottomShoot:hover {
	background-color: #f7cb70;
	color: #222;
	font-weight: 500;
}

#FeaturesWindow {
	position: relative;
	width: calc(100% - 398px);
	left: 398px;

	transition: left width 0.2s ease;
}

.FeaturesSection {
	position: relative;
	width: 100%;
	/* min-height: 100vh; */
	font-weight: 400;
}

.InterfaceSection {
	min-height: 0;
}

.FeaturesSectionBG {
	position: absolute;
	width: 100%;
	height: 100%;
	/* background-size: cover; */
	/* background-position: calc(50% + 199px) center; */
	/* background-attachment: fixed; */
	z-index: 0;
	
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#BGOverview {
	background-image: url("../img/Overview_BG.jpg");
}

#BGEditorMode {
	background-image: url("../img/Features_BG02.jpg");
}

#BG00 {
	background-image: url("../img/Overview_BG.jpg");
}
/* #BG01 {
	background-image: url("../img/Features_BG01.jpg");
}
#BG02 {
	background-image: url("../img/Features_BG02.jpg");
}
#BG03 {
	background-image: url("../img/Features_BG03.jpg");
}
#BG04 {
	background-image: url("../img/Features_BG02.jpg");
} */

.FeaturesSectionCover, .FeaturesSectionCoverVideo {
	display: block;
	position: relative;
	/* height: 50vh; */
	padding-bottom: 40%;
	background-size: cover;
	/* background-position: center; */
	overflow: hidden;
	/* pointer-events: none; */

	box-shadow: rgba(0, 0, 0, 0.33) 0px 10px 10px -5px inset;
	border-bottom: 1px solid white;

	transition: 0.5s ease;
}

.FeaturesSectionCoverVideo {
	padding-bottom: 56.25%;
	transition: 0.5s ease;
	height: 0;
	pointer-events: initial;
}

.FeaturesSectionCoverVideoFrame {
	padding:56.25% 0 0 0;
	position:relative;
	/* top: 0%;
	transform: translate(0, -50%); */

	transition: 0.5s ease;
}

.FeaturesSectionCoverText {
	position: absolute;
	text-align: right;
	bottom: 0;
	right: 0;
	padding: 6px 25px;
	color: white;
	background: linear-gradient(to right, rgba(34,34,34,0) 0%, rgba(34,34,34,1) 50%);
}

.FeaturesSectionInfo {
	margin-bottom: 100px;
}

.FeaturesSectionTitle {
	position: relative;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	padding-top: 100px;
	z-index: 1;
	color: #333;
}

.InterfaceSection {
	padding-bottom: 50px;
}

.FeaturesSectionSubtitle {
	display: block;
	position: relative;
	text-align: center;
	font-size: 1.2rem;
	margin: 0 auto;
	width: 50%;
	color: #444;
}

.FooterAtlux {
	display: block;
	position: relative;
	text-align: center;
	font-size: 1.4rem;
	margin: 0 auto;
	width: 90%;
	color: #444;
}

.FeaturesSectionHighlightContainer {
	position: relative;
	display: flex;
	margin-top: 50px;
	z-index: 1;
	justify-content: center;
}

.FeaturesSectionHighlightCentered {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 80%;
	gap: 25px;
}

.FeaturesSectionHighlight {
	flex: 1;
	text-align: center;
	max-width: 300px;
	min-width: 250px;

	position: relative;
	align-items: center;
	font-weight: 400;
	background-color: white;
	border-radius: 20px;
	/* border-bottom: 1px solid #ccc; */
	padding: 15px;
	padding-top: 15px;

	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.FeaturesSectionHighlight:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.FeaturesSectionHighlightImg {
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	width: 100%;
	padding-bottom: 56.25%;
	border-radius: 10px;
	/* background-color: #222; */
	margin-bottom: 15px;
	/* border-top: 1px solid rgba(0,0,0,0.5); */
	box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 8px -5px inset;
	overflow: hidden;
	background-size: cover;
	background-position: center;

	/* display: none; */
}

.FeaturesSectionHighlightImg:hover {
	box-shadow: rgba(0, 0, 0, 1) 0px 5px 8px -5px inset;
}

.HighlightCoverText {
	position: absolute;
	text-align: right;
	bottom: 0;
	right: 0;
	padding: 5px 10px;
	padding-left: 50px;
	color: #fff;
	background: linear-gradient(to right, rgba(34,34,34,0) 0%, rgba(34,34,34,1) 50%);
	font-size: 0.8rem;
}

.FeaturesSectionHighlightTitle {
	position: relative;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 25px;
}

.FeaturesSectionHighlightTitle::after {
	content: "";
    display: block;
    position: absolute; /* This positions the line relative to the parent element */
    bottom: -12px; /* Position at the bottom of the parent element */
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.FeaturesSectionHighlightDescription {
	text-align: left;
}

/* Showcase */

.image-slider {
    position: relative;
	display: block;
    width: 100%;
	padding-bottom: 40%;
    height: 0;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding-bottom: 40%;
}

.slider-content {
    display: flex;
    transition: transform 0.5s ease; /* This gives the sliding effect */
}

.slider-content img {
    min-width: 100%;
    height: 100%;
    display: block;
}

.arrow-left, .arrow-right {
	position: absolute;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	font-size: 3rem;
	cursor: pointer;
	color: white;
}

.arrow-left {
	left: 10px;
}

.arrow-right {
	right: 10px;
}

/* SCROLL BAR INTERFACE */

/* For Webkit browsers like Chrome, Safari */
#FeaturesInterfaceMain::-webkit-scrollbar {
    width: 10px;  /* Width of the scrollbar */
}

#FeaturesInterfaceMain::-webkit-scrollbar-track {
    background: #2E2E2E;  /* Color of the track */
}

#FeaturesInterfaceMain::-webkit-scrollbar-thumb {
    background: #555;  /* Color of the thumb (the draggable part) */
    border-radius: 5px;  /* Rounded corners */
}

#FeaturesInterfaceMain::-webkit-scrollbar-thumb:hover {
    background: #444;  /* Color when hovering over the thumb */
}

/* For Firefox */
#FeaturesInterfaceMain {
    scrollbar-width: thin;  /* Can be "auto", "thin", or "none" */
    scrollbar-color: #555 #2E2E2E;  /* Thumb and Track color */
}

/* For IE and Edge */
#FeaturesInterfaceMain::-ms-scrollbar {
    width: 10px;
}

#FeaturesInterfaceMain::-ms-scrollbar-track {
    background: #2E2E2E;
}

#FeaturesInterfaceMain::-ms-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

#FeaturesInterfaceMain::-ms-scrollbar-thumb:hover {
    background: #444;
}

/* TOOLTIP */

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
    margin-bottom: 5px;
}

.tooltip:hover::before {
    opacity: 1;
}

/* VIDEO.JS */

.vjs-fullscreen-control, .vjs-picture-in-picture-control, .vjs-remaining-time, .vjs-volume-panel, .vjs-play-control {
	display:none !important;
}

/**/

@media (max-width: 480px) {
    #Cover3DSample {
        width: 100%;
        height: 100%;
        
        margin-top: -130px;
    }
    
    #CoverTitle {
        font-size: 1.7rem;
        bottom: calc( 25% + 40px);
    }

    .UnrealEngineLogo {
        bottom: 50px;
        left: 50%;
        width: 40%;
        max-width: 450px;
        transform: translateX(-50%);
    }

    .FeaturesSectionTitle {
        font-size: 1.8rem;
        padding-top: 50px;
    }
    
    .FeaturesSectionSubtitle {
        font-size: 1.1rem;
        width: 80%;
    }

    .separatorMargin {
        height: 50px;
    }
}