<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

@import "../fonts/Roboto-Regular.ttf"; 
@import "../fonts/Roboto-Bold.ttf"; 
@import "../fonts/LeagueSpartan-Bold.ttf"; 

/* UNIVERSAL */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  scroll-behavior: smooth;
  background: #000;
}

/* ROOT FONT STYLES */

* {
  font-family: 'Roboto-Regular', sans-serif;
  color: white;
  line-height: 1.3;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'LeagueSpartan-Bold', sans-serif;
  color: #C2FF59;
  line-height: 1.4;
  letter-spacing: -0.4pt;
}

h1 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  text-transform: uppercase
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
}

a {
  color: #AC3A89;
  text-decoration: none;
}

a:hover{
  color: #FF66FF;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}


/* ========  ========  CUSTOM CSS STARTS HERE ======== ======== */


/* ====== FORM ====== */

.form-container {
  margin-bottom: 3rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
}

form {
	padding: 20px 0;
	position: relative;
	z-index: 2;
}

.form-group {
  margin: 1rem 0;
}

label {
  text-align: left;
  display: block;
  font-size: 14px;
  margin: 5px 0;
}

input {
  appearance: none;
  box-sizing: border-box;
  outline: 0;
  width: 100%;
  border: none;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd; 
  padding: 12px 15px;
  margin-bottom: 8px;
  display: block;
  text-align: left;
  font-size: 18px;
  color: #333;
  font-weight: 300;
  
}

input[type="password"]:invalid:focus:not(:placeholder-shown) ~ .requirements {
  max-height: 200px;
  padding: 0 0px 20px 0px;
}
form &gt; div .requirements {
  padding: 0 0px 0 0px;
  max-height: 0;
  transition: 0.28s;
  overflow: hidden;
  color: red;
  text-align: left;
  font-size: 11px;
  font-style: italic;
}

input:focus{
  background: #fff;
}

	
button {
  appearance: none;
  outline: 0;
  background-color: #B107B1;
  border: 0;
  margin: 0.5rem 0;
  padding: 10px 15px;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  transition-duration: 0.25s;
}

button:hover {
  background:#FF66FF;
}

/* ====== GENERAL ====== */


.header-container, .nava, .marketing-section {
  position: relative;
}

.header-container {
  height: 65px;
}

.img-fluid {
  max-width: 100%; 
  height: auto;
} 

.gradient-overlay {
  background-color:rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.tilt-bg h2 {
  color: #fff;
}
.tilt-bg::before  {
  background: #B107B1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.tilt-right::before {
  transform: rotate(5deg) skew(5deg);
}

.tilt-left::before  {
  transform: rotate(-5deg) skew(-5deg);
}

.tilt-bg .container {
  z-index: 10;
  position: relative;
}


.df_logo {
  background: url(../img/fet_logo-horizontal.svg) no-repeat;
  background-size: 95px;
  display: block;
  width: 160px;
  height: 50px;
}

.df_logo-foot {
  background: url(../img/fet_logo-white-horizontal.png) no-repeat;
  background-size: 120px;
  display: block;
  width: 160px;
  height: 70px;
}

ul.table-content li  {
  list-style: none;
  padding-inline-start: 0px;
}

ul.table-content li a {
  text-align: left;
  text-decoration: none;
  font-weight: 600;
  padding: .5rem 0;
  display: block;
}


/*  Table  */

.table-responsive {
  overflow-x:auto;
}

.table {
  margin: 2rem 0 10rem 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}
th {
  padding: 1rem 0.25rem;
  text-align: left;
  border-bottom: 3px solid #3A3A3C;
}
td {
  padding: 0.5rem;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid #3A3A3C;
}
tbody tr:nth-child(odd) {
  background: #2B2B2D;
}

.fa.fa-check {
 display: block;
 height: 12px;
 width: 12px;
 background: #C2FF59;
 border-radius: 50%;
}

/* ====== HEADER and NAVA ====== */

.header-container  {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 1s ease;
}

.header-container .df_logo {
  margin-top: 5px;
}

.nava-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .6s ease;
  background: #2f0228;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, .1);
}
.nava-sticky  .nava {
  margin-top: 0px;
}

.nava {
  margin-top: 10px;
}

.nava .nav-mobile  {
  margin-top: 15px;
}

.nava .nav-mobile .menu-icon {
  display: inline-block;
  height: 16px;
  width: 24px;
  background: url(../ic/ic-menu-icon.svg) no-repeat;
  text-indent: 20000px;
  overflow: hidden;
}

.nava .nav-mobile ul {
  display: none;
  position: absolute;
  background: #fff;
  padding: 0;
  right: 0px;
  top: 30px;
  width: 50%;
  z-index: 999;
  box-shadow: 12px 12px 2px 1px rgba(0, 0, 0, .2);
  border-radius: 8px;
  overflow: hidden;
}

.nava .nav-mobile:hover ul {
  display: block;
}

.nava .nav-mobile ul li {
  display: block;
}

.nava .nav-mobile ul li a {
  color: #B107B1;
  text-transform: uppercase; 
  text-align: left;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
  display: block;
}

.nava .nav-mobile ul li &gt; a:hover {
  background: #F6ECF6;
}

.store-ic {
  display: none;
}

/* ====== TRON ====== */

.tron {
  position: relative;
  z-index: 20;
  padding-top: 100px;
  text-align: center
}

.tron-title, .tron-caption, .tron-title, .h1 {
  text-shadow: 0 4p 4px rgba(0, 0, 0, .1)
}

.tron-caption  {
  font-weight: 500;
}

.tron-img {
  background: url(../img/df_web-astronaut-bg.png) no-repeat;
  background-size: cover;
  background-position: 55% 50%;
  min-height: 710px;
  object-fit: cover;
  /*clip-path: circle(1965px at 50% -179%)*/
  position: relative;
}

.uncut-dl-btn {
  background: url(../img/android-uncut-btn.svg) no-repeat;
  background-size: 100%;
  display: block;
  height: 60px;
  width: 395px;
  margin-top: 10px;
}

/* ===== SECTIONS ====== */

.section {
  padding: 6rem 0;
}

.section-video {
  width: 100%;
  height: 320px;
}

.reason-section h2 {
  margin-bottom: 5rem;
}

.section .img-plc {
  text-align: center;
}

/* ===== Reasons section ====== */

.reason-section {
  text-align: center;

}
.reason-ic-plc {
  text-align: center;
  padding-bottom: 30px;
}

/* ===== Phone section ====== */ 

.connection-section, .love-section, .chat-section {
  position: relative;
  padding: 5rem 0;
}

.connection-section .img-plc, .love-section .img-plc {
  margin-top: -40%
}

/* ===== Marketing ====== */ 

.marketing-section {
  padding-top: 100px;
  margin-top: -64px;
}

.marketing-section-plc {
  padding: 5px;
  position: relative;
  text-align: center;
}

.marketing-section-img {
  background: url(../img/fet_web-superhero.png) no-repeat;
  background-position: 0% 100%;
  width: 60%;
  height: 540px;
  background-size: 100%;
  position: absolute;
  left: 0;
}

.marketing-section-bg {
  background: url(../img/df_fet_web-space-bg.png) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 450px;

}


/* ===== Download ====== */ 

.download-section {
  text-align: center;
  background: url(../img/df_fet_web-space-bg.png) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 430px;
}

/* ===== Footer ====== */ 

.footer {
  background: #000;
  padding: 3rem 0;
}

.footer h4 {
  color: #fff;
}

.footer ul {
  margin: 0;
  padding-inline-start: 10px;

}
.footer ul li {
  list-style: none;
  padding: 10px 0;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #C3DEEF;
  text-decoration: underline;
}

/* ===== ICONS ====== */

.launch-icon{
  background: url(../img/df_fet_logo-icon.svg) no-repeat;
  background-size: 120px, 120px;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

.reason-ic {
  display: inline-block;
  background-size: 100%;
  width: 120px;
  height: 120px;
}

.ic-search {
  background: url(../ic/fet_web-ic-unmask.png) no-repeat;
  background-size: 100%;
}

.ic-entertainment {
  background: url(../ic/fet_web-ic-lips.png) no-repeat;
  background-size: 100%;
}

.ic-love {
  background: url(../ic/fet_web-ic-flame.png) no-repeat;
  background-size: 100%;
}

.app-store-ic {
  background: url(../ic/app-store-ic.svg) no-repeat;
  background-size: 50%;
  height: 42px;
  width: 40px;
}

.google-store-ic {
  background: url(../ic/google-store-ic.svg) no-repeat;
  background-size: 50%;
  height: 40px;
  width: 40px;
}

.ic_success, .ic_failed {
  display: inline-block;
  width: 160px;
}


/* ===== COLORS and BUTTONS ===== */

.btn {
  background: #fff;
  border: none;
  border-radius: 20rem;
  color: #FF66FF;
  cursor: pointer;
  display: inline-block;
  font-size: .8rem;
  height: 1.8rem;
  line-height: 1.2rem;
  outline: 0;
  padding: .25rem .4rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-block {
  display: block;
  margin: 10px 0;
}

.btn-lg {
  font-size: 1rem;
  height: 1.8rem;
  padding: 0.5rem 2rem;
  font-weight: 600;
  line-height: 1.8rem;
}

.btn-primary {
  color: #3A3A3C;
  background: #FF66FF;
}

.btn-primary:hover {
  color: #fff;
  background: #AC3A89;
}

.store-btn {
  margin-right: 1rem;
  text-indent: -10000px;
  background-size:  100%;
  display: inline-block;
}

.app-store-white-btn {
  background: url(../ic/app-store-white.svg) no-repeat;
  width: 174px;
  height: 60px;
}

.google-play-white-btn {
  background: url(../ic/google-play-white.svg) no-repeat;
  width: 196px;
  height: 60px;
}

.app-store-black-btn {
  background: url(../ic/app-store-black.svg) no-repeat;
  width: 174px;
  height: 60px;
}

.google-play-black-btn {
  background: url(../ic/google-play-black.svg) no-repeat;
  width: 196px;
  height: 60px;
}

/* ==== SUBPAGE ==== */

#subpage .header-container {
  position: relative;
  transition: all .6s ease;
  background-color: #B107B1;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, .1);
}

#subpage .body-container {
  margin-top: 50px;
}

#subpage .tron-img {
  min-height: 220px;
}

