@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Rubik:wght@400;500&display=swap");
/*VARIABLES*/
/*VARIABLES*/
/*HTML SETUP*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62,5%; }

body {
  font-family: "Rubik", sans-serif;
  font-size: inherit;
  height: 100vh;
  width: 100vw;
  line-height: 1.7;
  padding: 2rem; }

/*HEADER*/
/*HEADER*/
.header {
  padding: 2rem 4.5rem; }
  .header-icon {
    display: inline-block;
    padding: 0.2rem;
    background-color: #5267DF;
    border-radius: 50%;
    color: #fff;
    position: relative; }
    .header-icon-text {
      display: inline-block;
      text-transform: uppercase;
      font-weight: 500;
      position: absolute;
      margin-left: .4rem; }
  .header-navigation {
    display: flex;
    margin-top: -2.1rem;
    justify-content: flex-end;
    font-size: .8rem; }
    .header-navigation-link {
      text-decoration: none;
      color: #000; }
      .header-navigation-link:hover {
        color: #FA5959; }
    .header-navigation-list {
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: .1rem; }
      .header-navigation-list-element {
        display: inline-block;
        margin-right: 1rem; }
        .header-navigation-list-element:last-child {
          background-color: #FA5959;
          padding: .2rem 1rem;
          border-radius: 2px; }
          .header-navigation-list-element:last-child:hover {
            padding: .15rem .85rem;
            border: 0.5px solid #FA5959;
            background-color: #fff;
            color: #FA5959; }

#last-a {
  color: #fff; }
  #last-a:hover {
    color: #FA5959; }

/*SECTION SIMPLE MANAGER*/
/*SECTION SIMPLE MANAGER*/
.grid-of-2 {
  display: grid;
  grid-template-columns: repeat(2, 45%);
  justify-content: center;
  align-items: center;
  margin-top: 3.2rem; }

.section-first {
  line-height: 1.5; }
  .section-first-text-capital {
    font-weight: 500;
    color: #242A45;
    line-height: 1.4;
    font-size: 2rem; }
  .section-first-text-paragraph {
    color: #9194A2; }
  .section-first-text-buttons {
    display: flex;
    margin-top: 1rem; }
    .section-first-text-buttons-blue {
      color: #fff;
      padding: .5rem 1rem;
      background-color: #5267DF;
      border-color: transparent;
      border-radius: 3px;
      margin-right: 1rem;
      transition: all 0.2s; }
      .section-first-text-buttons-blue:hover {
        cursor: pointer;
        transform: translateY(0.2rem);
        background-color: #fff;
        color: #5267DF;
        border: 1px solid #5267DF;
        box-shadow: 0 0.5rem 1rem rgba(145, 148, 162, 0.4); }
    .section-first-text-buttons-white {
      color: #9194A2;
      padding: .5rem 1rem;
      border-color: transparent;
      border-radius: 3px;
      margin-right: 1rem;
      transition: all 0.2s;
      width: 13,7rem; }
      .section-first-text-buttons-white:hover {
        cursor: pointer;
        transform: translateY(0.2rem);
        background-color: #fff;
        color: #9194A2;
        border: 1px solid #9194A2;
        box-shadow: 0 0.5rem 1rem rgba(145, 148, 162, 0.4); }

.hero-image {
  position: relative; }

.blue-mark {
  width: 30rem;
  height: 20rem;
  background-color: #5267DF;
  position: absolute;
  transform: translateY(-15rem);
  right: -2rem;
  z-index: -1;
  border-radius: 0 0 0 200rem; }

/*SECTION FEATURES*/
/*SECTION FEATURES*/
.row {
  margin: 0 auto;
  text-align: center;
  max-width: 144rem; }

.title {
  color: #242A45;
  margin-bottom: 1rem; }

.paragraph {
  color: #9194A2;
  margin-bottom: 2.4rem; }

.features {
  margin-top: 4rem; }
  .features-buttons {
    display: inline-block; }
    .features-buttons::after {
      content: " ";
      background: #9194A2;
      width: 100%;
      height: .2rem;
      display: block;
      margin-top: 1.4rem;
      opacity: 10%; }
    .features-buttons-btn {
      background: #fff;
      border: transparent;
      color: #9194A2; }
      .features-buttons-btn:first-child {
        color: #242A45;
        position: relative; }
        .features-buttons-btn:first-child::after {
          content: " ";
          background: #FA5959;
          width: 100%;
          height: .2rem;
          display: block;
          position: absolute;
          top: 2.6rem; }
      .features-buttons-btn:hover {
        color: #FA5959;
        cursor: pointer; }
      .features-buttons-btn:nth-child(2) {
        margin: 0 7rem; }

.illustration-image {
  position: relative; }

.blue-mark-2 {
  width: 35rem;
  height: 20rem;
  background-color: #5267DF;
  position: absolute;
  left: -1rem;
  transform: translateY(-12rem);
  z-index: -1;
  border-radius: 0 0 200rem 0; }

.illustration-2 {
  display: none; }

.illustration-3 {
  display: none; }

/* SECTION DOWNLOAD EXTENSION*/
/* SECTION DOWNLOAD EXTENSION*/
.extensions {
  margin-top: 10rem; }
  .extensions-card {
    display: inline-block;
    max-width: 15rem;
    height: auto;
    box-shadow: 0 0.8rem 1rem rgba(145, 148, 162, 0.1);
    margin-right: 1.8rem;
    padding-bottom: 1rem;
    transition: all;
    position: relative; }
    .extensions-card:nth-child(2) {
      transform: translateY(3rem); }
    .extensions-card:last-child {
      transform: translateY(5rem); }
    .extensions-card-dots {
      max-width: 15rem;
      margin-bottom: 1.2rem; }

.grid-of-3 {
  grid-template-columns: repeat(3, 33%); }

/*SECTION FAQ*/
/*SECTION FAQ*/
.faq {
  margin-top: 10rem;
  display: grid; }
  .faq-questions {
    display: flex;
    justify-content: space-between;
    color: #9194A2;
    padding-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(145, 148, 162, 0.3); }
    .faq-questions:hover {
      cursor: pointer; }
    .faq-questions-arrow {
      align-self: center; }
  .faq-answers {
    color: #9194A2;
    padding-bottom: 1rem;
    display: none; }

/*FOOTER*/
/*FOOTER*/
.footer {
  margin-top: 6rem;
  background: #5267DF;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding-top: 5rem; }
  .footer-error {
    color: #fff;
    position: relative;
    right: 15rem;
    top: 2rem;
    visibility: hidden;
    color: #FA5959; }
  .footer-span {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .2rem;
    font-size: .6rem; }
  .footer-title {
    color: #fff;
    font-weight: 400;
    line-height: 1.4; }
  .footer-email {
    height: 2rem;
    border: 1px solid transparent;
    border-radius: 2px; }
  .footer-button {
    height: 2rem;
    color: #fff;
    background: #FA5959;
    border: 1px solid;
    border-color: transparent;
    border-radius: 2px;
    width: 5rem;
    margin-top: 1rem; }
    .footer-button:hover {
      cursor: pointer;
      background-color: #fff;
      color: #FA5959;
      border: 1px solid #FA5959;
      box-shadow: 0 0.5rem 1rem rgba(145, 148, 162, 0.4); }
  .footer-dark {
    background: #242A45;
    margin-top: 4rem;
    width: 100vw;
    height: 11vh;
    display: flex; }
    .footer-dark-navigation {
      display: flex;
      justify-content: flex-end;
      font-size: .8rem; }
      .footer-dark-navigation-link {
        text-decoration: none;
        color: #fff; }
        .footer-dark-navigation-link:hover {
          color: #FA5959; }
      .footer-dark-navigation-list {
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: .1rem; }
        .footer-dark-navigation-list-element {
          display: inline-block;
          margin-right: 1rem;
          color: #fff; }
    .footer-dark-icon {
      display: inline-block;
      padding: 0.2rem;
      background-color: #5267DF;
      border-radius: 50%;
      color: #fff;
      position: relative; }
      .footer-dark-icon-text {
        display: inline-block;
        text-transform: uppercase;
        font-weight: 400;
        color: #fff;
        margin-left: .4rem;
        margin-right: 2rem; }

.row-2 {
  display: flex;
  width: 50%;
  align-items: flex-end;
  justify-content: space-evenly; }

/*MEDIA QUERIES FOR 1150PX*/
@media (max-width: 1150px) {
  body {
    font-size: 80%; }
  .hero-image {
    max-width: 30rem; }
  .blue-mark {
    width: 30rem;
    height: 15rem;
    background-color: #5267DF;
    position: absolute;
    transform: translateY(-15rem);
    right: 3rem;
    z-index: -1;
    border-radius: 0 0 0 200rem; }
  .grid-of-2 {
    display: flex;
    flex-direction: column-reverse; }
  .section-first {
    margin-top: 0.5rem; }
    .section-first-text {
      text-align: center;
      margin-top: 2rem; }
      .section-first-text-buttons {
        justify-content: center; }
  .features {
    margin-top: 4rem; }
    .features-buttons {
      display: grid;
      grid-gap: 2rem; }
      .features-buttons::after {
        display: none; }
      .features-buttons-btn {
        background: #fff;
        border-bottom: 1px solid rgba(145, 148, 162, 0.3);
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
        color: #9194A2;
        margin: 0 auto;
        width: 25rem; }
        .features-buttons-btn:first-child::after {
          content: " ";
          background: #FA5959;
          width: 10rem;
          display: block;
          position: absolute;
          top: 1.9rem; }
        .features-buttons-btn:nth-child(2) {
          margin: 0 auto; }
  .illustration-image {
    position: relative;
    max-width: 30rem;
    margin-top: 4rem; }
  .blue-mark-2 {
    width: 30rem;
    height: 15rem;
    background-color: #5267DF;
    position: absolute;
    left: -1rem;
    transform: translateY(-12rem);
    z-index: -1;
    border-radius: 0 0 200rem 0; }
  .grid-of-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .extensions-card {
    margin: 0; } }

/*MEDIA QUERIES FOR 690PX*/
/*MEDIA QUERIES FOR 690PX*/
@media (max-width: 690px) {
  .header-navigation {
    display: none; }
  .hero-image {
    max-width: 20rem; }
  .illustration-image {
    max-width: 20rem; }
  .blue-mark {
    width: 20rem;
    height: 11rem;
    margin-top: 4rem;
    position: absolute;
    left: 3rem; }
  .blue-mark-2 {
    width: 20rem;
    height: 11rem;
    margin-top: 4rem; }
  .footer-dark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; } }

@media (max-width: 430px) {
  .features-buttons {
    position: relative;
    right: 3rem; } }
