@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
:root {
  /* colors */
  --clr-white: #fff;
  --clr-text: #000;
  --clr-grey-300: #BABABD;
  --clr-purple-300: #9291A5;
  --clr-purple-400: #A6A3EA;
  --clr-purple-700: #644BD1;
  --clr-purple-900: #1E1D27;
  --clr-blue-700: #369FFF;
  --clr-yellow-700: #C2E327;
  --clr-yellow-900: #F5BB76;
  --clr-orange-300: #F0E9D8;
  /* font families */
  --ff-base: "Inter", sans-serif;
  --ff-accent: "Inter", serif;
  /* font weights */
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;
  /* font sizes */
  --fs-200: .875rem;
  --fs-300: 1rem;
  --fs-400: 1.125rem;
  --fs-500: 1.375rem;
  --fs-600: 1.75rem;
  --fs-700: 2.25rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--clr-white);
  color: var(--clr-text);
  font-family: var(--ff-base);
  font-size: var(--fs-300);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2 {
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
}

.page-title {
  font-family: var(--ff-accent);
  font-size: var(--fs-700);
  color: var(--clr-white);
  font-weight: var(--fw-bold);
}

.subtitle {
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
  color: var(--clr-purple-300);
}

.text-center {
  text-align: center;
}

.text-center > * {
  margin-inline: auto;
}

.button {
  text-decoration: none;
  padding: 12px 20px 12px 35px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: var(--fw-bold);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.5s;
  background-size: 200% auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
}
@media (max-width: 1024px) {
  .button {
    width: 120px;
    padding: 10px;
  }
}
.button:hover {
  background-position: right center;
}
.button:hover svg {
  transition: all 0.3s ease-in-out;
  transform: translateX(10px);
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

#go-to-top {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  background-color: var(--clr-white);
  border: 2px solid var(--clr-white);
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#go-to-top:hover {
  background-color: var(--clr-yellow-700);
}
#go-to-top img {
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  left: 1px;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
}
nav.scroll .wrapper {
  background: var(--clr-purple-900);
  border-radius: 20px;
  margin-top: 20px;
  padding: 15px 15px;
}

nav .wrapper {
  position: relative;
  max-width: calc(100% - 30px);
  padding: 30px 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  nav .wrapper {
    padding: 30px 15px;
  }
}
nav .wrapper .header-btn {
  background-image: linear-gradient(to right, #813AFF 0%, #422FFB 100%);
  color: var(--clr-white);
}
@media (max-width: 1024px) {
  nav .wrapper .header-btn {
    width: 180px;
    margin-right: 10px;
    font-size: 8px;
    padding: 8px;
  }
}

.wrapper .logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.wrapper .logo a img {
  width: 100px;
}
@media (max-width: 1024px) {
  .wrapper .logo a img {
    width: 70%;
  }
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--clr-grey-300);
  text-decoration: none;
  font-size: var(--fs-200);
  font-weight: var(--fw-semibold);
  padding: 9px 25px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: var(--clr-purple-700);
}

.nav-links .mobile-item {
  display: none;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 20px;
  top: 25px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: flex;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    right: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  .menu-btn,
  .close-btn {
    align-items: center;
  }
  .menu-btn svg,
  .close-btn svg {
    width: 30px;
    height: 30px;
  }
  #menu-btn:checked ~ .nav-links {
    right: 0%;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    background: #3A3B3C;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }
}
nav input {
  display: none;
}