#subpage .tron-img {
  clip-path: none;
  position: relative;
}
/* ==== Uncut Download ==== */

.android-uncut {
  background: url(../img/android-uncut.svg) no-repeat;
  background-size: contain;
  text-align: center;
  color: #101010;
  font-weight: 600;
  font-size: 16px;
  padding: 2px 30px;
  display: block;
  height: 60px;
  width: 375px;
  margin-top: 10px;
}

.uncut-download {
  padding: 2em 0;
}

.uncut-col {
  padding: 1em 0;
}

.uncut-col-title {
  position: relative;
}


.uncut-col p {
  font-size: 14px;
}

.uncut-step {
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  height: 40px;
  width: 40px;
  display: inline-block;
  background: #FF66FF;
  border-radius: 50%;
  margin-bottom: 24px;
}


.download-app {
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}
.version-nr {
  font-size: 14px;
  margin-right: 10px;
}

/* ========  ========  CUSTOM CSS ENDS ======== ======== */

/* ==== GRID SYSTEM ==== */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }

  .tron {
    padding-top: 120px;
  }
  .section.connection-section, .section.chat-section, .section.feed-section   {
    padding: 8rem 0;
  }
  .download-section {
    min-height: 600px;
    clip-path: circle(1700px at 50% 234%);
  }
  .hidden-md {
    display: none;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */

  h1 {
    font-size: 46px;
    text-transform: uppercase;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 36px;
    text-transform: uppercase
  }
  
  h4 {
    font-size: 1.125rem;
  }
  .form-container {
    margin-bottom: 3rem;
    width: 45%;
    margin: 0 auto;
    border-radius: 12px;
  }
  .tron-img {
    min-height: 830px;
  }

  #subpage .tron {
    padding-top: 100px;
    text-align: center;
  }
  .section.faq-section {
    padding: 5rem 0;
  }
  .marketing-section {
    min-height: 400px;
  }

  .marketing-section-plc {
    padding-top: 10%;
    margin-left: 20px;
    float: right;
    width: 50%;
    text-align: left;
  }

  .marketing-section-img {
    background: url(../img/fet_web-superhero.png) no-repeat;
    background-position: 0% 65%;
    width: 45%;
    height: 100%;
    background-size: 100%;
  }

  .download-section {
    min-height: 500px;
  }

  .section-video {
    width: 100%;
    height: 600px;
  }

  /* Grid */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }
    
  .hidden-sm {
    display: block;
  }

  .hidden-lg {
    display: none;
  }
  
  .tron {
    text-align: left;
  }
}

