html {
  font-size: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  position: fixed;
  overflow-x: hidden;
}

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

a {
  color: #fff;
}

button {
  font-family: "Rubik", sans-serif;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 64rem) {
  h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
}

h2 {
  font-size: 1.25rem;
}
@media (min-width: 64rem) {
  h2 {
    font-size: 1.75rem;
  }
}

ul {
  list-style-type: none;
}

i {
  font-size: 1.5rem;
}

.container {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media (min-width: 40rem) {
  .container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 64rem) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 87.5rem) {
  .container {
    max-width: 1200px;
  }
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

.grid {
  display: grid;
}

@media (max-width: 63.9375rem) {
  .hide-for-mobile {
    display: none !important;
  }
}

@media (min-width: 64rem) {
  .hide-for-desktop {
    display: none !important;
  }
}

.btn {
  display: inline-block;
  border-radius: 0.25rem;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
}
.btn-p {
  padding: 0.8rem 2rem;
}
.btn-px {
  padding-left: 2rem;
  padding-right: 2rem;
}
.btn-py {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.btn:hover {
  background-color: #fff;
}
.btn-red {
  background-color: hsl(0deg, 94%, 66%);
  color: #fff;
}
.btn-red:hover {
  border-color: hsl(0deg, 94%, 66%);
  color: hsl(0deg, 94%, 66%);
}
.btn-blue {
  background-color: hsl(231deg, 69%, 60%);
  color: #fff;
}
.btn-blue:hover {
  border-color: hsl(231deg, 69%, 60%);
  color: hsl(231deg, 69%, 60%);
}
.btn-grey {
  background-color: #E0E0E8;
  color: #242A45;
}
.btn-grey:hover {
  border-color: #242A45;
}

@media (max-width: 63.9375rem) {
  .noscroll {
    overflow: hidden;
  }
}
.title-head {
  font-weight: 500;
  color: #242A45;
}
.title-sub {
  color: hwb(229 57% 37%);
  letter-spacing: 0.08rem;
}

.header {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 63.9375rem) {
  .header.open .overlay {
    left: 0;
  }
  .header.open .overlay__links {
    opacity: 1;
  }
  .header.open .overlay__media {
    opacity: 1;
  }
  .header.open .header__logo #title {
    fill: #fff;
  }
  .header.open .header__logo #circle {
    fill: #fff;
  }
  .header.open .header__logo #bookmark {
    fill: #242A45;
  }
  .header.open .hamburger > span {
    background-color: #fff;
    overflow: hidden;
  }
  .header.open .hamburger > span:first-child {
    transform-origin: 90% 100%;
    transform: rotate(315deg);
  }
  .header.open .hamburger > span:nth-child(2) {
    transform: scale(0);
  }
  .header.open .hamburger > span:last-child {
    transform-origin: 100% 0;
    transform: rotate(-315deg);
  }
}
.header .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 100%;
  padding-top: 6rem;
  background: rgba(36, 42, 69, 0.9);
  text-align: center;
  z-index: 9;
  transition: all 300ms ease-in-out;
}
.header .overlay > .container {
  position: relative;
  height: 100%;
}
.header .overlay__links {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.125rem;
  padding: 0;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.header .overlay__links li {
  padding: 1.5rem 0;
  border-top: 1px solid hwb(229 57% 37%);
}
.header .overlay__links li > a {
  font-family: "Rubik", sans-serif;
}
.header .overlay__links li > button {
  width: 100%;
  border: 3px solid #fff;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  padding: 0.875rem 0;
  font-size: 1rem;
  letter-spacing: 0.125rem;
  transition: all 300ms ease-in-out;
}
.header .overlay__links li > button:hover {
  color: #242A45;
  background: #fff;
}
.header .overlay__media {
  position: absolute;
  bottom: 4rem;
  right: 0;
  left: 0;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.header .overlay__media__wrapper > a:not(:last-child) {
  margin-right: 2.5rem;
}
.header__logo {
  line-height: 0;
  position: relative;
  z-index: 10;
}
.header__logo #title {
  transition: fill 400ms ease-in-out;
  fill: #242A45;
}
.header__logo #circle {
  transition: fill 400ms ease-in-out;
  fill: hsl(231deg, 69%, 60%);
}
.header__logo #bookmark {
  transition: fill 400ms ease-in-out;
  fill: #fff;
}
.header .hamburger {
  position: relative;
  flex-direction: column;
  width: 2.5rem;
  height: 2.5rem;
  transition: transform 300ms ease-in-out;
  z-index: 10;
}
.header .hamburger > span {
  display: inline-block;
  width: 1.25rem;
  height: 0.25rem;
  background-color: hsl(299deg, 31%, 21%);
  transition: all 300ms ease-in-out;
}
.header .hamburger > span:not(:last-child) {
  margin-bottom: 0.1875rem;
}
.header__links {
  list-style-type: none;
  letter-spacing: 0.125rem;
  font-size: 0.75rem;
}
.header__links__item {
  text-transform: uppercase;
}
.header__links__item > a {
  color: #000;
  margin-right: 3rem;
  transition: color 300ms ease-in-out;
}
.header__links__item > a:hover {
  color: hsl(0deg, 94%, 66%);
}
.header__links__item > button {
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-size: 0.75rem;
}

