/*-----------------------------------------------------------------
[Legal Notice]

Copyright (c) Motek Production
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
/** CSS Reference
    0. Base Style
        0.button Buttons
        0.color Color bg-XX text-XX
	1. Link and logo at top / .header-top
	2. Dot navigation at right / #fp-nav, #fp-nav.right
	6. Main page / .page-main
		6.0 Page footer with scroll down button / .p-footer
		6.1 Page general params / .page-cent, .page
		6.3 Page and slide animation / .page.transition , .slide.transition
		6.5 Registration form / .page-register
		6.6 About us / .page-about

	Hooks for responsiveness (mobile friendly) can be found in "main_responsive.css" file

**/
/*---------- 
[Colors]
    text color : #FFFFFF, #FFF
    blue : #5677FC
    transluscent white : rgba(255, 255, 255, 0.15) / #fff;
*/

/* 0. Base Style  */
/* initialization */
html {
    color: #fff;
    font-size: 1em;
    line-height: 1.4;
	background: #626262;
}

::-moz-selection {
    background: #fff;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
svg,
video {
    vertical-align: middle;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

body, html, h1, h2, h3, h4, h5, h6, a, ul, li{
    
}
body{
    font-family: 'OpenSans';
    background: #050505;
    margin: 0;
    padding: 0;
}
ul, li{
    list-style: none outside none;
    margin: 0;
}
iframe{
    border: none;   
}
.pos-rel{
    position: relative;
}
.pos-abs{
    position: absolute;
}
.pos-fix{
    position: fixed;
}
.full-width{
    width: 100%;
    max-width: 1440px;
}
.full-height{
    height: 100%;   
}
.full-size{
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}

.my-button {
    text-transform: uppercase; 
    font-size: 1rem;
    padding: 1em;
    /* padding-top: 0.8rem; */
    padding-bottom: 0.8rem;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
}

.center-vh{
/*
    height: 100%;
    width: 100%; 
*/
    /* width needed for Firefox */

    /* old flexbox - Webkit and Firefox. For backwards compatibility */
    display: -webkit-box; display: -moz-box;
    /* middle-aged flexbox. Needed for IE 10 */
    display: -ms-flexbox;
    /* new flexbox. Chrome (prefix), Opera, upcoming browsers without */
    display: -webkit-flex;
    display: flex;

    /* old flexbox: box-* */
    -webkit-box-align: center; -moz-box-align: center;
    /* middle flexbox: flex-* */
    -ms-flex-align: center;
    /* new flexbox: various property names */
    -webkit-align-items: center;
    align-items: center;


    -webkit-box-pack: center; -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;    
}
.pos-top{
    top:0;
}
.pos-left{
    left: 0;
}
.pos-right{
    right: 0;
}
.pos-bottom{
    bottom: 0;   
}
.relh100{
    position:relative; height: 100%;   
}
/* Make page full width so reset foundation restriction on max-width*/
.row{
/*    width: 100%;*/
    max-width: 100%;
}


ul, li{
    list-style: none outside none;
    margin: 0;
}

.full-width{
    width: 100%;
    max-width: 100%;
    
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.fullscreen-width{
    width: 100%;
    max-width: 100%;
}
.table{
    display: table;
    height: inherit;
    margin: auto;
}
.table-cell{
    display: table-cell;
/*    height: inherit;*/
    vertical-align: middle;
}
.align-center{
    text-align: center;   
}
.align-left{    
    text-align: left;
}
.align-right{
    text-align: right;   
}
.align-justify{
    text-align: justify;   
}
/*
.mask{
    position: relative;
}
*/

/** 0. color Color */
.mask:before
{
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    opacity: 0.8;
/*    z-index: 10;*/
}
.title.bg-red,
.bg-red,
.mask-red:before{    
    background: #e51c23;
}
.title.bg-yellow,
.bg-yellow,
.mask-yellow:before{    
    background: #ffeb3b;
}
.title.bg-blue,
.bg-blue,
.mask-blue:before{    
    background: #5677fc;
}
.title.bg-pink,
.bg-pink,
.mask-pink:before{    
    background: #e91e63;
}
.title.bg-green,
.bg-green,
.mask-green:before{    
    background: #259b24;
}
.title.bg-white,
.bg-white,
.mask-white:before{    
    background: #fff;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #1f1f1f;
}
.title.bg-orange,
.bg-orange,
.mask-orange:before{    
    background: #ff9800;
/*    background: #ef6c00;*/
}
.title.bg-purple,
.bg-purple,
.mask-purple:before{    
    background: #9c27b0;
}
.title.bg-lime,
.bg-lime,
.mask-lime:before{    
    background: #cddc39;
}
.title.bg-bluegrey,
.bg-bluegrey,
.mask-bluegrey:before{    
    background: #607d8b;
}

.title.bg-bluegreylight,
.bg-bluegreylight,
.mask-bluegreylight:before{    
    background: #f0f0f0;
}
.title.bg-bluegreydark,
.bg-bluegreydark,
.mask-bluegreydark:before{    
    background: #37474f;
}
.title.bg-indigo,
.bg-indigo,
.mask-indigo:before{    
    background: #3f51b5;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #000;
}
.title.bg-black1,
.bg-black1,
.mask-black1:before{    
    background: #333;
}
.title.bg-amber,
.bg-amber,
.mask-amber:before{    
    background: #ffc107;
}

.text-white{
    color: #fff;   
}
.text-black{
    color: #333333;   
}
.text-bold{
    font-weight: bold;   
}
.text-red{
    color: #e51c23;   
}
.text-blue{
    color: #455ede;   
}
.text-orange{
    color: #ff9800;   
}
.text-yellow{
    color: #ffd600;   
}
.text-amber{
    color: #ffc107;   
}
.text-pink{
    color: #e91e63;   
}
.text-lightblue{
    color: #03a9f4;   
}

.small-col-20{
    width: 20%;
}
.box-shadow {
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -ms-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
}

/* Viewport visibility animation  */
.hidden{
     opacity:0;
     -webkit-transition: 0.6s;
     -ms-transition: 0.6s;
     transition: 0.6s;
}
.visible{
     opacity:1;
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.invisible{
    display: none !important;  
}
.s-visible-medium-up{
    opacity:0;
}
strong,
.bold{
	font-weight: bold;
}
.column, .columns{
    padding: 0;   
}
.row .row{
    margin: 0;   
}

/* 1. Link and logo at top  */
.header-top{
    position: fixed;
    z-index: 20;
    top:0;
    left: 0;
	height: 56px;
/*
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
*/
}
.header-top.material{
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}

	.header-top>div{
		display: inline-block;
		float: left;
	}
	.header-top .logo img{
		height: 56px;
		width: auto;
		padding: 8px 16px;
	}
	.header-top .logo{
		transition: 0.3s;
	}
	.header-top .logo:hover{
		background: rgba(255, 255, 255, 0.15);
	}

	.header-top.material .menu{
		border-right: 1px solid #f5f5f5;
	}
	.header-top.material .menu:last-child{
		border-right: none;
	}
	.header-top.material .menu a,
	.header-top .menu a{
		height: 56px;
/*		display: inline-block;*/
		display: block;
		float: left;
		background: #fff;
		color: #5677fc;
		text-transform: capitalize;
		text-align: center;
		font-size:18px;
    	font-family: 'Asap';
		font-weight: normal;
		padding: 14px 16px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.header-top .menu a{
		background: transparent;
		font-weight: normal;
/*		font-weight: bold;*/
		color: #fff;
		position: relative;
	}
	.header-top.material .menu a:first-child:after{
		display: none;
	}
	.header-top .menu a:first-child:after{
		position: absolute;
		left: 0;
		top: 25%;
		height: 50%;
		width: 1px;
		background: #fff;
		content: "";
	}

	.header-top.material .menu a:hover{
		background: #5677fc;
	}
	.header-top .menu a:hover{
		background: rgba(255, 255, 255, 0.15);
		color: #fff;
	}
 
/* 2. Dot navigation at right */
#fp-nav.right{
    right: 28px;
    margin-right: 10px;
	position: absolute;
}
#fp-nav span, .fp-slidesNav span{
    border-color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 10px;
	height: 10px;
}
#fp-nav ul li a span{
	background: #fff;
}
#fp-nav li, .fp-slidesNav li {
    display: block;
    width: 10px;
    height: 10px;
    margin: 16px;
    position: relative;
}
	#fp-nav span:after, .fp-slidesNav span:after{	
		background: rgba(255, 255, 255, 0.15);  
		position: absolute;
		content: "";
		
		display: block;
		top: 4px;
		left: 4px;
		right: 4px;
		bottom: 4px;
		border-radius: 100%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
#fp-nav li .active span, .fp-slidesNav .active span{
    background: #fff;
	position: absolute;
}
	#fp-nav li .active span:after, 
	.fp-slidesNav .active span:after{
		top: -6px;
		left: -6px;
		bottom: -6px;
		right: -6px;
	}