@media only screen and (min-width: 75em) { /* 1200px */
  .container {
    width: 75%;
    max-width: 75rem;
  }

  .hidden-md {
    display: block;
  }

   /* Nava */

   .nava .nav-mobile .menu-icon {
     display: none;
   }

  .nava .nav-mobile {
      margin-top: 5px; 
  }

  .nava .nav-mobile ul {
    position: inherit;
    padding: 0;
    margin: 0;
    height: 40px;
    background:none;
    display: block;
    right: inherit;
    top: inherit;
    width: auto;
    border-radius: 8px;
    z-index: 100;
    box-shadow: none;
  }
  
  .nava .nav-mobile:hover ul {
    display: block;
  }
  
  .nava .nav-mobile ul li {
    display: inline;
  }
  
  .nava .nav-mobile ul li a {
    color: #fff;
    text-transform: uppercase; 
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.3rem 1rem;
    margin: 0 2px -17px 2px;
    display: inline-block;
  }
  
  .nava .nav-mobile ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
  }

  .store-ic {
    display: none;
  }

  .nava-sticky .store-ic {
    display: inline-block;
    transition: ease-in-out .5s;
  }

  .store-ic a {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 9999px;  
    height: 35px;
  }

  .store-ic a.google-play-white-btn {
    background: url(../ic/google-play-white.svg) no-repeat;
    background-size: 100%;
    width: 100px;
  }

  .store-ic a.app-store-white-btn {
    background: url(../ic/app-store-white.svg) no-repeat;
    background-size: 100%;
    width: 90px;
  } 
  .nava .nav-mobile ul li .store-ic a.app-store-white-btn:hover {
    background: url(../ic/app-store-white.svg) no-repeat;
    border-radius: 0;
    background-size: 100%;
    width: 90px;
  } 

  .nava .nav-mobile ul li .store-ic a.google-play-white-btn:hover {
    background: url(../ic/google-play-white.svg) no-repeat;
    border-radius: 0;
    background-size: 100%;
    width: 100px;
  } 
  
  .tron {
    padding-top: 180px;
    text-align: left;
  }
  
  .tron-title, .tron-caption {
    padding-bottom: 1rem;
  }
  
  .tron-title, .h1 {
    padding-top: 2rem;
  }
  .tron-img {
    min-height: 1000px;

  }

  .btn-block {
    display: inline-block;
  }

  .section {
    padding: 8rem 0;
  }

  .connection-section .section-caption,
  .love-section  .section-caption,
  .chat-section .section-caption {
    padding-top: 5rem;
  }

  .section .caption {
    padding: 0 10rem;
  }

  .faq-section,  .marketing-section   {
    padding: 8rem 10rem;
  }

  .marketing-section {
    min-height: 500px;
  }
  

  .marketing-section-plc {
    padding-top: 20%;
  }
  .download-section {
    min-height:500px;
  }

   /* Subpage */

   #subpage .tron {
    padding-top: 90px;
    text-align: center;
  }

  .text-content {
    padding: 0 15%;
  }

  .email-content {
    padding: 10% 15%;
  }
  
}
</pre></body></html>