/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap");
:root {
  --header-height: 3rem;
  /* Colors */
  --hue: 45;
  --sat: 98%;
  --primary-color: hsl(var(--hue), var(--sat), 60%);
  --primary-color-light: hsl(var(--hue), var(--sat), 85%);
  --primary-color-lighter: hsl(var(--hue), var(--sat), 80%);
  --secondary-color: hsl(var(--hue), var(--sat), 53%);
  --title-color: hsl(var(--hue), 4%, 15%);
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 65%);
  --body-color: hsl(var(--hue), 0%, 100%);
  --container-color: #FFF;
  --scroll-bar-color: hsl(var(--hue), 4%, 85%);
  --scroll-thumb-color: hsl(var(--hue), 4%, 75%);
  /* Font */
  --body-font: "Noto Sans", sans-serif;
  --large-font-size: 2rem;
  --h2-font-size: 1.2rem;
  --h3-font-size: 1.1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  --font-normal: 400;
  --font-bold: 700;
  /* Margin */
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  /* Transition */
  --trans-length: 0.5s;
  --trans-length-short: 0.3s;
  /* Responsive Font */
}
@media screen and (min-width: 968px) {
  :root {
    --large-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: var(--trans-length);
}

h1, h2, h3 {
  color: var(--text-color);
  font-weight: var(--font-bold);
  line-height: 1.5;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/* Toggle Button */
.toggle-theme {
  cursor: pointer;
  position: absolute;
  top: 0.8rem;
  right: 2rem;
  color: var(--title-color);
  font-size: var(--h2-font-size);
}

/* Variables for Dark Theme */
body.dark-theme {
  --primary-color-light: hsl(var(--hue), var(--sat), 75%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 80%);
  --body-color: hsl(var(--hue), 8%, 13%);
  --container-color: hsl(var(--hue), 8%, 16%);
  --scroll-bar-color: hsl(var(--hue), 4%, 30%);
  --scroll-thumb-color: hsl(var(--hue), 4%, 25%);
}

.dark-theme .footer {
  background-color: var(--container-color);
}

/* Reusable CSS classes */
.section {
  padding: 2rem 0 1rem;
}
.section__title {
  color: var(--text-color);
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: var(--mb-1);
}

.svg__img {
  width: 350px;
  height: auto;
  justify-self: center;
}
.svg__color {
  fill: var(--primary-color);
}
.svg__blob {
  fill: var(--primary-color-light);
}

/* Layout */
.container {
  max-width: 968px;
  margin: 0 var(--mb-1-5) 0 var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: black;
  border-radius: 3rem;
  font-weight: var(--font-bold);
  padding: 0.75rem 1.5rem;
  transition: var(--trans-length-short);
}
.button__link {
  min-width: 9rem;
  text-align: center;
}
.button__active {
  background-color: var(--container-color);
  border: 2px solid var(--primary-color);
  color: var(--text-color);
}
.button__active:hover {
  color: initial;
}
.button:hover {
  background-color: var(--secondary-color);
}
.button__header {
  display: none;
}
.button__cta {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}
.button__icon {
  font-size: var(--h3-font-size);
}

.about__container {
  gap: 2.5rem;
}
.about__description {
  text-align: center;
}

.app__container {
  gap: 2.5rem;
}
.app__description {
  text-align: center;
}
.app__buttons {
  display: grid;
  padding: 2rem 0;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 1rem;
}
.app__img {
  width: 300px;
}

.contact__container {
  padding-bottom: 3rem;
}
.contact__description {
  text-align: center;
}
.contact__content {
  align-self: start;
}
.contact__details {
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__data {
  font-weight: initial;
  color: var(--text-color);
}
.contact__icon {
  font-size: var(--h3-font-size);
}

.header {
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: var(--trans-length);
}

/* NAV */
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__menu {
  /* Show collapsable menu, except when viewport is desktop/larger size */
}
@media screen and (max-width: 1000px) {
  .nav__menu {
    background-color: var(--container-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 2rem 0;
    transition: var(--trans-length);
    width: 91%;
    z-index: var(--z-fixed);
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.nav__link, .nav__logo, .nav__toggle {
  color: var(--title-color);
  font-weight: var(--font-bold);
}
.nav__logo {
  font-size: var(--h2-font-size);
}
.nav__toggle {
  cursor: pointer;
  font-size: var(--h2-font-size);
}

/* Nav Toggle: Show */
.show__menu {
  top: calc(var(--header-height) + 1rem);
}

/* Active Link upon scrolling */
.active-link {
  position: relative;
}
.active-link::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 50%;
}

/* Change the header background upon scrolling */
.scroll-header {
  box-shadow: 0 1px 4px var(--primary-color-lighter);
}

.footer {
  background-color: var(--primary-color-lighter);
  padding-bottom: 2.5rem;
}
.footer__container {
  row-gap: 2rem;
}
.footer__logo, .footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
}
.footer__logo {
  display: inline-block;
  font-weight: var(--font-bold);
  color: var(--title-color);
}
.footer__description, .footer__link {
  font-size: var(--small-font-size);
  color: var(--title-color);
}
.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__social {
  display: flex;
  column-gap: 1rem;
}
.footer__social-link {
  font-size: var(--h3-font-size);
  color: var(--title-color);
}
.footer__copy {
  font-size: var(--smaller-font-size);
}

.home__title {
  color: var(--title-color);
  font-size: var(--large-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-0-75);
}
.home__description {
  margin-bottom: var(--mb-2);
}

.safety__container {
  gap: 2.5rem;
}
.safety__description {
  text-align: center;
}
.safety__link {
  color: var(--text-color-light);
  font-style: italic;
}

.pricing__container {
  padding: 1rem 0;
  row-gap: 2rem;
}
.pricing__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 1rem;
  background-color: var(--container-color);
  box-shadow: 0 2px 6px hsla(var(--hue), 100%, 15%, 0.2);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}
.pricing__subtitle {
  font-size: var(--h3-font-size);
  font-weight: normal;
  color: var(--text-color-light);
}
.pricing__price {
  font-size: var(--normal-font-size);
  font-weight: 700;
}

/* =================== Mobile ==================== */
@media screen and (max-width: 450px) {
  .svg__img {
    width: 100%;
  }

  .section {
    padding: 3.5rem 1rem 1rem;
  }

  .app__buttons {
    grid-template-columns: max-content;
  }
}
/* ================= Tablet ==================== */
@media screen and (min-width: 576px) {
  .section {
    margin: 0 auto;
    padding: 6rem 3rem;
  }

  .section__title {
    text-align: initial;
  }

  .home__container,
.about__container,
.safety__container,
.pricing__header,
.app__container,
.contact__container,
.footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home__container,
.about__container,
.safety__container,
.pricing__header,
.app__container,
.contact__container {
    align-items: center;
    column-gap: 3rem;
  }

  .about__description,
.safety__description,
.app__description,
.contact__description {
    text-align: initial;
  }

  .home__img,
.app__img,
.safety__img {
    order: -1;
  }

  .app__buttons {
    justify-content: initial;
  }
}
/* ================= Desktop and larger ===================== */
@media screen and (min-width: 1000px) {
  body {
    margin: 0;
  }

  .section {
    margin: 0 auto;
    padding: 5rem;
  }

  .container {
    max-width: 1320px;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav.container {
    max-width: 100%;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 2.5rem;
  }
  .nav__toggle {
    display: none;
  }

  .toggle-theme {
    position: initial;
  }

  .home__container {
    height: 100vh;
  }

  .pricing__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__container {
    grid-template-columns: 2.5fr 2fr 1fr;
  }

  .button__header {
    display: initial;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer__copy {
    grid-column: 1/3;
  }
}
.scrollup {
  position: fixed;
  background-color: var(--primary-color);
  right: 1.5rem;
  bottom: -10rem;
  display: flex;
  padding: 0.5rem;
  border-radius: 0.25rem;
  z-index: var(--z-tooltip);
  opacity: 0.8;
  transition: var(--trans-length);
}
.scrollup:hover {
  background-color: var(--secondary-color);
  opacity: 1;
}
.scrollup__icon {
  font-size: var(--normal-font-size);
  color: var(--title-color);
}

/* Show Scroll Up Icon upon scrolling */
.show__scrollup {
  bottom: 3rem;
}

/* Custom Scroll Bar */
::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 0.3rem;
  background-color: var(--scroll-bar-color);
}
::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 0.3rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*# sourceMappingURL=styles.862040d1.css.map */