.hero {
  padding: 2.5rem 0;
  text-align: center;
}
@media (min-width: 64rem) {
  .hero {
    text-align: left;
    padding: 4.375rem 0;
  }
}
@media (min-width: 64rem) {
  .hero__wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.hero__illustration {
  position: relative;
  width: 19.4375rem;
  height: 12.875rem;
  background-image: url("../img/illustration-hero.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero__illustration::before {
  content: "";
  display: block;
  position: absolute;
  width: 150%;
  height: 100%;
  top: 20%;
  left: 20%;
  background: rgba(83, 104, 223, 0.9);
  border-bottom-left-radius: 6rem;
  border-top-right-radius: 6rem;
  z-index: -1;
}
@media (min-width: 64rem) {
  .hero__illustration::before {
    top: 10%;
    left: 25%;
    border-bottom-left-radius: 10rem;
    border-top-right-radius: 10rem;
  }
}
@media (min-width: 64rem) {
  .hero__illustration {
    width: 29.75rem;
    height: 23.75rem;
  }
}
.hero__text {
  margin-top: 4rem;
  line-height: 1.5;
}
@media (min-width: 64rem) {
  .hero__text {
    max-width: 30.25rem;
  }
}
.hero__text > h1 {
  text-transform: capitalize;
}
.hero__text > p {
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
@media (min-width: 64rem) {
  .hero__text > p {
    font-size: 1rem;
  }
}
.hero__cta {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 64rem) {
  .hero__cta {
    max-width: 21.5rem;
  }
}

.features {
  padding: 6.25rem 0;
  text-align: center;
}
.features__title {
  text-align: center;
}
@media (min-width: 64rem) {
  .features__title {
    max-width: 34rem;
    margin: 0 auto;
  }
}
.features__title > p {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 64rem) {
  .features__title > p {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .features__tabs {
    grid-template-columns: repeat(3, 1fr);
    max-width: 45rem;
    margin: 0 auto;
    margin-top: 4rem;
  }
}
.features__tabs > .tab {
  position: relative;
  font-size: 0.875rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #E0E0E8;
  color: hwb(229 57% 37%);
  text-transform: capitalize;
  padding: 1.25rem 0;
  transition: color 300ms ease-in-out;
}
.features__tabs > .tab:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 9rem;
  height: 0.25rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background-color: hsl(0deg, 94%, 66%);
  transition: transform 300ms ease-in-out;
}
@media (min-width: 64rem) {
  .features__tabs > .tab:after {
    width: 100%;
  }
}
.features__tabs > .tab.active {
  color: #242A45;
}
.features__tabs > .tab.active:after {
  transform: translateX(-50%) scale(1);
}
@media (max-width: 63.9375rem) {
  .features__tabs > .tab:first-child {
    border-top: 1px solid #E0E0E8;
  }
}
.features__modules {
  margin-top: 4.5rem;
  position: relative;
  height: 26.25rem;
}
@media (min-width: 64rem) {
  .features__modules {
    margin-top: 4rem;
  }
}
.features__modules .module {
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: opacity 400ms ease-in, transform 300ms ease-in-out;
}
@media (min-width: 64rem) {
  .features__modules .module {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.features__modules .module__image {
  position: relative;
  max-width: 20rem;
  width: 100%;
  height: 12.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 auto;
}
@media (min-width: 64rem) {
  .features__modules .module__image {
    max-width: 33.5rem;
    height: 21.625rem;
  }
}
.features__modules .module__image::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 100%;
  top: 20%;
  right: 20%;
  border-bottom-right-radius: 6.25rem;
  border-top-left-radius: 6.25rem;
  background-color: hsl(231deg, 69%, 60%);
  z-index: -1;
}
.features__modules .module.active {
  opacity: 1;
  transform: scale(1);
}
.features__modules .module#bookmarking .module__image {
  background-image: url("../img/illustration-features-tab-1.svg");
}
.features__modules .module#searching .module__image {
  background-image: url("../img/illustration-features-tab-2.svg");
}
.features__modules .module#sharing .module__image {
  background-image: url("../img/illustration-features-tab-3.svg");
}
@media (min-width: 64rem) {
  .features__modules .module__text {
    max-width: 24rem;
    text-align: left;
  }
}
.features__modules .module__text > h2 {
  margin-top: 5rem;
}
.features__modules .module__text > p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.features__modules .module__cta {
  text-transform: capitalize;
}

.download {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 64rem) {
  .download__title {
    max-width: 34rem;
    margin: 0 auto;
  }
}
.download__title > p {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 64rem) {
  .download__title > p {
    font-size: 1rem;
  }
}
.download__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 64rem) {
  .download__cards {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 924px;
    margin: 0 auto;
  }
}
.download__cards .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 2.5rem;
  max-width: 17.375rem;
  width: 100%;
  height: 23.125rem;
  border-radius: 1.125rem;
  box-shadow: 0rem 0.375rem 1.5rem -0.75rem hsl(231deg, 69%, 60%);
}
@media (min-width: 64rem) {
  .download__cards .card:nth-child(2) {
    margin-top: 5rem;
  }
  .download__cards .card:nth-child(3) {
    margin-top: 7.5rem;
  }
}
.download__cards .card__info {
  padding-top: 3rem;
}
.download__cards .card__info > h3 {
  margin-top: 2.125rem;
  font-size: 1rem;
}
.download__cards .card__info > p {
  margin-top: 1rem;
  font-size: 0.75rem;
}
.download__cards .card__cta {
  border-top: 0.375rem dotted #E0E0E8;
  padding: 1.5rem;
}
.download__cards .card__cta > .cta__button {
  width: 100%;
}