/* 6. Main Page */
.page-main{  
    position: relative;
    width: 100%;
    height: 100%;
}
 
/* 6.0 Page footer with scroll down button */
.p-footer {
    bottom: 0;
    position: absolute;
    width: 100%;
    padding-top: 5rem;
}
.p-footer .icon{
	position: absolute;
	top: 24px;
	color: #fff;
	text-align: center;
	width: 24px;
	margin-left: -12px;
	font-size: 20px;
	transition: 0.3s;
}
	.p-footer .text{
		font-size: 12px;
		font-family: "Asap";
		text-transform: uppercase;
	}
.p-footer:hover .icon{
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.p-footer .arrow-d{
    position: relative;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    height: 48px;
    width: 48px;
    left: 50%;
    bottom: 32px;
	margin: 0;
	display: block;
	border: 0px solid #fff;
	border-radius: 100%;
    margin-left: -24px;   
	transition: 0.3s;
	font-family: "Asap";
	color: #fff;
	font-size: 14px;
}
	.p-footer .arrow-d:hover{
		background: #5677fc;
	}
	.p-footer .arrow-d.gone{
		-webkit-transform: scale(0);   
		transform: scale(0);   
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	.p-footer .arrow-d .circle{
		top: 12px;
		bottom: 12px;
		left: 12px;
		right: 12px;
		position: absolute;
		content: "";
		background: #fff;
		border-radius: 100%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	.p-footer .arrow-d .circle:after{
		top: 12px;
		bottom: 12px;
		left: 12px;
		right: 12px;
		position: absolute;
		content: "";
		background: #fff;
		border-radius: 100%;
		-webkit-transition: 0.3s ;
		transition: 0.3s ;
	}
	.p-footer .arrow-d .after,
	.p-footer .arrow-d .before{
		top: 14px;
		position: absolute;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		opacity: 1;
	}
	/* Hover animation */
	.p-footer .arrow-d:hover .after,
	.p-footer .arrow-d:hover .before{
		opacity: 0.15;
	}
	.p-footer .arrow-d:hover .circle{
		background: #5677fc;
		background: rgba(86, 119, 252, 0);
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px; 
	}
	.p-footer .arrow-d:hover .circle:after{	
		border-radius: 0;
		left: 23px;
		right: 23px;
	}
	.p-footer .arrow-d .before{
		text-align: right;
		float: right;
		right: 72px;
	}
	.p-footer .arrow-d .after{
		text-align: left;
		float: left;
		left: 72px;
	}
	.p-footer .arrow-d:after,
	.p-footer .arrow-d:before{
		position: absolute; content: ' ';
		width: 24px;
		height: 24px;
		left: 12px;
		margin-left: 0.5px;
	/*
		-webkit-transform: rotateY(45deg);
		-ie-transform: rotateY(45deg);
	*/
		border: 2px solid rgba(255, 255, 255, 0.15);
		border-left-color: transparent;
		border-top-color: transparent;  
		-ms-transition: 0.3s;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.p-footer .arrow-d:after{   
		border-right-color: transparent;  
		top: 12px;
		left: 36px;
		-ms-transform: rotateZ(-45deg); 
		-webkit-transform: rotateZ(-45deg); 
		transform: rotateZ(-45deg); 
	}
	.p-footer .arrow-d:before{  
		border-bottom-color: transparent;
		top: 12px; 
		left: -12px;
		-ms-transform: rotateZ(-135deg);
		-moz-transform: rotateZ(-135deg);
		transform: rotateZ(-135deg);
	}
	.p-footer .arrow-d.no-change:after, 
	.p-footer .arrow-d:hover:after{ 
		top: 14px; 
		left: 14px;
		bottom: 14px;
		right: 14px;
		width: auto;
		height: auto;
		border: 2px solid #fff;
		border-left-color: transparent;
		border-top-color: transparent;  
		border-right-color: transparent; 
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.p-footer .arrow-d.no-change:before,
	.p-footer .arrow-d:hover:before{
		top: 14px;
		left: 14px;
		bottom: 14px;
		right: 14px;
		width: auto;
		height: auto;

		border: 2px solid #fff;
		border-left-color: transparent;
		border-top-color: transparent;  
		border-bottom-color: transparent;
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.p-footer:hover .arrow-d.no-change:after, 
	.p-footer:hover .arrow-d.no-change:before{
		top: 4rem;
	}
	.p-footer .arrow-d a{
		color: inherit;
	}
/* 6.1 Page general params */

.page{    
    position: relative;
    width: 100%;
    height: 100%;
}
.page-cent{
    width: 100%;   
    position: relative;
    text-align: center;
}
.page-cent .content p{
}
.page-cent .content{
    width: 980px;
    max-width: 100%;
/*    width: auto;*/
    margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 72px;
    padding-left: 1em;
    padding-right: 1em;
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Asap';
	color: #fff;
}

.page-cent .p-title{
    display: block;
    margin-bottom: 0.5rem;
}
.page-cent .p-title h3{
/*    text-transform: capitalize;   */
    font-size: 30px;
    padding-left: 0px;
    text-align: left;
    display: inline-block;
	color: #fff;
    font-family: 'Asap';
	border-bottom: 1px solid #d2b510;
}
.page-cent .p-title h2{
    text-transform: uppercase;   
    font-size: 56px;
	line-height: 1.3em;
    text-align: left;
	margin-top: 0.3em;
	margin-bottom: 0.3em;
    display: block;
	color: #fff;
    font-family: 'Asap';
}

/* Page general structure */
.page .p-title i{
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 0em;
	font-size: 0.8em;
}
.page-cent .text{	
    font-family: 'Asap';
	color: #fff;
	text-align: left;
}
.page p{    
    font-family: 'Asap';
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 0.75rem;
}
.page p.small{
	font-size: 14px;
}
.page p.center{
	text-align: center;
}
.page p.upper{
    text-transform: uppercase;
}
.page p.light{
    font-family: 'OpenSans-Light';
}
.page h4{
	text-transform: uppercase;
	font-weight: bold;
    color: #ffffff;
    font-size: 20px;
	margin-bottom: 0;
	margin-top: 0;
}

.page h2,
.page h3,
.page h4{
    font-family: 'Asap';
    color: #ffffff;
}

/* 6.2 Page and slide animation */
.slide,
.page .content,
.page-home .logo-container ,
.page{
	-webkit-transition: 0.8s background , 0.6s transform, 0.6s opacity;
	transition: 0.8s background , 0.6s transform, 0.6s opacity;
	-webkit-transform: none;
	transform: none;
	background: transparent;
/*
	-webkit-perspective: 1000px;
	perspective: 1000px;
*/
	border: none;
}
.page .content{
	z-index: 1;
}
.page:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	content: '';
	z-index: 0;
	-webkit-visibility: hidden;
	visibility: hidden;
	-webkit-transition: 0.8s background , 0.6s transform, 0.8s visibility;
	transition: 0.8s background , 0.6s transform, 0.8s visibility;
	-webkit-transform: none;
	transform: none;
}
.page.transition:before{
	-webkit-visibility: visible;
	visibility: visible;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}
.page-home.transition .logo-container{
	-webkit-transform: translateY(20px) scale(0.1);
	transform: translateY(20px) scale(0.1);
	opacity: 0;
}
.page.transition .content{
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
/*	background: rgba(255, 255, 255, 0.15);*/
}
.slide.transition{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}
/* 6.3 Home page */
.page-home .content ,
.page-home.page-cent .content {
	position: relative;
	max-width: 1200px;
	width: 100%;
}
.page-home .logo-container{
	position: absolute;
	top: 100px;
	width: 100%;
	text-align: center;
}

.page-home .logo-container img.h-logo{
	position: relative;
	display: inline-block;
	/* adjust below according t your llogo dimension */
	height: 100px;
	width: auto;
}

.page-home .content .header{
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.page-home .content .header>div{
	display: inline-block;
	position: relative;
}

.page-home .content h2{
	text-transform: uppercase;
	font-size: 94px;
	text-align: left;
	line-height: 1em;
}

.page-home .content h3{
	text-align: left;
	text-transform: uppercase;
	font-size: 40px;
	line-height: 1em;
	font-weight: bold;
	border-left: 4px solid currentColor;
	padding-left: 10px;
	margin-left: 10px;
	max-width: 180px;
}

.page-home .content .subhead{
	display: block;
	text-align: left;
	position: absolute;
	left: 20px;
	color: rgba(255,255,255,0.2);
	-webkit-transition: 0.3s;
	transition: 0.3s;
/*	width: 300px;*/
/*	border-top: 1px solid currentColor;*/
}

.page-home .content .subhead:hover{
	color: #fff;
}

.page-home .content .subhead a{
	color: inherit;
}

/* 6.5 Registration form */
.page-register .content{
/*    margin-top: -4rem;*/
/*
    padding-left: 1em;
    padding-right: 1em;
*/
/*    padding-top: 0.2rem;*/
}
.page .form{  
}
.page .form input{ 
    background: transparent;
/*    background: #f4f;*/
    border: none;
    color: #fff;
    padding: 0em 1em;
	padding-bottom: 0.3em;
    font-family: 'Asap';
    font-size: 20px;
    box-shadow: none;
    display: inline-block;
/*    min-width: 400px;*/
	position: absolute;
    width: auto;
	width: 100%;
	bottom: 0;
	left: 80px;
	right: 0;
	margin-bottom: 0;
}
.page .form.send_email_form input{
	
}
.page .form.send_email_form .fields{
	margin-top: 72px;
	background: rgba(255, 255, 255, 0.10);
	padding-left: 16px;
	height: 46px;
	min-height: 36px;
}

.page .form.send_email_form .buttons,
.page .form.send_email_form .buttons button{
	height: 45px;
}
.page .form label{
	display: inline-block;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    color: #fff;
	text-transform: uppercase;
    display: inline-block;
	margin-bottom: 0.35em;
	padding-top: 0.40em;
}
.page .form .fields{
	margin-top: 24px;
	position: relative;
    border-bottom: 1px solid #5677fc;
}
.page .form .fields.no-border{
	border: none;
}
.page .form .fields>div{
	float: left;
}
.page .form .fields .buttons{ 
	position: absolute;
	bottom: 0;
	right: -.5px;
}
.page .form button{ 
    background: #5677fc;
    color: #fff;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    padding: 0.5rem 1rem; 
    margin-bottom: 0;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	z-index: 2;
}
.page .form button:after{
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	bottom: 50%;
	content: "";
	background: #fff;
	opacity: 0;
	border-radius: 120px;
	-webkit-transition: 0.3s;
	transition: 0.3s;	
}
.page .form button:hover:after{
	opacity: 1;
	border-radius: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.page .form button:hover{
	background: transparent;
	color: #5677fc;
}
.page .form textarea{ 
    background: #fff;
    border: 1px solid currentColor;
    color: #626262;
    padding: 0.5em 1em;
    min-width: 200px;    
    font-size: 20px;
	font-family: "Asap";
    display: block;
    width: 100%;
    box-shadow: none;
    min-height: 108px;
	margin-top: 3px;
} 
.page .message-ok{
    margin-bottom: 0;
    position: absolute;
    font-size: 20px;
}

/* 6.6 About us */
.page-about .content{
    
    margin-top: -4rem;
    border: none;
/*
    padding-left: 1em;
    padding-right: 1em;
*/
    padding-top: 112px;
    padding-bottom: 112px;
}
.page-about .article{
       max-width: 480px;
    margin: auto;
}

/* ===== 404 Page ===== */

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: #ffd200;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.error-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: #fff;
}

.error-text {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Legal pages ===== */

.legal-page {
    background: #050505;
    color: #fff;
}

.legal-cover {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.legal-main {
    position: relative;
    z-index: 2;
    padding: 120px 24px 60px;
}

.legal-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 40px 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    backdrop-filter: blur(6px);
}

.legal-header {
    margin-bottom: 36px;
}

.legal-header h1 {
    font-family: 'Asap';
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #fff;
}

.legal-header p {
    margin: 0;
    font-size: 17px;
    color: rgba(255,255,255,0.68);
}

.legal-section {
    margin-bottom: 34px;
}

.legal-section h2 {
    font-family: 'Asap';
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #fff;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.86);
    margin-bottom: 16px;
}

.legal-section a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.legal-section a:hover {
    color: #ffcc00;
}

.legal-back {
    margin-top: 40px;
}

/* ===== Press page ===== */

.press-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    min-height: 220px;
    transition: all 0.3s ease;
}

.press-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.20);
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.press-card h3 {
    font-family: 'Asap';
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
}

.press-card p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.84);
    margin-bottom: 0;
}

.press-mail {
    margin-top: 18px !important;
}

.press-mail a {
    color: #ffcc00;
    text-decoration: none;
}

.press-mail a:hover {
    text-decoration: underline;
}

.press-list {
    margin: 18px 0 0;
    padding: 0;
}

.press-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
}

.press-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffcc00;
}

.press-card-partner {
    position: relative;
}

.partner-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
}

