@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;

  font-family: 'Quicksand', sans-serif;
}

html {
  scroll-behavior: smooth;
}

h1 {
  color: white;
}

h3 {
  font-size: 1rem;
}

p {
  font-size: 0.9rem;
}

a {
  color: #D3D3D3;

  text-decoration: none;

  font-size: 0.8rem;
}

span {
  background: -webkit-linear-gradient(#0099D7, #1BC8D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
  background: #fff;
}

header {
  height: 4rem;

  background: white;

  display: flex;

  justify-content: space-between;
  align-items: center;

  padding: 0 5rem;

  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}

main {
  width: 70rem;

  margin: 0 auto;
}

footer {
  background: #222222;

  display: flex;

  justify-content: space-between;

  padding: 3rem 5rem;

  margin-top: 3.5rem;
}

.countdown {
  width: auto;

  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  justify-content: space-between;
  align-items: center;

  text-align: center;

  gap: 1.5rem;
}

.countdown-time {
  text-align: center;
}

.countdown-time > h2 {
  font-size: 1.2rem;

  color: #0099D7;
}

.countdown-time > p {
  font-size: 0.8rem;

  font-weight: 100;
}

.mobile-navigation {
  width: 100vw;
  height: 100vh;

  position: fixed;

  background: rgba(34, 34, 34, 0.8);

  display: flex;

  flex-direction: column;
  flex-wrap: nowrap;

  justify-content: center;
  align-items: center;

  text-align: center;

  display: none;
}

.mobile-navigation > a {
  font-size: 1.5rem;
  font-weight: 600;

  line-height: 4rem;

  color: white;
}

.mobile-navigation > ion-icon {
  color: white;

  font-size: 2rem;

  margin-bottom: 2rem;

  cursor: pointer;
}

.burger-menu {
  display: none;

  font-size: 1.3rem;

  cursor: pointer;
}

.center {
  text-align: center;
}

.subheader {
  height: 1.5rem;

  background: #EEEEEE;

  display: flex;

  justify-content: space-between;
  align-items: center;

  flex-direction: row;
  flex-wrap: nowrap;

  padding: 0 5rem;
}

.subheader > p {
  font-size: 0.7rem;
  font-weight: 600;

  color: #777777;
}

.navigation-header {
  display: flex;

  align-items: center;

  flex-direction: row;
  flex-wrap: nowrap;
}

.navigation-header > .link {
  margin-left: 4rem;
}

.logo {
  width: 3rem;

  transition: all 0.2s ease-in-out;
}

.logo:hover {
  opacity: 0.7;

  transform: scale(1.05);
}

.auth {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: row;
  flex-wrap: nowrap;
}

.capsule {
  padding: 0.7rem 1.5rem;

  border: 1px solid #DDDDDD;
  border-radius: 30px;

  margin-left: 2rem;

  transition: all 0.2s ease-in-out;
}

.capsule:hover {
  transform: scale(0.95);

  box-shadow: 0px 0px 7px 0px rgba(150, 150, 150, 0.4);
}

.link {
  cursor: pointer;

  transition: all 0.2s ease-in-out;

  font-weight: 500;
}

.link > a {
  color:rgba(34, 34, 34);
  
  font-size: 0.9rem;
}

.link:hover {
  opacity: 0.5;
}

.preview {
  width: 100%;
  height: 20rem;

  margin-top: 3rem;

  background: #DDDDDD;

  border-radius: 30px;
}

.preview,
.intro-preview,
.feature-1,
.feature-3,
.feature-4 {
  /* box-shadow: 0px 0px 2px 0px rgba(150, 150, 150, 0.5); */

  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.logo-footer {
  display: flex;

  flex-direction: row;

  margin-bottom: 1rem;
}

.logo-footer > img {
  width: 2.5rem;

  transition: all 0.2s ease-in-out;
}

.logo-footer > img:hover {
  opacity: 0.7;

  transform: scale(0.95);
}

.logo-footer > p {
  font-weight: 800;

  color: white;

  align-self: flex-end;

  margin-bottom: 5px;
  margin-left: 3px;
}

.text-footer {
  color: #CCCCCC;

  font-size: 0.8rem;
}

.copyright {
  color: #CCCCCC;

  font-size: 0.7rem;

  margin-top: 3rem
}

.navigation-footer {
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;
}

.navigation-list {
  margin-left: 5rem;
  margin-top: 1rem;
}

.navigation-list > h1 {
  font-size: 1rem;

  margin-bottom: 0.7rem;
}

.navigation-list > p {
  margin-bottom: 0.2rem;
}

.scrollup {
  width: 2.7rem;
  height: 2.7rem;

  background: rgba(235, 235, 235);

  border-radius: 100%;

  position: fixed;

  bottom: 3rem;
  right: 3rem;

  display: flex;

  justify-content: center;
  align-items: center;

  cursor: pointer;

  transition: all 0.2s ease-in-out;

  display: none;
}

.scrollup:hover {
  transform: scale(0.9);

  opacity: 0.5;
}

.scrollup > ion-icon {
  font-size: 1.4rem;

  opacity: 0.7;
}

.intro {
  display: flex;

  justify-content: space-between;

  flex-direction: row;
  flex-wrap: nowrap;

  padding-top: 3rem;
}

.intro > h2 {
  font-size: 3rem;
}

.intro-text {
  width: 40%;

  display: flex;

  align-items: center;
}

.intro-text > h2 {
  font-size: 2.7rem;
  font-weight: 800;

  line-height: 4rem;
}

.intro-preview {
  width: 50%;
  height: 15rem;

  background: #DDDDDD;

  border-radius: 30px;
}

.block {
  display: block !important;

  padding-top: 4rem;
}

.desc {
  opacity: 0.4;

  margin-top: 0.5rem
}

.feature-1 {
  width: 60%;
  height: 15rem;

  background: #DDDDDD;

  border-radius: 30px;
}

.feature-2 {
  width: 35%;
  height: 15rem;

  background: #DDDDDD;

  border-radius: 30px;
}

.feature-3 {
  width: 30%;
  height: 15rem;

  background: #DDDDDD;

  border-radius: 30px;
}

.feature-4 {
  width: 65%;
  height: 15rem;

  background: #DDDDDD;

  border-radius: 30px;
}

.question {
  width: 45%;

  background: rgba(150, 150, 150, 0.1);

  padding: 0.8rem 1rem;

  border-radius: 7px;

  color: #444444;
}

.question > h2 {
  font-size: 1.1rem;

  margin-bottom: 1rem;
}

.question > p {
  opacity: 0.7;
}

.grow {
  transition: all 0.5s ease-in-out;
}

.grow:hover {
  transform: scale(1.02);
}

@media only screen and (max-width: 1130px) {
  main {
    width: 90vw;
  }

  .intro {
    padding-top: 2rem;
  }

  .intro-text > h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 2.5rem;
  }

  .block {
    padding-top: 4rem;
  }
}

@media only screen and (max-width: 1010px) {
  header {
    padding: 0 1rem;
  }

  .subheader {
    padding: 0 1rem;
  }

  .navigation-header > p {
    display: none;
  }

  .burger-menu {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-right: 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .subheader {
    justify-content: center;
  }

  .subheader-text-1,
  .subheader-text-2 {
    display: none;
  }

  .preview {
    margin-top: 1rem;
  }

  .question {
    width: 42%;
  }

  footer {
    padding: 3rem 2rem;
  
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 735px) {
  .intro > h2 {
    font-size: 2.5rem;
  }

  .intro-text > h2 {
    font-size: 1.5rem;
    line-height: 3.5rem;
  }

  .desc {
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 560px) {
  h3 {
    font-size: 0.9rem;
  }

  .intro-text > h2 {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }

  .questions {
    padding-top: 0rem;

    flex-direction: column;

    justify-content: center;
    align-items: center;
  }

  .question {
    width: 90%;

    margin-bottom: 1rem
  }

  .feature-1,
  .feature-4 {
    width: 100%;
  }

  .feature-2,
  .feature-3 {
    display: none;
  }

  footer {
    padding: 2rem 2rem;
  
    margin-top: 0.5rem;
  }

  .scrollup {
    bottom: 2rem;
    left: 2rem;
  }

  .countdown {
    gap: 0.8rem;
  }

  .countdown-time > h2 {
    font-size: 1rem;
  }
  
  .countdown-time > p {
    font-size: 0.7rem;
  }
}