









Primary style


*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  content: '';
}



.cd-logo, .cd-nav-trigger {
  position: fixed;
  display: inline-block;
}

.cd-logo {
  top: 28px;
  left: 5%;
}
.cd-logo img {
  display: flex;
  height: 20%;
  width: 20%;
  object-fit: contain;
  
}

.cd-nav-trigger {
  top: 18px;
  right: 5%;
  height: 44px;
  width: 44px;
  z-index: 5;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-nav-trigger .cd-icon {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: #000000;
  z-index: 10;
}
.cd-nav-trigger .cd-icon::before, .cd-nav-trigger .cd-icon:after {
  /* upper and lower lines of the menu icon */
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* apply transition to transform property */
  -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s;
}
.cd-nav-trigger .cd-icon::before {
  -webkit-transform: translateY(-6px) rotate(0deg);
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -o-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}
.cd-nav-trigger .cd-icon::after {
  -webkit-transform: translateY(6px) rotate(0deg);
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -o-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}
.cd-nav-trigger::before, .cd-nav-trigger::after {
  /* 2 rounded colored backgrounds for the menu icon */
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
}
.cd-nav-trigger::before {
  background-color: #51f4fa;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger::after {
  background-color: #51f4fa;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.cd-nav-trigger.close-nav::before {
  /* user clicks on the .cd-nav-trigger element - 1st rounded background disappears */
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.cd-nav-trigger.close-nav::after {
  /* user clicks on the .cd-nav-trigger element - 2nd rounded background appears */
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger.close-nav .cd-icon {
  /* user clicks on the .cd-nav-trigger element - transform the icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.close-nav .cd-icon::before, .cd-nav-trigger.close-nav .cd-icon::after {
  background-color: #000000;
}
.cd-nav-trigger.close-nav .cd-icon::before {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.cd-nav-trigger.close-nav .cd-icon::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

.cd-primary-nav {
  /* by default it's hidden */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 80px 0%;
  z-index: 3;
  background-color: #000000;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.3s;
  -moz-transition: visibility 0s, opacity 0.3s;
  transition: visibility 0s, opacity 0.3s;
}
.cd-primary-nav li {
  margin: 1.6em 0;
  text-align: center;
  text-transform: capitalize;
}
.cd-primary-nav a {
  font-size: 20px;
  font-size: 1.25rem;
  color: white;
	font-family: Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.no-touch .cd-primary-nav a:hover {
  color: grey;
}
.cd-primary-nav.fade-in {
  /* navigation visible at the end of the circle animation */
  visibility: visible;
  opacity: 1;
}


@media only screen and (min-width: 768px) {
  .cd-primary-nav li {
    margin: 2em 0;
  }
  .cd-primary-nav a {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    margin: 2.6em 0;
  }
  .cd-primary-nav a {
    font-size: 32px;
    font-size: 2rem;
  }
}

.cd-overlay-nav, .cd-overlay-content {
  /* containers of the 2 main rounded backgrounds - these containers are used to position the rounded bgs behind the menu icon */
  position: fixed;
  top: 18px;
  right: 5%;
  height: 4px;
  width: 4px;
  -webkit-transform: translateX(-20px) translateY(20px);
  -moz-transform: translateX(-20px) translateY(20px);
  -ms-transform: translateX(-20px) translateY(20px);
  -o-transform: translateX(-20px) translateY(20px);
  transform: translateX(-20px) translateY(20px);
}
.cd-overlay-nav span, .cd-overlay-content span {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.cd-overlay-nav.is-hidden, .cd-overlay-content.is-hidden {
  /* background fades out at the end of the animation */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
  /* main rounded colored bg 1 */
  z-index: 2;
}
.cd-overlay-nav span {
  background-color: #000000;
}

.cd-overlay-content {
  /* main rounded colored bg 2 */
  z-index: 4;
}
.cd-overlay-content span {
  background-color: #000000;
}
#large-header {
  background-image: url('https://www.marcoguglie.it/Codepen/AnimatedHeaderBg/demo-1/img/demo-1-bg.jpg');
}


	
	
	



	




 




.wrapper03{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -384px;
	left:50%;
	height: 80px;
	margin-top: 80px;
	position: absolute;
	width: 768px;
		
}

.wrapper031{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -384px;
	left:50%;
	height: 80px;
	margin-top: 185px;
	position: absolute;
	width: 768px;
		
}

.wrapper032{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -384px;
	left:50%;
	height: 80px;
	margin-top: 290px;
	position: absolute;
	width: 768px;
		
}
.wrapper033{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -384px;
	left:50%;
	height: 80px;
	margin-top: 395px;
	position: absolute;
	width: 768px;
		
}
.wrapper034{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -384px;
	left:50%;
	height: 80px;
	margin-top: 500px;
	position: absolute;
	width: 768px;
		
}


.wrapper035{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -384px;
	left:50%;
	height: 80px;
	margin-top: 605px;
	position: absolute;
	width: 768px;
		
}



.wrapper04{
    background-image:url("none");
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -364px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 60px;
	margin-top: 9.5px;
		
}


.wrapper041{
    background-image:url("none");
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -364px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 60px;
	margin-top: 9.5px;
		
		
}

.wrapper042{
    background-image:url("none");
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -364px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 60px;
	margin-top: 9.5px;
		
		
}

.wrapper043{
    background-image:url("none");
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -364px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 60px;
	margin-top: 9.5px;
		
	
		
}

.wrapper044{
    background-image:url("none");
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -364px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 60px;
	margin-top: 9.5px;
		
	
		
}

.wrapper045{
    background-image:url("none");
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -364px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 60px;
	margin-top: 9.5px;
		
	
		
}




.wrapper05{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: left;	
	background-color: transparent;
	color:#ffffff;
	border-width: 1px;
	border-radius: 25px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -134px;
	left:50%;
	height: 60px;
	position: absolute;
	padding-top: 22px;
	padding-left: 30px;
	width: 350px;
	font-family: Arial;
	font-size: 30px;
	
	
		
}

.wrapperb06{
	background-color:transparent;
	border:1px solid transparent;
	border-radius: 15px;
	display:inline-block;
	cursor:pointer;
	color: white;
	margin-left: -384px;
	left:50%;
	height: 80px;
	position: absolute;
	width: 768px;
	font-family: Arial;
	display:inline-block;
	cursor:pointer;
	
		
}


.wrapperb06:hover {
	
	
	color: red;
	
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 25px;
}






.button1 {
	background-color:transparent;
	border-radius:15px;
	border:1px solid #000000;
	display:inline-block;
	cursor:pointer;
	color:#000000; 
	font-family:Arial;
	font-size:20px;
	padding:6px 15px;
	text-decoration:none;
	margin-top: 57px;
	
}
.button1:hover {
	border-color:gray;
	color: gray;
}
.button1:active {
	position:relative;
	top:1px;
}
	



























/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}


/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */

html,body{ 
	width:100%;
	height:100%;
	background:#000000;
}

html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
  font:normal 75% Arial, Helvetica, sans-serif;
}

canvas{
  display:block;
  vertical-align:bottom;
}


/* ---- stats.js ---- */

.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}


/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}