.press-card-partner.premium {
    border-color: rgba(255, 204, 0, 0.20);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.10), rgba(255,255,255,0.02));
}

.partner-badge.premium {
    background: rgba(255, 204, 0, 0.18);
    color: #ffcc00;
}

/* ===== Press CTA ===== */

.press-cta {
    margin-top: 50px;
    padding: 40px 30px;
    text-align: center;

    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.press-cta h3 {
    font-family: 'Asap';
    font-size: 32px;
    margin-bottom: 12px;
}

.press-cta p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.press-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Secondary Button (Outline Style) */
.gup-button.alt {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.gup-button.alt:hover {
    border-color: #ffcc00;
    color: #ffcc00;
}

/* ===== Home Hero Upgrade ===== */

.page-home .logo-container {
    display: none;
}

.home-hero {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    padding-top: 120px;
}

.page-home .content .header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    text-align: center;
}

.page-home .content .header > div {
    display: block;
}

.page-home .content h2 {
    font-size: 96px;
    line-height: 0.95;
    margin: 0;
    text-align: right;
    letter-spacing: 0.01em;
}

.page-home .content h3 {
    font-size: 34px;
    line-height: 1.05;
    margin: 0 0 8px 0;
    text-align: left;
    font-weight: bold;
    border-left: 3px solid #ffcc00;
    padding-left: 14px;
    max-width: none;
}

.home-hero .hero-text {
    margin-top: 32px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero .hero-text p {
    font-size: 24px;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0;
    text-align: center;
}

.home-hero .hero-meta {
    margin-top: 24px;
    text-align: center;
}

.home-hero .hero-meta span {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ===== Partner Logos ===== */

.partner-logo {
    max-width: 140px;
    height: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== Feature Cards ===== */

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border-radius: 12px;
    padding: 28px 24px;
    min-height: 190px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(86,119,252,0.4);
    background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
}

.feature-card h4 {
    margin-bottom: 14px;
    font-size: 20px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.82;
    margin-bottom: 0;
}

/* ===== Showcase section ===== */

/* --- Top Highlight (Blue) --- */
.showcase-highlight {
    background: linear-gradient(180deg, rgba(86,119,252,0.14), rgba(255,255,255,0.03));
    border: 1px solid rgba(86,119,252,0.25);
    border-radius: 14px;
    padding: 28px 28px 24px 28px;
}

.showcase-highlight-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}

.showcase-highlight h4 {
    font-size: 28px;
    line-height: 1.35;
    margin: 0;
    color: #fff;
    text-transform: none;
}


/* --- Default Cards --- */
.showcase-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.16);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}


