/********************************/
/* GENERAL */
/********************************/

/*

Colors:

color: #030F25;
color: #F7CCB3;
color: #FD3679;
color: #FE4D7B;
color: #FE6884;
color: #FE7886;
color: #FBCCB2;




*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  background-color: #030f25;
}

body {
  font-family: sans-serif;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
  color: #fff;
}

/********************************/
/* HEADER */
/********************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  height: 9.6rem;
  margin-top: 1.2rem;
  margin-left: 3.2rem;

  margin-bottom: 5rem;
}

.header img {
  width: 10%;
}

/********************************/
/* NAVIGATION */
/********************************/
.main-nav {
  padding-right: 4.2rem;
  margin-top: 3.2rem;
}
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  font-size: 2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;

  color: #fbccb2;
  font-weight: 500;

  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #f7ccb3;
  font-weight: 700;
}

.main-nav-link.active {
  color: #f7ccb3;
  font-weight: 700;
}

.get-started-btn {
  background-color: #fd3679;
  color: #fff;
  border: 2px solid #030f25;
  border-radius: 9px;
  padding: 1rem;
}

.get-started-btn:hover,
.get-started-btn:active {
  background-color: #030f25;
  color: #fd3679;
  border: 2px solid #fd3679;
  border-radius: 9px;
  padding: 1rem;
}

.comp-btn {
  background-color: #030f25;
  color: #fff;
  border: 2px solid #fd3679;
  border-radius: 9px;
  padding: 1rem;
}

.comp-btn:hover,
.comp-btn:active {
  background-color: #030f25;
  color: #fd3679;
  border: 2px solid #f7ccb3;
  border-radius: 9px;
  padding: 0.9rem;
}

/* MOBILE*/

