* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Raleway", sans-serif;
}
.primary__button {
  padding: 12px;
  background-color: hsl(224, 93%, 58%);
  border: hsl(224, 93%, 58%);
  border-radius: 2px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.primary__button:hover {
  opacity: 75%;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
}
.navbar__brand {
  width: 100px;
}
.brand__logo {
  width: 100%;
  padding-top: 5px;
}
.nav__item {
  list-style-type: none;
}
.nav__item li {
  float: left;
  padding-left: 15px;
}
.nav__item a {
  text-decoration: none;
}
.hero__container {
  padding: 0px 25px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3.5rem 0rem 6rem 0rem;
}
.hero__image__container {
  width: 100%;
}
.hero__image {
  width: 100%;
}
.hero__description {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.hero__heading {
  font-size: 25px;
}
.hero__paragraph {
  font-weight: 500;
  line-height: 1.3rem;
  padding: 0px 8px;
  font-size: 0.9rem;
}
.hero__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0px 0.9rem;
}
.hero__form__input {
  padding: 12px 15px;
  border: 1px solid black;
  border-radius: 2px;
}
#main-img {
  height: 50px;
  width: 100%;
  background-image: url(./images/bg-curve-mobile.svg);
}
.stay__productive__container {
  background-color: hsl(240, 75%, 98%);
  padding-top: 3rem;
}
.stay__productive__image__container {
  width: 100%;
}
.stay__productive__image {
  width: 100%;
  padding: 0rem 1.5rem;
}
.stay__productive__description {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  padding: 4rem 1.1rem;
}
.stay__productive__heading {
  color: hsl(243, 87%, 12%);
}
.stay__productive__paragraph {
  color: gray;
}
.sub__heading__container {
  display: flex;
  gap: 0.9rem;
}
.sub__heading {
  cursor: pointer;
  color: hsl(170, 45%, 43%);
  padding-bottom: 7px;
}
.sub__heading__image {
  width: 1.2rem;
  cursor: pointer;
}
.command__container {
  margin: 1rem 1rem;
  padding: 1.3rem 0.4rem 1.2rem 1.8rem;
  background-color: white;
  text-align: left;
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px rgba(221, 221, 221, 0.75);
}
.command__quote__image {
  width: 15px;
}
.command__paragraph {
  text-align: left;
  font-size: 13px;
  line-height: 1.2rem;
  font-weight: 600;
  padding: 0.7rem 0rem;
}
.command__profile__information {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.command__profile__image {
  border-radius: 40rem;
  width: 2.4rem;
}
.command__profile__name {
  font-size: 0.95rem;
}
.command__profile__desc {
  font-size: 10px;
}
.get__early__access__container {
  padding: 3.3rem 2rem 4.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background-color: hsl(238, 22%, 44%);
}
.get__early__access__description {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  color: white;
}
.get__early__access__paragraph {
  line-height: 1.3rem;
}
.get__early__access__form {
  padding: 0px 1rem;
}
.get__early__access__form__input {
  padding: 12px 5.4rem 12px 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid white;
  border-radius: 2px;
}
.get__early__access__button {
  padding: 12px 4.5rem 12px 5rem;
  background-color: hsl(224, 93%, 58%);
  border: hsl(224, 93%, 58%);
  border-radius: 2px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.get__early__access__button:hover {
  opacity: 75%;
}
.footer__section {
  background-color: hsl(243, 87%, 12%);
  padding: 3rem 2rem;
  color: white;
}
.footer__logo {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(52deg)
    brightness(105%) contrast(101%);
}
.footer__contents {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.footer__content__1 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__logo__container {
  padding-bottom: 2rem;
}
.footer__content__1__info {
  display: flex;
  gap: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__link:hover {
  cursor: pointer;
  color: hsl(238, 22%, 44%);
}
.social__media__icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.fa-brands:hover {
  cursor: pointer;
  color: hsl(238, 22%, 44%);
}

@media (min-width: 768px) {
  .navbar {
    padding: 30px 45px;
  }
  .brand__logo {
    width: 110px;
  }
  .nav__item li {
    padding-left: 30px;
  }
  .hero__container {
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    padding: 0px 40px;
  }
  .hero__description {
    text-align: left;
  }
  .hero__heading {
    line-height: 2rem;
  }
  .hero__paragraph {
    padding: 0px 0px;
  }
  .hero__form {
    flex-direction: row;
    padding: 0rem 0rem;
  }
  #main-img {
    height: 50px;
    background-image: url(./images/bg-curve-mobile.svg);
  }
  .stay__productive__container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0rem 40px 0px 40px;
  }
  .stay__productive__image {
    padding: 0rem;
  }
  .stay__productive__description {
    text-align: left;
    align-items: flex-start;
  }
  .stay__productive__heading {
    font-size: 1.42rem;
  }
  .sub__heading__container {
    align-items: start;
    justify-content: flex-start;
    text-align: left;
  }
  .command__container {
    margin: 0rem 3rem 0rem 0rem;
  }
  .get__early__access__container {
    padding: 4rem 40px;
    flex-direction: row;
    align-items: center;
  }
  .get__early__access__description {
    text-align: left;
  }
  .get__early__access__heading {
    font-size: 1.42rem;
  }
  .get__early__access__button {
    padding: 12px 2.5rem 12px 2.5rem;
  }
  .get__early__access__form__input {
    padding: 12px 6rem 12px 1rem;
  }
  .footer__section {
    padding: 4rem 40px;
  }
  .footer__logo__container {
    padding-bottom: 1rem;
  }
  .footer__contents {
    flex-direction: row;
    gap: 4.5rem;
    align-items: baseline;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 35px 55px;
  }
  .brand__logo {
    width: 120px;
  }
  .nav__item li {
    padding-left: 45px;
  }
  .hero__container {
    padding: 0px 55px;
    gap: 7rem;
    margin: 3.5rem 0rem 9rem 0rem;
  }
  .hero__heading {
    font-size: 2.3rem;
    line-height: 3.1rem;
  }
  .hero__paragraph {
    font-size: 1.03rem;
    line-height: 1.5rem;
  }
  .hero__form__input {
    padding: 0rem 8rem 0rem 1rem;
  }
  .primary__button {
    padding: 12px 4rem;
  }
  #main-img {
    height: 100px;
    background-image: url(./images/bg-curve-desktop.svg);
  }
  .stay__productive__container {
    padding: 0rem 55px 2rem 55px;
    gap: 3rem;
  }
  .bg-curve-desktop {
    width: 100%;
  }
  .stay__productive__image {
    padding: 6rem 2rem;
  }
  .stay__productive__heading {
    font-size: 2.1rem;
  }
  .stay__productive__paragraph {
    font-size: 1.03rem;
    line-height: 1.5rem;
  }
  .command__container {
    margin-right: 14rem;
  }
  .get__early__access__container {
    padding: 5.5rem 70px;
    gap: 12rem;
  }
  .get__early__access__heading {
    font-size: 2.1rem;
  }
  .get__early__access__paragraph {
    line-height: 1.5rem;
  }
  .get__early__access__form__input {
    padding: 12px 18rem 12px 1rem;
  }
  .footer__section {
    padding: 5rem 70px;
  }
  .footer__logo__container {
    padding-bottom: 2rem;
  }
  .footer__contents {
    gap: 13rem;
  }
}

@media (min-width: 1440px) {
}