/* --- Yellow Highlight Cards (Bottom Row) --- */
.showcase-card.yellow {
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.12), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 204, 0, 0.25);
}

.showcase-card.yellow:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.5);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.18), rgba(255,255,255,0.03));
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.08);
}


/* --- Sizes --- */
.showcase-card.small {
    padding: 24px 20px;
    min-height: 150px;
}

.showcase-card.large {
    padding: 26px 24px;
    min-height: 150px;
}

/* --- Yellow light (top row) --- */
.showcase-card.yellow-light {
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 204, 0, 0.15);
}

.showcase-card.yellow-light:hover {
    border-color: rgba(255, 204, 0, 0.35);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.10), rgba(255,255,255,0.03));
}

/* --- Typography --- */
.showcase-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.showcase-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.82;
    margin-bottom: 0;
}

/* ===== Submit section ===== */

.submit-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 26px 22px;
    min-height: 170px;
    transition: all 0.3s ease;
}

.submit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.28);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255,255,255,0.02));
}

.submit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.submit-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.82;
    margin-bottom: 0;
}

.submit-cta-box {
    text-align: center;
    padding: 34px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 204, 0, 0.20);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255,255,255,0.02));
}

.submit-cta-text {
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
}

.gup-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    background: #ffcc00;
    color: #000;
    font-family: 'Asap';
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.gup-button:hover {
    background: transparent;
    color: #ffcc00;
    border-color: #ffcc00;
    transform: translateY(-2px);
}