.hero {
  height: 1080px;
  background-image: linear-gradient(to bottom, var(--clr-white) 0%, var(--clr-white) 49.9%, var(--clr-purple-700) 50%, var(--clr-purple-700) 100%);
  padding: 15px;
}
@media (max-width: 1024px) {
  .hero {
    height: auto;
  }
}
.hero .wrapper {
  background-color: var(--clr-purple-900);
  border-radius: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url("../images/chart-lines.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.hero .wrapper .container {
  padding: 100px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .hero .wrapper .container {
    flex-direction: column;
    padding: 150px 20px 80px 20px;
  }
}
@media (min-width: 1025px) {
  .hero .wrapper .container .left {
    width: 50%;
  }
}
.hero .wrapper .container .left h1 {
  font-size: 60px;
  line-height: 70px;
}
@media (max-width: 1024px) {
  .hero .wrapper .container .left h1 {
    font-size: 40px;
    line-height: 50px;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .hero .wrapper .container .left h1 {
    font-size: 30px;
    line-height: 40px;
    max-width: 300px;
  }
}
.hero .wrapper .container .left h1 span {
  padding: 0 10px;
  border-radius: 7px;
  background-image: linear-gradient(to right, #6F52ED 0%, rgba(111, 82, 237, 0) 100%);
}
@media (min-width: 1025px) {
  .hero .wrapper .container .left h2 {
    padding-right: 200px;
  }
}
.hero .wrapper .container .left .cta-btn {
  margin-top: 30px;
  background-image: linear-gradient(to right, #D2F62A 0%, #9AB41E 100%);
  color: var(--clr-text);
}
@media (max-width: 1024px) {
  .hero .wrapper .container .left .cta-btn {
    width: 150px;
  }
}
.hero .wrapper .container .right {
  width: 50%;
}
@media (max-width: 1024px) {
  .hero .wrapper .container .right {
    width: 100%;
  }
}
.hero .wrapper .container .right img {
  margin-top: 20px;
  margin-left: 20px;
}
@media (min-width: 1025px) {
  .hero .wrapper .container .right img {
    display: none;
  }
}
.hero .dashboard {
  position: absolute;
  top: 15%;
  right: 0;
  width: 45%;
  max-height: 1080px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero .dashboard {
    display: none;
  }
}
@media (min-width: 2000px) {
  .hero .dashboard {
    width: auto;
  }
}
.hero .charts-image {
  width: 100%;
  text-align: center;
  position: relative;
}
.hero .charts-image img {
  position: absolute;
  width: 96%;
  bottom: -40px;
  left: 2%;
}
@media (max-width: 1024px) {
  .hero .charts-image img {
    bottom: -10px;
  }
}

.mobile {
  background-color: var(--clr-purple-700);
  background-image: url("../images/white-line.svg");
  background-repeat: no-repeat;
  background-position: bottom -400px left -500px;
  background-size: contain;
}
@media (max-width: 1024px) {
  .mobile {
    background-position: bottom -200px left -450px;
  }
}
@media (max-width: 676px) {
  .mobile {
    background-position: bottom -200px left -300px;
  }
}
@media (max-width: 400px) {
  .mobile {
    background-position: bottom -100px left -200px;
  }
}
.mobile .wrapper .container {
  padding: 150px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .mobile .wrapper .container {
    padding: 80px 20px;
    flex-direction: column;
  }
}
.mobile .wrapper .container .left {
  order: 2;
}
@media (min-width: 1025px) {
  .mobile .wrapper .container .left {
    width: 50%;
    order: 1;
  }
}
.mobile .wrapper .container .left img {
  text-align: left;
}
@media (min-width: 1025px) {
  .mobile .wrapper .container .left img {
    width: 130%;
    max-width: 130%;
  }
}
.mobile .wrapper .container .right {
  order: 1;
}
@media (min-width: 1025px) {
  .mobile .wrapper .container .right {
    width: 50%;
    order: 2;
  }
}
.mobile .wrapper .container .right h2 {
  color: var(--clr-white);
  font-size: 60px;
  line-height: 70px;
}
@media (max-width: 1024px) {
  .mobile .wrapper .container .right h2 {
    font-size: 40px;
    line-height: 50px;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .mobile .wrapper .container .right h2 {
    font-size: 30px;
    line-height: 40px;
    max-width: 300px;
  }
}
.mobile .wrapper .container .right h2 span {
  padding: 0 10px;
  border-radius: 7px;
  background-image: linear-gradient(to right, #F5BB76 0%, rgba(245, 187, 118, 0) 100%);
}
.mobile .wrapper .container .right h3 {
  color: var(--clr-purple-400);
  font-size: var(--fs-400);
  font-weight: var(--fw-regular);
}
@media (min-width: 1025px) {
  .mobile .wrapper .container .right h3 {
    padding-right: 200px;
  }
}

.products {
  margin-top: -150px;
}
.products .wrapper .container {
  background-image: linear-gradient(to bottom, var(--clr-purple-700) 0%, var(--clr-purple-700) 49.9%, var(--clr-orange-300) 50%, var(--clr-orange-300) 100%);
  width: 100%;
  max-width: 1900px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .products .wrapper .container {
    flex-direction: column;
  }
}
.products .wrapper .container .card {
  border-radius: 20px;
  background-color: var(--clr-white);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.products .wrapper .container .card .image {
  width: 30%;
  background-color: #F3F3F3;
  padding: 5px 15px;
  border-radius: 15px;
  max-width: 150px;
  height: auto;
  flex-shrink: 0;
}
.products .wrapper .container .card .image img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.products .wrapper .container .card .text-wrapper {
  width: 70%;
}
.products .wrapper .container .card .text-wrapper .title {
  font-size: var(--fs-400);
  font-weight: var(--fw-bold);
  line-height: 22px;
  color: var(--clr-purple-900);
  max-width: 70%;
}
@media (max-width: 768px) {
  .products .wrapper .container .card .text-wrapper .title {
    font-size: var(--fs-300);
    line-height: 20px;
    max-width: 100%;
  }
}
.products .wrapper .container .card .text-wrapper .cta {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}
.products .wrapper .container .card .text-wrapper .cta .risk {
  text-decoration: none;
  background-color: var(--clr-white);
  color: var(--clr-text);
  font-size: 9px;
  text-align: center;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 7px;
  border: 2px solid var(--clr-yellow-900);
  cursor: auto;
}
@media (max-width: 768px) {
  .products .wrapper .container .card .text-wrapper .cta .risk {
    padding: 8px;
  }
}
.products .wrapper .container .card .text-wrapper .cta .healthy {
  text-decoration: none;
  background-color: var(--clr-white);
  color: var(--clr-text);
  font-size: 9px;
  text-align: center;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 7px;
  border: 2px solid var(--clr-blue-700);
  cursor: auto;
}
@media (max-width: 768px) {
  .products .wrapper .container .card .text-wrapper .cta .healthy {
    padding: 8px;
  }
}
.products .wrapper .container .card .text-wrapper .cta .launch {
  text-decoration: none;
  padding: 8px 10px 8px;
  background-image: linear-gradient(to right, #813AFF 0%, #422FFB 100%);
  border-radius: 7px;
  font-size: 9px;
  font-weight: var(--fw-bold);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.5s;
  background-size: 200% auto;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  cursor: auto;
}
@media (max-width: 768px) {
  .products .wrapper .container .card .text-wrapper .cta .launch {
    padding: 7px;
    width: 120px;
  }
}

.revenue {
  margin-top: -150px;
}
.revenue .wrapper {
  padding: 250px 0 200px 0;
  background-color: var(--clr-orange-300);
  background-image: url("../images/orange-line.svg");
  background-repeat: no-repeat;
  background-position: top 200px right;
  background-size: 600px;
}
@media (max-width: 1024px) {
  .revenue .wrapper {
    padding: 220px 0 70px 0;
  }
}
.revenue .wrapper .container h2 {
  color: var(--clr-text);
  font-size: 60px;
  line-height: 70px;
}
@media (min-width: 1025px) {
  .revenue .wrapper .container h2 {
    max-width: 45%;
  }
}
@media (max-width: 1024px) {
  .revenue .wrapper .container h2 {
    font-size: 40px;
    line-height: 50px;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .revenue .wrapper .container h2 {
    font-size: 30px;
    line-height: 40px;
    max-width: 300px;
  }
}
.revenue .wrapper .container h2 span {
  padding: 0 10px;
  border-radius: 7px;
  background-image: linear-gradient(to right, #F5BB76 0%, rgba(245, 187, 118, 0) 100%);
}
.revenue .wrapper .container h3 {
  color: var(--clr-text);
  font-size: var(--fs-400);
  font-weight: var(--fw-regular);
}
@media (min-width: 1025px) {
  .revenue .wrapper .container h3 {
    max-width: 30%;
  }
}
.revenue .wrapper .container .card-wrapper {
  margin-top: 50px;
  justify-content: space-between;
  align-items: stretch;
  display: grid;
  grid-gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}
@media (max-width: 1320px) {
  .revenue .wrapper .container .card-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
@media (max-width: 1024px) {
  .revenue .wrapper .container .card-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.revenue .wrapper .container .card-wrapper .card {
  background-color: var(--clr-white);
  border-radius: 20px;
  padding: 80px 30px 50px 30px;
}
@media (max-width: 1024px) {
  .revenue .wrapper .container .card-wrapper .card {
    padding: 60px 20px 40px 20px;
  }
}
.revenue .wrapper .container .card-wrapper .card img.icon {
  max-width: 50px;
}
.revenue .wrapper .container .card-wrapper .card img.icon.smaller {
  max-width: 40px;
}
.revenue .wrapper .container .card-wrapper .card .title {
  margin-top: 20px;
  max-width: 100%;
  font-size: var(--fs-500);
  font-weight: var(--fw-bold);
}
.revenue .wrapper .container .card-wrapper .card .description {
  margin-top: 10px;
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
}

.footer {
  height: 600px;
  background-image: linear-gradient(to bottom, var(--clr-orange-300) 0%, var(--clr-white) 49.9%, var(--clr-yellow-700) 50%, var(--clr-yellow-700) 100%);
  padding: 0 15px;
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
  }
}
.footer .wrapper {
  padding: 100px 20px;
  background-color: var(--clr-purple-900);
  border-radius: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer .wrapper {
    padding: 70px 20px;
  }
}
.footer .wrapper .container {
  width: 100%;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer .wrapper .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .footer .wrapper .container .left {
    width: 50%;
  }
}
.footer .wrapper .container .left h2 {
  color: var(--clr-white);
  font-size: 60px;
  line-height: 70px;
}
@media (max-width: 1024px) {
  .footer .wrapper .container .left h2 {
    font-size: 40px;
    line-height: 50px;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .footer .wrapper .container .left h2 {
    font-size: 30px;
    line-height: 40px;
    max-width: 300px;
  }
}
.footer .wrapper .container .left h2 span {
  padding: 0 10px;
  border-radius: 7px;
  background-image: linear-gradient(to right, var(--clr-yellow-700) 0%, rgba(245, 187, 118, 0) 100%);
}
.footer .wrapper .container .left h3 {
  margin-top: 40px;
  color: var(--clr-white);
  font-size: var(--fs-200);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  letter-spacing: 10px;
}
@media (max-width: 1024px) {
  .footer .wrapper .container .left h3 {
    font-size: 12px;
    margin-top: 20px;
  }
}
.footer .wrapper .container .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 1025px) {
  .footer .wrapper .container .right {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .footer .wrapper .container .right {
    padding-top: 20px;
    align-items: flex-start;
  }
}
.footer .wrapper .container .right img {
  order: 2;
}
@media (min-width: 1025px) {
  .footer .wrapper .container .right img {
    margin-top: -500px;
    width: 120%;
    max-width: 120%;
    order: 1;
  }
}
.footer .wrapper .container .right .cta-btn {
  order: 1;
  background-image: linear-gradient(to right, #D2F62A 0%, #9AB41E 100%);
  color: var(--clr-text);
}
@media (min-width: 1025px) {
  .footer .wrapper .container .right .cta-btn {
    order: 2;
  }
}
@media (max-width: 1024px) {
  .footer .wrapper .container .right .cta-btn {
    margin-bottom: 40px;
    width: 150px;
  }
}

.copyright {
  background-color: var(--clr-yellow-700);
  padding: 40px 20px;
}
.copyright .wrapper .container p {
  text-align: center;
  font-size: 12px;
  font-weight: var(--fw-regular);
}/*# sourceMappingURL=style.css.map */