.btn-mobile-nav {
  border: none;
  background-color: #030f25;
  cursor: pointer;

  display: none;
  z-index: 999;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/********************************/
/* SECTION HERO*/
/********************************/

.container {
  display: grid;
  align-items: center;
  justify-content: center;
}

.container img {
  width: 100%;
  position: relative;
}

.hero-header {
  position: absolute;

  color: #fd3679;
  top: 17rem;
  padding: 0 1rem;
  font-size: 5.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0.5rem 0 rgba(150, 148, 148, 0.304);
  z-index: 100;
  justify-self: center;
}

.hero-header span {
  font-size: 9.8rem;
  font-weight: bold;
  text-align: center;

  color: #fff;
  text-shadow: 0 0.9rem 0 rgba(150, 148, 148, 0.304);
}

/********************************/
/* Vision*/
/********************************/

.vision-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.vision-container img {
  display: inline-block;
  width: 15%;
}

.text-box {
  margin-top: 5.6rem;
  margin-left: 3.2rem;
}

.heading-secondary {
  font-size: 4.8rem;
  color: #f7ccb3;
  margin-bottom: 2.4rem;
  font-weight: 600;
}
.vision-text {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}

/********************************/
/* Divider */
/********************************/

.divider-left img {
  width: 50%;
  margin-top: 6.4rem;
  margin-bottom: 8.2rem;
}

/********************************/
/* Value Prop*/
/********************************/

.heading-tertiary {
  font-size: 4.8rem;
  color: #f7ccb3;
  margin-bottom: 6.4rem;
  font-weight: 600;

  text-align: center;
  margin-bottom: 6.4rem;
}

.value-prop-container {
  display: grid;
  align-items: center;
  justify-content: center;

  grid-template-columns: repeat(3, 1fr);

  gap: 2.4rem;

  margin: 0 3.2rem;
}

.item-container {
  display: grid;
  align-items: center;
  justify-content: center;

  gap: 2.4rem;
}

.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-container img {
  width: 40%;
  margin: 1.2rem;
}

.item-header {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-decoration: underline;
}

.item {
  display: block;
  align-self: center;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 1.8rem;

  border-radius: 9px;

  border: 2px solid #fff;
}

.item-summary {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.item-text {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}

/********************************/
/* Divider */
/********************************/

.divider-right {
  display: flex;
  flex-direction: row-reverse;
}

.divider-right img {
  width: 50%;
  margin-top: 6.4rem;
  margin-bottom: 8.2rem;
}

/********************************/
/*How it works*/
/********************************/

.how-container {
  display: grid;
  grid-template-columns: 0.5fr 3fr 2fr;
  align-items: center;
  gap: 2.4rem;
  margin: 0 3.2rem;

  margin-bottom: 9.8rem;
}

.app-img {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 3 / 4;
  grid-row: 1 / span 4;
}

.app-img img {
  width: 60%;
}

.how-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-icon img {
  width: 80%;
}

.how-text-box {
  margin-right: 2.4rem;
}

.how-text {
  font-size: 2.8rem;
  line-height: 1.5;
}

.dual-link {
  color: #f7ccb3;
  cursor: pointer;
}

/********************************/
/*Get started*/
/********************************/

.get-started-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 6rem;
}

.triangle-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.triangle-img img {
  width: 30%;
}

.store-icons img {
  width: 50%;
}

.icon-click {
  background-color: #030f25;
  border: none;
}

.icon-click:link,
.icon-click:visited {
  border: none;

  cursor: pointer;
}

.icon-click:hover,
.icon-click:active {
  border: none;

  cursor: pointer;
}

/********************************/
/*Footer*/
/********************************/

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-left {
  margin-left: 6rem;
}
.footer-left-header {
  margin-top: 6rem;
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 6rem;
  line-height: 1.5;
}
.questions {
  font-size: 4.2rem;
  font-weight: 600;
}
.form-container {
}
.form {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2.4rem;
  row-gap: 2.4rem;
  margin-right: 2.4rem;
  margin-bottom: 2.4rem;
}

.form label {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 1.2rem;

  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;

  color: #030f25;

  border: none;
  background-color: #fdfdfa;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.form input::placeholder {
  color: #fd3679;
  font-size: 1.4rem;
}

.form textarea::placeholder {
  color: #fd3679;
  font-size: 1.4rem;
}

.btn-form,
.btn-form:link,
.btn-form:visited {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 1.8rem;
  background-color: #fd3679;
  color: #fff;
  font-weight: 600;
  border: 1px solid #f7ccb3;

  padding: 0.9rem;

  border-radius: 0.5rem;

  cursor: pointer;
  font-family: inherit;

  transition: all 0.3s;
}

.btn-form:hover,
.btn-form:active {
  text-decoration: underline;
  color: #fff;
  font-weight: 600;
}
.copyright {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.full-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-logo img {
  width: 80%;
}

.company {
}
.company-details {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.company-details-header {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.full-logo {
}

/********************************/
/*MEDIA QUERIES*/
/********************************/

@media (max-width: 66em) {
  html {
    font-size: 50%;
  }
  .item {
    padding: 1.2rem;
  }

  .item-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 55em) {
  .btn-mobile-nav {
    display: block;
    margin-right: 1.2rem;
  }

  .header {
    margin-bottom: 2rem;
  }

  .main-nav {
    background-color: rgba(3, 15, 37, 0.9);
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

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

    padding-right: 0.1rem;

    transition: all 0.5s;

    opacity: 0;

    pointer-events: none;

    visibility: hidden;
  }

  .nav-open .main-nav {
    opacity: 1;

    pointer-events: auto;

    visibility: visible;

    z-index: 150;
  }

  .main-nav-list {
    flex-direction: column;
    gap: 4.8rem;
    font-size: 2.8rem;
  }

  .main-nav-link {
    color: #333;
    font-weight: 700;
  }

  .nav-open .icon-mobile-nav[name="close-outline"] {
    display: block;
  }

  .nav-open .icon-mobile-nav[name="menu-outline"] {
    display: none;
  }

  .item-header {
    font-size: 2.4rem;
  }

  .item-text {
    font-size: 1.2rem;
  }
  .item-summary {
    font-size: 1.8rem;
  }
  .hero-header {
    top: 14rem;
  }

  .hero-header {
    font-size: 4rem;
  }

  .hero-header span {
    font-size: 6rem;
  }
  .heading-secondary {
    font-size: 2.4rem;
  }

  .heading-tertiary {
    font: 2.4rem;
  }
}

@media (max-width: 47em) {
  .item-header {
    font-size: 2.4rem;
  }

  .item-text {
    font-size: 1.6rem;
  }
  .item-summary {
    font-size: 2rem;
  }

  .how-container {
    grid-template-columns: 1fr 3fr 2fr;
  }

  .how-text {
    font-size: 2.4rem;
  }
}

@media (max-width: 34em) {
  .hero-header {
    font-size: 2.4rem;
  }

  .hero-header span {
    font-size: 4.2rem;
  }

  .heading-secondary {
    font-size: 3.2rem;
  }

  .vision-text {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .heading-tertiary {
    font-size: 3.2rem;
  }

  .value-prop-container {
    grid-template-columns: 1fr;

    gap: 2.4rem;
  }

  .item-container {
    display: grid;
    align-items: center;
    justify-content: center;

    margin-bottom: 3.2rem;
  }

  .item-container img {
    width: 30%;
    margin: 1rem;
  }

  .item-header {
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
  }

  .item {
    padding: 1.4rem;
  }

  .heading-secondary {
    font-size: 2.4rem;
  }

  .heading-tertiary {
    font-size: 2.4rem;
  }

  .how-container {
    display: grid;
    grid-template-columns: 1fr 6fr;
    align-items: center;
    gap: 2.4rem;
    margin: 0 3.2rem;

    margin-bottom: 9.8rem;
  }

  .app-img {
    grid-column: 1 / 3;
    grid-row: 1 / span 2;
  }

  .app-img img {
    width: 30%;
  }

  .how-icon img {
    width: 80%;
  }

  .how-text-box {
    margin-right: 2.4rem;
  }

  .how-text {
    font-size: 2rem;
    line-height: 1.3;
  }
}