/* ===== Header Upgrade ===== */

.header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.header-top > div {
    display: flex;
    align-items: center;
    float: none;
}

.header-top .logo {
    transition: opacity 0.25s ease;
}

.header-top .logo:hover {
    background: transparent;
    opacity: 0.9;
}

.header-top .logo img {
    height: 40px;
    width: auto;
    padding: 0;
}

.header-top .menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-top .menu a,
.header-top.material .menu a {
    float: none;
    display: inline-block;
    height: auto;
    padding: 6px 0;
    background: transparent;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    font-family: 'Asap';
    font-weight: normal;
    text-transform: none;
    text-align: left;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-top .menu a:first-child:after,
.header-top.material .menu a:first-child:after {
    display: none;
}

.header-top .menu a:hover,
.header-top.material .menu a:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-1px);
}

.header-top .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.25s ease;
}

.header-top .menu a:hover::after {
    width: 100%;
}

/* ===== Minimal footer ===== */

.site-footer-minimal {
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

/* ===== GamingUp dark background ===== */

body {
    font-family: 'OpenSans';
    background: #050505;
    margin: 0;
    padding: 0;
}

.page-cover {
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: 0;
}

.page-cover .base-dark {
    position: absolute;
    inset: 0;
    background: #050505;
    z-index: 0;
}

.cover-art {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cover-art img {
    display: block;
    height: 100%;
    width: auto;
    opacity: 0.65;
}

.cover-art-left {
    left: 0;
}

.cover-art-right {
    right: 0;
}

.cover-art-left img,
.cover-art-right img {
    max-width: 320px;
}

.page-home .content,
.page-home .logo-container {
    position: relative;
    z-index: 2;
}