body{
	background:url('../img/bg.jpg');
	margin:0;
	padding:0;
	font-family:GeogrotesqueRg;
}


@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600");

@font-face {
  font-family: 'GeogrotesqueRg';
  src: url('../font/Geogrotesque-Regular.eot');
  src: url('../font/Geogrotesque-Regular.eot?#iefix') format('embedded-opentype'),
    url('../font/Geogrotesque-Regular.woff') format('woff'),
    url('../font/Geogrotesque-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'GeogrotesqueBd';
  src: url('../font/Geogrotesque-Bold.eot');
  src: url('../font/Geogrotesque-Bold.eot?#iefix') format('embedded-opentype'),
    url('../font/Geogrotesque-Bold.woff') format('woff'),
    url('../font/Geogrotesque-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'GeogrotesqueMd';
  src: url('../font/Geogrotesque-Medium.eot');
  src: url('../font/Geogrotesque-Medium.eot?#iefix') format('embedded-opentype'),
    url('../font/Geogrotesque-Medium.woff') format('woff'),
    url('../font/Geogrotesque-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'GeogrotesqueSb';
  src: url('../font/Geogrotesque-SemiBold.eot');
  src: url('../font/Geogrotesque-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../font/Geogrotesque-SemiBold.woff') format('woff'),
    url('../font/Geogrotesque-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.header
{
	width:100%;
	height:100px;
	
}

.fs-title
{
	width: 120px;
    height: 120px;
    margin-left: 30px;
    padding-top: 6px;
    float:left;
}

.fs-title img
{
	width:100%;
}

.clr
{
	clear:both;
}

.header-content
{
    margin: auto;
    text-align: center;
    color: white;
    font-size: 30px;
    padding-top: 33px;
    position:absolute;
    left:0;
    right:0;
}

.rocket
{
	width:653px;
	height:570px;
	background:url('../img/rocket.png');
	position:absolute;
	bottom:0;
	left:0;
}

.content
{
    width: 690px;
    text-align: center;
    /* margin: auto; */
    /* margin-top: 100px; */
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9999;
    margin-left: -450px;
    margin-top: -122px;
    background: url(../img/head-bg.png) top center no-repeat;
    background-size: contain;
    padding-top: 282px;
}
.content-title
{
    color: #2f2d51;
    font-size: 40px;
    padding: 20px 0px 0px 0px;
}

.content-title-summary
{
	font-family:GeogrotesqueBd;
	font-size:61px;
	color:#2f2d51;
}




.form
{
	position:absolute;
	right:0;
	width:320px;
	background: -webkit-linear-gradient(to top, #5b5394, #e62377);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #5b5394, #e62377); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	height:-webkit-fill-available;
	z-index:999;
	top:0;
}

#form-action input[type=text], #form-action input[type=email]
{
      width: 90%;
    background: white;
    box-sizing: border-box;
    padding: 12px;
    margin: auto;
    margin-bottom: 10px;
    border: none;
    font-family:GeogrotesqueRg;
    font-size:14px;
}

.form-rules
{
  font-size:12px;
}

.slogan
{
  width:300px;
  margin:auto;
  margin-top:70px;
  text-align:center;
  margin-bottom:40px;
  font-size:12px;
  color:white;
}


.form-rules
{
  color:white;
  margin-top:10px;
}

.nl-form {
  width: 100%;
  margin: 0.3em auto 0 auto;
  font-size: 4em;
  line-height: 1.5;
}

.nl-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* normalize the input elements, make them look like everything else */
.nl-form select,
.nl-form button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}


/* custom field (drop-down, text element) styling  */
.nl-field {
  display: inline-block;
  position: relative;
}

.nl-field.nl-field-open {
  z-index: 10000;
}


/* drop-down list / text element */
.nl-field ul {
  position: absolute;
  visibility: hidden;
  background: #76C3BD;
  left: -0.5em;
  top: 50%;
  font-size: 80%;
  opacity: 0;
  -webkit-transform: translateY(-40%) scale(0.9);
  -moz-transform: translateY(-40%) scale(0.9);
  transform: translateY(-40%) scale(0.9);
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s, transform 0.3s;
}

.nl-field.nl-field-open ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: visibility 0s 0s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: visibility 0s 0s, opacity 0.3s, -moz-transform 0.3s;
  transition: visibility 0s 0s, opacity 0.3s, transform 0.3s;
}

.nl-field ul li {
  color: #fff;
  position: relative;
}

.nl-dd ul li {
  padding: 0 1.5em 0 0.5em;
  cursor: pointer;
  white-space: nowrap;
}

.nl-dd ul li.nl-dd-checked {
  color: #478982;
}

.no-touch .nl-dd ul li:hover {
  background: rgba(0,0,0,0.05);
}

.no-touch .nl-dd ul li:hover:active {
  color: #478982;
}

/* icons for some elements */
.nl-dd ul li.nl-dd-checked:before,
.nl-submit:before,
.nl-field-go:before {
  font-family: 'nlicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

.nl-dd ul li.nl-dd-checked:before {
  content: "\e000";
  position: absolute;
  right: 1em;
  font-size: 50%;
  line-height: 3;
}

.nl-ti-text ul {
  min-width: 8em;
}



.nl-form .nl-field-go {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  cursor: pointer;
  background: rgba(0,0,0,0.1);
  width: 1.8em;
  text-align: center;
  color: transparent;
}

.nl-field-go:before {
  content: "\e001";
  font-size: 75%;
  color: #fff;
  width: 100%;
  line-height: 2.5;
  display: block;
}




/* example field below text input */
.nl-ti-text ul li.nl-ti-example {
  font-size: 40%;
  font-style: italic;
  font-weight: 400;
  padding: 0.4em 1em;
  color: rgba(0,0,0,0.2);
  border-top: 1px dashed rgba(255,255,255,0.7);
}

.nl-ti-text ul li.nl-ti-example em {
  color: #fff
}

/* submit button */
.nl-submit-wrap {
  margin-top: 0.4em;
}

.nl-form .nl-submit {
  line-height: 3;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  background: #76C3BD;
  color: #fff;
  padding: 0 1em 0 0;
  font-size: 40%;
  font-weight: bold;
  letter-spacing: 3px;
}

.nl-submit:before {
  content: "\e001";
  color: #fff;
  float: left;
  padding: 0 0.7em;
  margin: 0 0.8em 0 0;
  background: #69B1A9;
}

.no-touch .nl-form .nl-submit:hover,
.no-touch .nl-form .nl-submit:active {
  background: #69B1A9;
}

.no-touch .nl-form .nl-submit:hover:before {
  background: #58a199;
}

/* overlay becomes visible when a field is opened */
.nl-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s;
}

.nl-field.nl-field-open ~ .nl-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

@media screen and (max-width: 45em) {
  .nl-form {
    font-size: 3em;
  }
}

@media screen and (max-width: 25em) {
  .nl-form {
    font-size: 2em;
  }
}


.nl-field-toggle, .nl-form select
{
line-height: inherit;
    display: inline-block;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px dashed #f9f9f9;
}

.interest
{
      width: 90%;
    margin: auto;
   
  font-size:18px;
  margin-bottom:18px;
}

.form-rules a 
{
  color:white;
}

.agit
{
      width: 90%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    /* background: linear-gradient(to top, #5b5394, #e62377); */
    box-shadow: 2px 2px 0px #5c5293;
    background: #e72376;
    color: white;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition:.5s;
    cursor:pointer;
}

.agit:hover
{
  background:white;
  color:#e72376;
  -webkit-transition:.5s;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 18px;
    cursor: pointer;
    line-height: 14px;
    display: inline-block;
    color: #fff;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


#form-action
{
	text-align:center;
}


.content-ul ul 
{
	list-style:none;
  padding:0;
  margin:0;
}

.content-ul
{
text-align: left;
    width: 570px;
    margin: auto;
    padding-top: 40px;
    padding-left: 140px;
}

.content-ul ul li
{
    color: #2f2d51;
    line-height: 33px;
    float: left;
    width: 50%;
    margin-bottom: 10px;
}

.content-ul ul li img {
    width: 30px;
    display: inline-block;
    margin-bottom: -10px;
}


.content-ul-img
{
	    width: 20px;
    float: left;
    margin-top: 5px;
}

textarea
{
    width: 262px;
    padding: 12px;
    min-height: 60px;
    border: none;
    margin-bottom: 10px;
    font-family: GeogrotesqueRg;
    font-size: 14px;
}



.textcontainer
{
      position: absolute;
    z-index: 99999;
    left: 20px;
    top: 20px;
}

body .particletext {
  text-align: center;
  font-size: 48px;
  display:block;
  width:150px;
  position:relative;
  margin:auto;
}

body .particletext img
{
  width:100%;
}

body .particletext.hearts > .particle {
  opacity: 0;
  position: absolute;
  background-color: #ef2f62;
  -webkit-animation: hearts 3s ease-in infinite;
          animation: hearts 3s ease-in infinite;
}
body .particletext.hearts > .particle:before, body .particletext.hearts > .particle:after {
  position: absolute;
  content: '';
  border-radius: 100px;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ef2f62;
}
body .particletext.hearts > .particle:before {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
body .particletext.hearts > .particle:after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@-webkit-keyframes hearts {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0%) rotate(45deg);
            transform: translate(0, 0%) rotate(45deg);
  }
  20% {
    opacity: 0.8;
    -webkit-transform: translate(0, -20%) rotate(45deg);
            transform: translate(0, -20%) rotate(45deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -1000%) rotate(45deg);
            transform: translate(0, -1000%) rotate(45deg);
  }
}
@keyframes hearts {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0%) rotate(45deg);
            transform: translate(0, 0%) rotate(45deg);
  }
  20% {
    opacity: 0.8;
    -webkit-transform: translate(0, -20%) rotate(45deg);
            transform: translate(0, -20%) rotate(45deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -1000%) rotate(45deg);
            transform: translate(0, -1000%) rotate(45deg);
  }
}


:root {
  --heart-angle: 45deg;
  --heart-fill: #c03;
  --heart-size: 6px; /* scale() causes blurry artifacts */
  --beat-contracted: translate(-50%,-50%) rotate(calc(var(--heart-angle)));
  --beat-less-expanded: translate(-50%,-50%) scale(1.1) rotate(calc(var(--heart-angle)));
  --beat-more-expanded: translate(-50%,-50%) scale(1.15) rotate(calc(var(--heart-angle)));
  --beat-resting-duration: 1s; /* 60bpm */
  --beat-excited-duration: .66s; /* 90bpm */
  --beat-omfg-duration: .27s; /* 220bpm */
}

@keyframes heart-beat {
  10% { transform: var(--beat-contracted); }
  40% { transform: var(--beat-more-expanded); }
  50% { transform: var(--beat-contracted); }
  60% { transform: var(--beat-less-expanded); }
  90% { transform: var(--beat-contracted); }
}

.proximity,
.heart .-layer::before,
.heart .-layer::after,
.heart .-layer,
.heart {
  height: var(--heart-size);
  position: absolute;
  width: var(--heart-size);
}

.proximity,
.heart {
left: 50%;
    bottom: 10px;
    margin-left: 4px;

}

.heart {
  animation: heart-beat var(--beat-resting-duration) ease-in-out infinite both;
  transform: var(--beat-contracted);
  /* will-change: transform; */
}

.heart .-layer::before,
.heart .-layer::after {
  border-radius: calc(var(--heart-size) / 2);
  content: '';
  display: block;
}
.heart .-layer::before { top: -50%; }
.heart .-layer::after { left: -50%; }

.heart .shape.-layer::before,
.heart .shape.-layer::after,
.heart .shape.-layer {
  background: var(--heart-fill);
}

.heart .glow {

}
.heart .glow::before,
.heart .glow::after {
  box-shadow: 0 0 var(--glow-size) var(--glow-size-fix) var(--glow-fill);
}
.heart .glow.--excited {
  --glow-fill: rgba(204,0,51, .7);
  --glow-size: calc(var(--heart-size) * 1.6);
  opacity: 0;
}

.proximity {
  padding: calc(var(--heart-size) * .7);
  transform: translate(-50%,-50%);
}

.heart:hover {
  animation-duration: var(--beat-excited-duration);
  cursor: pointer;
}
.proximity:hover + .heart .glow,
.heart:hover .glow { opacity: 0; }
.proximity:hover + .heart .glow.--excited,
.heart:hover .glow.--excited { opacity: 1; }

.heart:active {
  --heart-fill: #ffccd9;
  animation-duration: var(--beat-omfg-duration);
  cursor: wait;
  transition: none; /* not perfect */
}
.heart:active .glow.--excited {
  --glow-fill: rgba(255,204,217, .5);
}

.background {
  height: 100%;
  position: absolute;
  width: 100%;
}
.background.--light {

}
.background.--dark {
  background: #0e0e14;
  opacity: 0;
  /*
  relative scaling isn't accurate
  transform: scale(100); 1%
  body { overflow: hidden; }
  */
  transition: opacity .2s ease-in-out;
  /* will-change: opacity; */
}

.mobile-logo
{
  display:none;
}


.social
{
  position:absolute;
  left:0px;
  right:0px;
  text-align:center;
  bottom:10px;
  color:white;
  font-size:20px;
  font-family:GeogrotesqueRg;
}

.social span
{
  display:block;
}

.social a
{
  color:white;
  margin:5px;
}

.social a i
{
  -webkit-transition:.3s;
}

.social a:hover i
{
  color:#ff49a3;
  -webkit-transition:.3s;
}

.whatsapp
{
    font-size: 24px;
    text-decoration: none;
    color: white;
    text-align: center;
}
.whatsapp:hover i
{
  color:#00e675 !important;
}


.whatsapp-text
{
      display: block !important;
    margin-bottom: 0px !important;
    font-size: 20px !important;
}

.whatsapp-img
{
  width:22px;
}

.wrapper
{
   display: table;
  margin: 50px auto;
  position: relative;
}


@media screen and (max-width: 500px)
{

 .mobile-logo
  {
    width:161px;
    height:112px;
    background:url('../img/logo.png') center center no-repeat;
    background-size:cover;
    margin:auto;
    display:block;
  }

.form
{
position: relative;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 110px;
}
.content
{
      width: 290px;
    text-align: center;
    /* margin: auto; */
    /* margin-top: 100px; */
    position: relative;
    top: 0;
    left: 50%;
    z-index: 8;
    margin-left: -150px;
    margin-top: -42px;
    background: url(../img/head-bg.png) top center no-repeat;
    background-size: contain;
    padding-top: 103px;
}
.content-title
{
  font-size:20px;
}
.content-title-summary
{
  font-size:30px;
}

.content-ul
{
      text-align: left;
    width: 100%;
    margin: auto;
    padding-top: 20px;
    padding-left: 30px;
    padding-bottom:30px;
}

.content-ul ul li
{
  float:none;
  width:100%;
}

.header
{
  display: none
}

.rocket
{
  display:none;
}
}