.hero {
  padding: 3em 0;
  text-align: center;
}
.hero-image {
  max-width: 100%;
}
.hero-buttons {
  padding-top: 1em;
}
@media screen and (min-width: 1024px) {
  .hero {
    text-align: left;
    padding: 1em;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 550px 1fr;
    grid-template-areas: "content image";
    align-items: center;
  }
  .hero .imageContainer {
    grid-area: image;
    margin-left: 80px;
  }
  .hero-content {
    grid-area: content;
  }
}
.menu {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  top: 89%;
  background: rgba(92,61,177,0.9);
  height: 100vh;
  transform: translateY(-50px);
  transition: 0.3s transform, 0.3s opacity;
  will-change: transform;
}
.menu ul {
  padding: 0;
  list-style: none;
}
.menu li {
  border-top: 1px solid rgba(255,255,255,0.3);
}
.menu li :hover {
  border: 2px solid #ff3b8c;
  border-radius: 4px;
}
.menu li:last-child {
  border: 2px solid #ff3b8c;
  border-radius: 4px;
  margin-top: 1em;
  padding: 0.7em;
}
.menu li:last-child :hover {
  background: #ff3b8c;
  border: none;
}
.menu a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding: 1em;
  letter-spacing: 2px;
}
.menu-open {
  user-select: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  cursor: pointer;
  background: url("../assets/icon-hamburger.svg") no-repeat center;
}
.menu-checkbox {
  display: none;
}
.menu-checkbox:checked ~ .header {
  background: rgba(92,61,177,0.9);
  z-index: 3;
}
.menu-checkbox:checked ~ .header .menu-open {
  background-image: url("../assets/icon-close.svg");
}
.menu-checkbox:checked ~ .header .header-logo {
  background-image: url("../assets/logo-white.png");
}
.menu-checkbox:checked ~ .header .menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .menu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    position: initial;
    height: auto;
    background: initial;
  }
  .menu a {
    color: var(--mainPurple);
  }
  .menu li {
    border: 0;
    border-radius: 5px;
    margin-top: 25px;
    padding: 0.5em 0.4em;
  }
  .menu li:last-child {
    border: none;
  }
  .menu li:last-child a {
    border-radius: 5px;
    color: #fff;
    background: #ff3b8c;
  }
  .menu li:last-child :hover {
    color: #fff;
    background: var(--mainPurple);
  }
  .menu ul {
    display: flex;
  }
  .menu-open {
    display: none;
  }
}
.header {
  background: #fff;
  z-index: 1;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.8em 0;
  transition: 0.3s background;
}
.header-logo {
  display: inline-flex;
  width: 180px;
  height: 45px;
  background: url("../assets/logo.png") no-repeat center;
  background-size: contain;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tabs {
  margin-top: 2em;
  border-top: 1px solid var(--mainPink);
}
.tabs-link {
  border-bottom: 1.4px solid var(--mainPink);
  color: var(--mainPurple);
}
.tabs-content {
  display: none;
  flex-direction: column;
}
.tabs-content img {
  max-width: 100%;
  padding-top: 2.5em;
  margin-bottom: 2em;
}
.tabsgrid {
  margin-top: 4em;
}
.tabs label {
  padding: 1em 0;
  display: block;
  position: relative;
}
.tabs label:after {
  display: none;
  content: "";
  height: 5px;
  position: absolute;
  bottom: 0;
  width: 50%;
  left: 0;
  border-radius: 0.5em;
  transform: translateX(50%);
  box-shadow: inset 0 -15px 0 -10px var(--mainPurple);
}
.tabs input {
  display: none;
}
.tabs input[id="easyUse"]:checked ~ ul [for="easyUse"]:after {
  display: block;
}
.tabs input[id="easyUse"]:checked ~ .tabs-grid #tab-easyUse {
  display: flex;
}
.tabs input[id="enterprise"]:checked ~ ul [for="enterprise"]:after {
  display: block;
}
.tabs input[id="enterprise"]:checked ~ .tabs-grid #tab-enterprise {
  display: flex;
}
.tabs input[id="dataOptimize"]:checked ~ ul [for="dataOptimize"]:after {
  display: block;
}
.tabs input[id="dataOptimize"]:checked ~ .tabs-grid #tab-dataOptimize {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .tabs {
    border-top: none;
    text-align: left;
    padding: 1em 0;
  }
  .tabs ul {
    display: flex;
    justify-content: center;
  }
  .tabs label {
    padding: 2em 2em;
  }
  .tabs label:after {
    width: 100%;
    transform: translateX(0);
  }
  .tabs img {
    margin-right: 5em;
    margin-bottom: 0;
  }
  .tabs-content {
    padding: 3em 0;
    flex-direction: row;
    align-items: center;
  }
}
.features {
  text-align: center;
  padding: 2em 0;
}
.features .u-wrapper > .u-p {
  max-width: 580px;
  margin: 0 auto;
}
.download {
  padding: 0.6em;
  text-align: center;
}
.download img {
  max-width: 100%;
}
.download-grid {
  margin-top: 2em;
  display: grid;
  grid-row-gap: 2em;
}
.download-item {
  box-shadow: 0 10px 11px -5px rgba(255,59,140,0.4);
  margin-top: 1em;
  border-radius: 1.5em;
  padding: 1em;
  padding-top: 2em;
  background: url("../assets/bg-dots.svg") repeat-x center bottom 100px;
}
.download-item .u-p {
  margin-bottom: 4em;
  margin-top: 0.5em;
}
.download-item .u-h3 {
  margin-bottom: 0.5rem 0;
  margin-top: 1em;
}
@media screen and (min-width: 1024px) {
  .download {
    align-content: center;
  }
  .download-item {
    margin: auto;
    width: 450px;
  }
}
.question {
  padding: 2em 0;
}
.question h2 {
  text-align: center;
}
.question p {
  text-align: justify;
}
.question .u-wrapper > .u-p {
  max-width: 590px;
  margin: auto;
}
.carousel {
  max-width: 590px;
  margin: 3em auto;
}
.carousel summary {
  color: var(--mainPurple);
}
.carousel-content[open] summary {
  color: var(--mainPink);
}
.carousel-content[open] .carousel-header {
  border: none;
}
.carousel-content[open] .carousel-header::-webkit-details-marker {
  color: var(--mainPink);
}
.carousel-header {
  padding: 1em 0;
  border-bottom: 1px solid var(--mainPink);
  font-size: 0.9em;
}
.carousel-header:focus {
  outline: 0;
}
.carousel-header::-webkit-details-marker {
  color: var(--mainPurple);
  float: right;
}
.join {
  background: var(--mainPurple);
  color: #fff;
  padding: 3em 0;
  text-align: center;
}
.join small {
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .join .u-h4 {
    font-size: 1.5em;
    max-width: 450px;
    margin: 1em auto;
  }
}
.join .form {
  max-width: 450px;
  margin: auto;
}
.join .form .u-button {
  margin: 0;
}
.join .form-input {
  width: 100%;
  padding: 1.5em;
  box-sizing: border-box;
  margin-bottom: 1em;
  border-radius: 10px;
  border: none;
  font-size: 0.9em;
  outline: 0;
}
.join .form-input::-webkit-input-placeholder {
  color: var(--mainPurple);
}
@media screen and (min-width: 1024px) {
  .join .form {
    display: flex;
  }
  .join .form-input {
    width: 70%;
    flex-shrink: 0;
    margin-right: 1em;
    margin-bottom: 0;
  }
}
.footer {
  background: var(--mainPink);
  text-align: center;
  padding: 1.5em 0;
}
.footer img {
  width: 190px;
  height: 45px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer-menu {
  margin-top: 2em;
}
.footer-menu a {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1em;
}
.footer-social {
  margin-top: 1em;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.footer-social .twitter {
  background: url("../assets/icon-twitter.svg") no-repeat center;
}
.footer-social .facebook {
  background: url("../assets/icon-facebook.svg") no-repeat center;
}
@media screen and (min-width: 1024px) {
  .footer img {
    margin-right: 1em;
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
  }
  .footer-menu {
    display: flex;
    margin: 0;
  }
  .footer-primary {
    display: flex;
    align-items: center;
  }
}
.login {
  background: url("../assets/wave.svg") no-repeat center bottom;
  background-size: cover;
  width: auto;
  height: 95vh;
  z-index: 1;
}
.login-box {
  z-index: 2;
  margin-top: 4em;
  border-radius: 50px;
  width: 450px;
  height: 450px;
  background: var(--mainPink);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.login-box h1 {
  color: #fff;
  margin: 0;
  padding-top: 80px;
  text-align: center;
  font-size: 45px;
}
.login-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  top: -130px;
  left: calc(55% - 125px);
}
.login-form {
  padding: 2em;
}
.login-form label {
  margin: 0;
  padding-top: 0;
  display: block;
  font-weight: bold;
  color: #fff;
}
.login-form input {
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}
.login-form input::-webkit-input-placeholder {
  color: #fff;
}
.login-form input[type="text"],
.login-form input[type="password"] {
  border: none;
  border-bottom: 2.3px solid #fff;
  outline: none;
  height: 40px;
  background: transparent;
  color: #fff;
  font-size: 20px;
}
.login-form input[type="submit"] {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .login {
    background: none;
    padding: 2em;
    width: auto;
    height: auto;
  }
  .login-box {
    border-radius: 50px;
    width: 350px;
    height: 450px;
    background: var(--mainPink);
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
  }
  .login-box h1 {
    color: #fff;
    margin: 0;
    padding-top: 80px;
    text-align: center;
    font-size: 30px;
  }
  .login-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    top: -85px;
    left: calc(55% - 85px);
  }
}
.dashboard {
  border: 1px solid #f00;
}
.dashboard-sidebar {
  border: 1px solid #00f;
}
:root {
  --softBlue: #5368df;
  --softRed: #fa5757;
  --grayishBlue: #9194a1;
  --VeryDarkBlue: #252b46;
  --mainPurple: #5c4db1;
  --mainPink: #ff3b8c;
}
body {
  font-family: 'Rubik', sans-serif;
  color: var(--veryDarkBlue);
  font-size: 18px;
}
ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.is-hidden {
  display: none !important;
}
.u-wrapper {
  max-width: 1280px;
  margin: auto;
  padding: 0 1em;
}
.u-h1,
.u-h2,
.u-h4 {
  font-size: 1.9em;
  color: var(--mainPink);
  line-height: 1.3;
  font-weight: 600;
}
.u-h2 {
  font-size: 1.5em;
}
.u-h3 {
  color: var(--mainPink);
  line-height: 1;
  font-weight: 500;
  font-size: 1.5em;
  margin: 0.7em 0;
}
.u-h4 {
  font-size: 1.2em;
  color: #fff;
}
.u-p {
  color: var(--mainPurple);
  line-height: 1.8;
  font-size: 0.9em;
}
.u-button {
  background: var(--mainPurple);
  color: #fff;
  padding: 1em 0.5em;
  font-size: 0.9em;
  font-weight: 500;
  border-radius: 0.5em;
  display: inline-block;
  margin-left: 0.5em;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 10px -5px var(--mainPink);
}
.u-button:first-of-type {
  margin: 0;
}
.u-button.is-fullWidth {
  width: 100%;
}
.u-button.is-pink {
  background: var(--mainPink);
}