@media only screen and (max-width: 768px) {
 
	



 




.wrapper03{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
	left:50%;
	height: 60px;
	margin-top: 80px;
	position: absolute;
	width: 350px;
		
}

.wrapper031{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
	left:50%;
	height: 60px;
	margin-top: 155px;
	position: absolute;
	width: 350px;
		
}

.wrapper032{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
	left:50%;
	height: 60px;
	margin-top: 230px;
	position: absolute;
	width: 350px;
		
}
.wrapper033{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
	left:50%;
	height: 60px;
	margin-top: 305px;
	position: absolute;
	width: 350px;
		
}
.wrapper034{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
	left:50%;
	height: 60px;
	margin-top: 380px;
	position: absolute;
	width: 350px;
		
}


.wrapper035{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;	
	background-color: rgba(255, 255, 255, 0.09);
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
	left:50%;
	height: 60px;
	margin-top: 455px;
	position: absolute;
	width: 350px;
		
}



.wrapper04{
  
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -154px;
	left:50%;
	height: 45px;
	position: absolute;
	width: 45px;
	margin-top: 8px;
	
		
}


.wrapper041{
    
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -154px;
	left:50%;
	height: 45px;
	position: absolute;
	width: 45px;
	margin-top: 8px;
	
		
}

.wrapper042{
   
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -154px;
	left:50%;
	height: 45px;
	position: absolute;
	width: 45px;
	margin-top: 8px;
	
		
}

.wrapper043{
    
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -154px;
	left:50%;
	height: 45px;
	position: absolute;
	width: 45px;
	margin-top: 8px;
	
		
}

.wrapper044{
    
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -154px;
	left:50%;
	height: 45px;
	position: absolute;
	width: 45px;
	margin-top: 8px;
		
}

.wrapper045{
    
	color: #000000;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -154px;
	left:50%;
	height: 45px;
	position: absolute;
	width: 45px;
	margin-top: 8px;
	
		
}




.wrapper05{
	display: block;
	align-items: center;
	justify-content: center;
	text-align: left;	
	background-color: transparent;
	color:#ffffff;
	border-width: 1px;
	background-position: center ;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -144px;
	left:50%;
	height: 40px;
	position: absolute;
	padding-top: 15px;
	padding-left: 90px;
	width: 220px;
	font-family: Arial;
	font-size: 25px;
	
		
}

.wrapperb06{
	background-color:transparent;
	border:1px solid transparent;
	display:inline-block;
	cursor:pointer;
	color: white;
	margin-left: -175px;
	left:50%;
	height: 60px;
	position: absolute;
	width: 350px;
	font-family: Arial;
	display:inline-block;
	cursor:pointer;
	
		
}


.wrapperb06:hover {
	
	color: red;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 25px;
}




	
	
}	





























