:root {
	--white: #ffffff; /* white*/
	--blue: #1AB6CD; /* AI blue */	
	--black: #000000; /* supra */
	--gray: #888888;

	--duration: .25s; 
	--radius: 0px;	

	--PioneerShadow: 0px 0px 25px #0FBCCD;
	--PioneerGlow: 0px 0px 44.7px 21.46px #20B8CB, 0px 0px 15.65px 0px #0FBCCD, 0px 0px 8.94px 0px #000000E5;
}


@keyframes ai-pulse {
    0% {
		transform: scale(1);
		filter: drop-shadow(0px 0px 0px #0FBCCD);
	}   
    50% {
		transform: scale(1.1);
		filter: drop-shadow(0px 0px 15px #0FBCCD);
	}
    100% {
		transform: scale(1);
		filter: drop-shadow(0px 0px 0px #0FBCCD);
	}	
}


@keyframes gradientMove {
	0% { 
		
		
	}
	50% { 
		
		
	}
	100% { 
		
		
	}
}


.bgc-b{background-color: var(--black) !important;}
.bgc-w{background-color: var(--white) !important;}
.bgc-bl{background-color: var(--blue) !important;}

.fc-b{color: var(--black);}
.fc-w{color: var(--white);}
.fc-bl{color: var(--blue);}

.ai-pulse{
	animation: ai-pulse 1.5s ease 0s infinite;
}
.gradient-animation-example {
	width: 100%;
	height: 300px;
	background: linear-gradient(90deg, #000000, #00000081, #000000);
	background-size: 200% 200%;
	animation: gradientMove 5s ease infinite;
}

@font-face {
      font-family: 'Inter';
      src: url(fonts/Inter-VariableFont.ttf) format('truetype');
}

html {
	min-height:100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;	
	min-height: 100vh;
	font-weight: 400;
	background-color: var(--black);
    color: var(--white);
	position: relative;
	overflow-x: hidden;	
}
a {
	color: var(--blue);
    text-decoration: none;
    background-color: transparent;
	transition: color var(--duration) ease;
}
a:hover{
	text-decoration: none;
}
ul, ol {
    padding: 0;
}
ul li {
    list-style-type: none;
}
:active, :hover, :focus, :active:focus {
    outline: 0;
    outline-offset: 0;
}
:active, :focus, :active:focus {
	box-shadow: none !important;
}

.f-b {font-weight: 700;}
.f-m {font-weight: 500;}
.f-l {font-weight: 300;}


h1, .h1{
	color: var(--blue);
	font-weight: 400;
}
h2, .h2{}
h3, .h3{}
h4, .h4{}
h5, .h5{}
h6, .h6{}


/* --- elements -- */
.btn-primary{
	color: var(--black);
    background-color: var(--blue);	
	border: 1px solid var(--blue);
	border-radius: var(--radius);
	transition: all var(--duration) ease;
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
}
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary:active:focus{
	color: var(--blue) !important;
    background-color: var(--white) !important;
	border-color: var(--blue) !important;
	box-shadow: none;
}

.btn-cls{
	transition: transform 0.5s ease-out 0s;
}
.btn-cls:hover{
	transform: rotate(90deg);
}
.btn-cls {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 37px;
    position: absolute;
    transition: all .3s ease;
    background: transparent;
}
.btn-cls:before {
    content: url(./img/arrow.svg);
    transition: all .3s ease;
    transform: rotate(0deg) scale(2);
    transform-origin: 50% 50%;
    margin: -6px 0 0 0;
}

/* --- Header -- */
header{
	position: sticky;
	width: 100%;
	top: 0;
	z-index: 200;
	background-color: var(--black);	
}


main .logo{
	padding-top: 1rem;
	padding-bottom: 1rem;
	height: 6rem;
	width: 50%;
	display: flex;
    justify-content: flex-end;
}
main .logo span{
	display: flex;	
}
main .logo img{
	height: 100%;
	width: 100%;	
}

main .logo .ai{
	filter: drop-shadow(var(--PioneerShadow));
}


/* --- Sections -- */

main{
	min-height: 100vh;
}

main section{
	padding-block: 5rem;
	position: relative;
}


section h1{
    margin-bottom: 0;
}

/* --- Footer -- */


footer{
	padding-top: 2rem;
	padding-bottom: 2rem;		
}

.copyright{
	font-size: .75rem;
	text-transform: uppercase;
	text-align: left;
	padding-top: 0;
	padding-bottom: 0;	
}


/* --- To TOP Button -- */
#toTop {
	display: flex;
	position: fixed;
	bottom: 100px;
	right: 0px;
	width: 50px;
	height: 50px;
	border-top-left-radius: var(--radius);
	border-bottom-left-radius: var(--radius);
	background-color: var(--blue);
    justify-content: center;
    align-items: center;
    z-index: 1040;	
	transition: background-color var(--duration) ease;
}
#toTop {
	display: none;	
}
#toTop:hover{
	cursor: pointer;
	background-color: var(--gray);		
}
#toTop img{
    width: 30px;
	
}
#toTop:hover img{

}

/* --- cookienotification banner-- */
#cookie_notification {
	display: none;
	position: fixed;
	width: 100%;
	padding: 25px;
	bottom: 0;
	background-color: white;
	box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.25);
	z-index: 1200;
}
#cookie_notification.show{
    display: flex;
}
#cookie_notification > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#cookie_notification .note{
	margin: 0;
	font-size: 0.875rem;
	text-align: left;
	color: var(--black);
}
#cookie_notification .cookie_accept{
	padding: 0.5rem 1rem;
	margin: 0 0 0 25px;	
}

/* --- Modal -- */



/* --- Responsive -- */

@media (min-width: 1600px) {
	.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: 1520px;
	}
}

@media (max-width: 1599px) {

}

@media (max-width: 1399px) {
	main .logo {
		height: 5.5rem;
	}
}
@media (max-width: 1199px) {
	main {

	}
	footer{
		padding-bottom: 1rem;
	}
	
}
@media (max-width: 991px) {
	header{

	}
	main{
		
	}
	main .logo {
		height: 5rem;
	}	
	footer{

	} 
}
@media (max-width: 767px) {  
	html {
		font-size: 15px;
	}
	header{
			
	}
	main {
		
	}
	main .logo{
		height: 4.5rem;
	}
	main section {
		padding-block: 3rem;
	}

	.footer{

	}
	#toTop{
		bottom:75px;
		width: 50px;
		height: 50px;			
	}			
}
@media (max-width: 575px) {
	html {
		font-size: 14px;
	}
	header{

	}

	main {
		
	}
	main section {
		padding-block: 2rem;
	}
	.footer{
		
	}
	
}