html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: hsl(0, 0%, 98%);
  font-family: "Epilogue", sans-serif;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

.flex {
  display: flex;
}
.flex-fd-rr {
  flex-direction: row-reverse;
}
.flex-fd-c {
  flex-direction: column;
}
.flex-fd-cr {
  flex-direction: column-reverse;
}
@media (max-width: 78.125em) {
  .flex-fd-cr-mobile {
    flex-direction: column-reverse;
  }
}
.flex-jc-c {
  justify-content: center;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-fe {
  justify-content: flex-end;
}
.flex-ai-c {
  align-items: center;
}
@media (max-width: 53.0625em) {
  .flex-no-mobile {
    display: block;
  }
}

.darken {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
  pointer-events: none;
}

.hidden {
  display: none;
}
@media (min-width: 53.125em) {
  .hidden-desktop {
    display: none;
  }
}
@media (max-width: 53.0625em) {
  .hidden-mobile {
    display: none;
  }
}

.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.button {
  border-radius: 0.625em;
  padding: 0.75em 1.375em;
  border: 0.125rem solid;
  width: 8.75rem;
  transition: all 0.2s ease-in;
}
.button--light {
  color: hsl(0, 0%, 41%);
  background-color: hsl(0, 0%, 98%);
  border-color: hsl(0, 0%, 41%);
}
.button--dark {
  color: hsl(0, 0%, 98%);
  background-color: hsl(0, 0%, 8%);
  border-color: hsl(0, 0%, 8%);
}
.button:hover {
  background-color: hsl(0, 0%, 98%);
  border-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 8%);
}

.header {
  padding: 2em 2.5em;
}
@media (max-width: 47.5625em) {
  .header {
    padding: 1.5em 1em;
  }
}

.nav__list {
  list-style: none;
}
.nav__item:not(:last-of-type) {
  margin-right: 2.5em;
}
.nav__link {
  color: hsl(0, 0%, 41%);
  transition: all 0.2s ease-in;
}
.nav__link:hover {
  color: hsl(0, 0%, 8%);
  cursor: pointer;
}

.side-bar {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.side-bar__section {
  position: absolute;
  background-color: hsl(0, 0%, 98%);
  width: 64%;
  height: 100%;
  padding: 1.25em;
  right: 0;
  overflow-y: auto;
}
.side-bar__section :nth-child(2) .nav__item:not(:last-of-type) {
  margin-bottom: 1.875em;
}
.side-bar__section :nth-child(3) .nav__item:not(:last-of-type) {
  margin-bottom: 1.25em;
}
.side-bar__section .nav__list {
  margin-top: 3.125em;
  padding: 0;
}
.side-bar__section .nav__item {
  margin-right: 0;
}
.side-bar__section .nav__auth-buttons {
  text-align: center;
}
.side-bar__section .nav__auth-buttons .button {
  display: block;
  width: 100%;
}
.side-bar__section .dropdown__list {
  padding: 0.9375em;
}
.side-bar__section .dropdown__list .dropdown__item:not(:last-of-type) {
  margin-bottom: 1.875em;
}

.dropdown {
  background: hsl(0, 0%, 98%);
  border: 0.125em solid hsl(0, 0%, 98%);
  border-radius: 0.625em;
  box-shadow: 0 0 0.3125em 0 rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 0 0 0.3125em 0 rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0 0 0.3125em 0 rgba(0, 0, 0, 0.45);
  padding: 1.25em;
  position: absolute;
  top: 5.625em;
}
.dropdown--first {
  left: 6.875em;
}
.dropdown--second {
  left: 18.125em;
}
.dropdown__list {
  list-style-type: none;
  padding: 0;
}
.dropdown__item:not(:last-of-type) {
  margin-bottom: 0.9375em;
}
.dropdown__link {
  color: hsl(0, 0%, 41%);
}
.dropdown__icon {
  background-size: auto;
  background-repeat: no-repeat;
  padding-left: 1.875em;
}
.dropdown__icon--todo {
  background-image: url("../../images/icon-todo.svg");
}
.dropdown__icon--calendar {
  background-image: url("../../images/icon-calendar.svg");
}
.dropdown__icon--reminders {
  background-image: url("../../images/icon-reminders.svg");
}
.dropdown__icon--planning {
  background-image: url("../../images/icon-planning.svg");
}

@media (max-width: 78.125em) {
  .intro {
    display: flex;
    justify-content: center;
  }
}
.intro__wrapper {
  margin-bottom: 3.125rem;
}
.intro__textual-content {
  margin-top: 3.125rem;
  margin-right: 9.375rem;
}
@media (max-width: 78.125em) {
  .intro__textual-content {
    margin-top: 1.25em;
    margin-right: 0;
    text-align: center;
  }
  .intro__textual-content .button {
    margin: 0 auto;
  }
}
.intro__heading {
  color: hsl(0, 0%, 8%);
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0;
  width: 33.125rem;
}
@media (max-width: 78.125em) {
  .intro__heading {
    font-size: 2.1875rem;
    width: auto;
  }
}
.intro__text {
  color: hsl(0, 0%, 41%);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 3.75rem;
  width: 28.125rem;
}
@media (max-width: 62.5em) {
  .intro__text {
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
    width: auto;
  }
}
@media (min-width: 62.5625em) {
  .intro__image {
    width: 30em;
    height: 40em;
  }
}
@media (max-width: 62.5em) {
  .intro__image {
    width: 100%;
  }
}

.testimonials {
  margin-top: 6.875rem;
  padding: 0 1em;
}
@media (max-width: 62.5em) {
  .testimonials {
    margin-top: 1.875rem;
  }
}
@media (max-width: 62.5em) {
  .testimonials__image {
    width: 20%;
  }
}/*# sourceMappingURL=style.css.map */