/* =================================================================== 
 *
 * =================================================================== */
/* import css reset https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
@import "/assets/css//micons/micons.css";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/** Media Queries */
#video {
  display: flex;
  height: calc(100vh - 70px) !important;
  width: auto !important;
  align-items: center;
  justify-content: center;
}

.Preview .wrapper {
  margin-top: 70px;
  position: relative;
}
@media (max-width: 599px) {
  .Preview .wrapper {
    margin-top: 60px;
  }
}

.privacy {
  margin: 100px auto;
  position: relative;
  padding: 0 1rem;
  display: flex;
  align-items: baseline;
  max-width: 1200px;
}
@media (max-width: 599px) {
  .privacy {
    margin-top: 80px;
  }
}

body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

hr {
  width: 20vw;
  border: 0;
  height: 2px;
  background-image: var(--gradient-gtb);
}

/* Variables */
:root {
  --grey: #ededed;
  --green: #43cea2;
  --blue: #185a9d;
  --gradient-btg: linear-gradient(90deg, rgba(24, 90, 157, 1) 0%, rgba(67, 206, 162, 1) 100%);
  --gradient-gtb: linear-gradient(315deg, rgba(24, 90, 157, 1) 0%, rgba(67, 206, 162, 1) 100%);
  --button-trans: cubic-bezier(0.17, 1.6, 0.17, 1);
}

/* Utilities */
.social-list * {
  list-style: none;
}

.content-wrapper {
  max-width: 1440px;
  width: 100%;
  padding: 0 1em;
}

.button {
  padding: 0.5em 1em;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--button-trans);
  background: white;
  color: var(--green);
  width: max-content;
  border-radius: 0.5em;
}
.button:hover {
  background: var(--green);
  color: white;
}

.button-header {
  color: var(--blue);
  background-color: white;
}
.button-header:hover {
  color: white;
  background-color: var(--blue);
}

section {
  display: flex;
  align-items: center;
  flex-direction: column;
}

i {
  display: block;
  color: white;
  transition: color var(--button-trans);
  transition: filter var(--button-trans);
}
i::before:hover {
  color: var(--green);
  filter: drop-shadow(0 0 10px #fff);
}

.intro-header {
  padding: 0.5em;
}

.lead {
  padding: 1.5em;
}

/* Header */
.header {
  background: var(--gradient-btg);
  width: 100%;
  height: 70px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  z-index: 99;
}
@media (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-button-wrapper {
  display: flex;
  gap: 2em;
}
.header-button-wrapper #appstore-button {
  color: white;
  background-color: var(--blue);
}
.header-button-wrapper #appstore-button:hover {
  color: var(--blue);
  background-color: white;
}

.brand img {
  height: 90px;
}

/* Hero-content */
#hero {
  height: 80vh;
  margin-top: 70px;
  background: url(/assets/images/world_nasa.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
@media (max-width: 599px) {
  #hero {
    margin-top: 60px;
    height: 550px;
  }
}
#hero .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  height: 100%;
  padding-top: 3em;
}
@media (max-width: 599px) {
  #hero .contents {
    grid-template-columns: 1fr;
  }
}
#hero .contents .hero-content-left {
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
}
@media (max-width: 599px) {
  #hero .contents .hero-content-left {
    justify-content: unset;
    gap: 1.5em;
  }
}
#hero .contents .hero-content-left h1,
#hero .contents .hero-content-left h3 {
  color: white;
}
#hero .contents .hero-image-right {
  padding: 0 2em;
  position: absolute;
  bottom: -140px;
  right: 0;
}
@media (max-width: 599px) {
  #hero .contents .hero-image-right {
    position: relative;
    bottom: unset;
    right: unset;
    padding: 1em 0;
  }
}
#hero .contents .hero-image-right img {
  max-width: 380px;
}
@media (max-width: 599px) {
  #hero .contents .hero-image-right img {
    max-width: 310px;
    margin: auto;
  }
}
#hero .contents .social-list {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 0 1em;
}
#hero .contents .social-list i {
  font-size: 2rem;
}

.ios #appstore-button {
  background: url(/assets/images/appstore.png) no-repeat;
  background-size: cover;
  color: transparent;
}

.android #appstore-button {
  background: url(/assets/images/google-play.png) no-repeat;
  background-size: cover;
  color: transparent;
}

/* Contact */
#contact {
  padding: 1em;
  background: white;
}

.contact-intro {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2em 1em;
}

.contact-company-name {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 0 0 0;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em;
}
@media (max-width: 599px) {
  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }
}

/* About Us */
#about {
  padding: 3em;
  background: white;
}

.about-intro {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2em 1em;
}
@media (max-width: 599px) {
  .about-intro {
    margin-top: 170px;
  }
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em;
}
@media (max-width: 599px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 1em;
}
.feature .icon {
  font-size: 2rem;
  background: var(--gradient-gtb);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#download {
  display: none;
  position: relative;
  padding: 3em;
  background: white;
}

.non-mobile #download {
  display: flex;
}
.non-mobile #download .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.non-mobile #download .download-badges {
  padding: 2em;
  display: flex;
  gap: 2em;
}
@media (max-width: 599px) {
  .non-mobile #download .download-badges {
    padding: 2em 0;
    gap: 1em;
  }
}
.non-mobile #download .lead {
  max-width: 75ch;
}
.non-mobile #download img {
  height: 4em;
  width: auto;
}
@media (max-width: 599px) {
  .non-mobile #download img {
    height: unset;
  }
}

/* Footer */
footer {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--gradient-gtb);
  padding: 3em;
  flex-direction: column;
}
footer .content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  justify-items: center;
}
@media (max-width: 599px) {
  footer .content-wrapper {
    grid-template-columns: 1fr;
    justify-items: baseline;
  }
}
footer p,
footer a,
footer h4 {
  color: white;
}
footer * {
  text-decoration: none;
  list-style: none;
  margin-inline-start: 0;
  padding-inline-start: 0;
}
footer .social-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  font-size: 1.5em;
}
@media (max-width: 599px) {
  footer .social-list {
    gap: 0.5em;
    line-height: 0;
  }
}

/*# sourceMappingURL=main.css.map */