.faq {
  padding: 7.25rem 0;
  text-align: center;
}
@media (min-width: 64rem) {
  .faq__title {
    max-width: 34rem;
    margin: 0 auto;
  }
}
.faq__title > h2 {
  text-transform: capitalize;
}
.faq__title > p {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 64rem) {
  .faq__title > p {
    font-size: 1rem;
  }
}
.faq__accordion {
  margin-top: 3rem;
  text-align: left;
}
@media (min-width: 64rem) {
  .faq__accordion {
    max-width: 34rem;
    margin: 0 auto;
  }
}
.faq__accordion .item {
  border-bottom: 1px solid #E0E0E8;
  padding-top: 1.75rem;
  padding-bottom: 1.5rem;
}
.faq__accordion .item__headline {
  font-size: 0.875rem;
  color: #242A45;
  position: relative;
  cursor: pointer;
}
.faq__accordion .item__headline::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-bottom: 2px solid hsl(231deg, 69%, 60%);
  border-left: 2px solid hsl(231deg, 69%, 60%);
  transform: rotate(-45deg) translateY(-50%);
  transition: all 300ms ease-in-out;
}
.faq__accordion .item__content {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.faq__accordion .item__content::before {
  content: "";
  display: block;
  height: 2.75rem;
  width: 100%;
}
.faq__accordion .item.open .item__content {
  max-height: 100rem;
  opacity: 1;
}
.faq__accordion .item.open .item__headline::after {
  transform: rotate(135deg);
  border-color: hsl(0deg, 94%, 66%);
}
.faq__cta {
  margin-top: 2.875rem;
}

.contact {
  padding: 3.75rem 0;
  background-color: hsl(231deg, 69%, 60%);
  text-align: center;
}
@media (min-width: 64rem) {
  .contact__title {
    max-width: 23.5rem;
    margin: 0 auto;
  }
}
.contact__title > p {
  margin: 0;
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding-bottom: 1.5rem;
}
.contact__title > h2 {
  color: #fff;
  font-size: 1.3rem;
}
@media (min-width: 64rem) {
  .contact__title > h2 {
    font-size: 1.5rem;
  }
}
.contact__form {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 2.375rem;
}
@media (min-width: 64rem) {
  .contact__form {
    max-width: 27.5rem;
    margin: 0 auto;
    grid-template-columns: 9fr 3fr;
    align-items: start;
  }
}
.contact__form .email__valid {
  position: relative;
}
.contact__form .email__valid > input {
  width: 100%;
  padding-left: 1.25rem;
  font-family: "Rubik", sans-serif;
  color: hwb(229 57% 37%);
  border-radius: 0.25rem;
  border: none;
  border: 2px solid transparent;
  outline: none;
  transition: all 300ms ease-in-out;
}
.contact__form .email__valid > p {
  margin: 0;
  padding: 0.3rem 0.875rem;
  background: hsl(0deg, 94%, 66%);
  border-radius: 0 0 0.25rem 0.25rem;
  font-size: 0.5rem;
  text-align: left;
  color: #fff;
  font-style: italic;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.contact__form .email__valid::before {
  content: "";
  position: absolute;
  display: inline-block;
  right: 1rem;
  top: 0.9375rem;
  width: 16px;
  height: 16px;
  background: url("../img/icon-error.svg") no-repeat center/cover;
  transform: rotate(180deg) scale(0);
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.contact__form .email__valid.invalid > input {
  border-color: hsl(0deg, 94%, 66%);
  border-radius: 0.25rem 0.25rem 0 0;
}
.contact__form .email__valid.invalid > p {
  opacity: 1;
}
.contact__form .email__valid.invalid::before {
  transform: rotate(0) scale(1);
  opacity: 1;
}
.contact__form > button {
  text-transform: capitalize;
}

.footer {
  background-color: #242A45;
  text-align: center;
  padding: 2.5rem 0;
}
.footer__nav {
  flex-direction: column;
}
@media (min-width: 64rem) {
  .footer__nav {
    flex-direction: row;
  }
}
.footer__links {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
@media (min-width: 64rem) {
  .footer__links {
    display: flex;
    margin-left: 4rem;
  }
}
.footer__links__item {
  text-align: center;
  margin-top: 2.25rem;
}
.footer__links__item a {
  transition: color 300ms ease-in-out;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
}
.footer__links__item a:hover {
  color: hsl(0deg, 94%, 66%);
}
@media (min-width: 64rem) {
  .footer__links__item {
    margin: 0;
  }
  .footer__links__item:not(:first-child) {
    margin-left: 2.75rem;
  }
}
.footer__media {
  margin-top: 3rem;
  max-width: 5.625rem;
  width: 100%;
}
.footer__media i {
  transition: color 300ms ease-in-out;
}
.footer__media i:hover {
  color: hsl(0deg, 94%, 66%);
}
@media (min-width: 64rem) {
  .footer__media {
    margin: 0;
    margin-left: auto;
  }
}/*# sourceMappingURL=main.css.map */