@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;700;900&family=Lato:wght@400;700&family=Montserrat&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: black;
}

.row {
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}

.purple {
  color: rgb(100, 21, 255);
}

.btn {
  background-color: rgb(100, 21, 255);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 100%;
  border: none;
  transition: all 500ms ease;
}

.btn:hover {
  background-color: rgb(52, 14, 128);
  cursor: not-allowed;
}

h1 {
  font-size: 3rem;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style-type: none;
}

li {
  text-decoration: none;
}

/*

NAVIGATION

*/

nav {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img__logo {
  width: 40px;
  margin-right: 12px;
}

.nav__link--logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
}

.nav__link--logo:hover {
  color: rgb(100, 21, 255);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 1.5rem;
  transition: all 500ms ease;
}

.nav__link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: rgb(100, 21, 255);
}

.nav__link:nth-child(5) {
  margin-left: 3rem;
}

.nav__link--primary {
  background-color: rgb(100, 21, 255);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 300ms;
}

.nav__link--primary:hover {
  background-color: rgb(52, 14, 128);
  color: white;
  text-decoration: none;
}

/* BURGER MENU */

.btn__menu {
  background-color: transparent;
  font-size: 40px;
  text-align: center;
  border: none;
  color: #6415ff;
  display: none;
}

.menu__backdrop {
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  margin: 2rem 1rem;
  padding: 4rem;
  border: 1px solid rgba(0, 0, 0, 0.048);
  border-radius: 0.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(400%);
  transition: all 700ms ease;
}

.menu--open .menu__backdrop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu__list {
  padding-bottom: 0.25rem;
  margin: 1rem 0;
  font-weight: 600;
  letter-spacing: 0.025em;
  font-size: 1.125rem;
}

.menu__link {
  color: black;
  transition: all 300ms ease;
}

.menu__link:hover {
  color: #6415ff;
  border-bottom: 1px solid #6415ff;
  padding-bottom: 0.25rem;
}

.btn__menu--close {
  position: absolute;
  right: 20px;
  top: 10px;
  padding: 8px;
  color: black;
}

/*

HEADER

*/

header {
  /* height: calc(90vh - 100px); */
}

.container {
  padding: 80px 0;
}

.header__description {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left--column {
  width: 100%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  animation: fade-right 650ms 500ms backwards;
}

@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__para {
  font-size: 18px;
  margin: 40px 0;
}

.header__inputs {
  margin-bottom: 64px;
  position: relative;
}

.header__input {
  width: 80%;
  padding: 20px 192px 20px 32px;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  transition: all 300ms ease;
  opacity: 0.9;
  font-weight: 500;
  font-size: 100%;
}

.header__input:hover {
  border: 2px solid gray;
}

.header__input:active {
  border: 2px solid red;
}

.btn__header {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 10px 22% 8px 10px;
  border: none;
}

.customers {
  text-transform: uppercase;
  color: rgb(160, 174, 192);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05rem;
}

.customer__logos {
  margin: 16px 0 0;
  padding: 0 128px 0 0;
  opacity: 0.5;
}

.header__right--column {
  width: 100%;
  max-width: 60%;
  animation: fade-left 650ms 500ms backwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__img--wrapper {
  width: 100%;
  max-width: 800px;
}

.header__img {
  width: 100%;
}

/*

FEATURES

*/

.feature__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section__header {
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.section__title {
  font-size: 48px;
  font-weight: 900;
  color: rgb(36, 62, 99);
  margin-top: 1rem;
}

.feature__para {
  width: 100%;
  max-width: 70%;
  text-align: center;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #7c8ba1;
}

.services {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}

.service {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  width: calc(100% / 3);
  padding: 2rem 0.5rem;
}

.service__img--wrapper .service__img {
  padding: 1.25rem;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 9999px;
  border-width: 1px;
  text-align: center;
}

.service__description {
  margin-left: 1rem;
  max-width: 200px;
  display: flex;
  flex-direction: column;
}

.service__title {
  font-size: 1.5rem;
  color: #243e63;
  font-weight: 700;
}

.service__para {
  margin-top: 0.25rem;
  font-weight: 500;
  line-height: 2;
  color: rgb(124 139 161);
}

/*

QUALITY

*/

.row__quality {
  display: flex;
  animation: slidein 650ms 1000ms;
}

@keyframes slidein {
  0% {
    transform: translateX(100%);
  }

  70% {
    transform: translateX(-40%);
  }

  100% {
    transform: translateX(0);
  }
}

.quality__left--column {
  width: 100%;
  max-width: 50%;
  margin-right: 4rem;
}

.quality__para {
  width: 100%;
  text-align: left;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #7c8ba1;
  max-width: 36rem;
}

.quality__right--column {
  width: 100%;
  max-width: 50%;
  display: flex;
  align-items: center;
}

.quality__img--wrapper {
  border: 1px solid rgb(226, 232, 240);
}

.quality__img {
  max-width: 100%;
  height: auto;
}

.btn__column {
  margin-top: 32px;
}

/*

STEPS

*/

.steps__left--column {
  width: 100%;
  max-width: 50%;
  display: flex;
  align-items: center;
}

.step__img {
  width: 100%;
}

.steps__right--column {
  width: 100%;
  height: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.steps__list {
  margin-top: 2rem;
}

.step__header {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.step {
  display: flex;
  margin-top: 2rem;
}

.step__number {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  color: rgb(203, 213, 224);
}

.step__description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 24px;
}

.step__para {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  color: rgb(113, 128, 150);
  max-width: 20rem;
}

/*

VALUES

*/

.values__left--column {
  width: 100%;
  height: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
}

.values__right--column {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.value__img {
  width: 100%;
}

.value__sub--column {
  display: flex;
  flex-direction: column;
}

.value__sub--columnLeft,
.value__sub--columnRight {
  margin-top: 2rem;
  margin-right: 2rem;
}

.value__sub--column--header {
  display: flex;
  align-items: center;
}

.values__header {
  margin-left: 1rem;
}

.values__icon--wrapper--left {
  background-color: #9ae6b4;
  padding: 0.5rem;
  border-radius: 9999px;
}

.values__icon--wrapper--right {
  background-color: #feb2b2;
  padding: 0.5rem;
  border-radius: 9999px;
}

.values__para {
  line-height: 1.5;
  margin-top: 1rem;
  font-weight: 400;
}

/*

PRICING

*/

.row__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing__para {
  text-align: center;
  max-width: 36rem;
  font-size: 1.125rem;
}

.pricing__columns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 2rem;
  margin-top: 4rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 24rem;
  position: relative;
  border: 1px solid #e5e7eb;
}

.pricing__green {
  height: 8px;
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(
  115deg, 
  rgb(56, 178, 172) 0%,
  rgb(129, 230, 217) 100%
  );
}

.pricing__btn--green {
  background: linear-gradient(
    115deg,
    rgb(56, 178, 172) 0%,
    rgb(129, 230, 217) 100%
  );
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.pricing__btn--green:hover {
  transform: translate(2px, -2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing__btn--white {
  background-color: white;
  color: rgb(100, 21, 255);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: all 300ms ease;
}

.pricing__btn--white:hover {
  transform: translate(2px, -2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  opacity: 0.8;
  cursor: not-allowed;
}

.pricing__red {
  height: 8px;
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(
    115deg,
    rgb(245, 101, 101) 0%,
    rgb(254, 178, 178) 100%
  );
}

.pricing__btn--red {
  background: linear-gradient(
    115deg,
    rgb(245, 101, 101) 0%,
    rgb(254, 178, 178) 100%
  );
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.875rem;
}

.pricing__btn--red:hover {
  transform: translate(2px, -2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-transform: uppercase;
  line-height: 1.5;
  border-bottom: 1px solid #e5e7eb;
}

.title {
  font-size: 1.25rem;
  font-weight: 700;
}

.price {
  font-size: 2.25rem;
  margin: 0.25rem auto;
  font-weight: 700;
}

.duration {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgb(160, 174, 192);
}

.pricing__middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-width: 0px;
  border-top: 2px;
  border-bottom: 2px;
  border-color: rgb(226, 232, 240);
  border-style: solid;
  height: 100%;
}

.main__feature {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  text-align: center;
}

.sub__feature {
  color: rgb(113, 128, 150);
  font-weight: 500;
  margin-top: 1.25rem;
  text-align: left;
}

.pricing__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.middle {
  background-color: rgb(76, 81, 191);
  color: rgb(247, 250, 252);
}

/*

TESTIMONIALS

*/

.row__testimonial {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial__left--column {
  width: 100%;
  max-width: 50%;
}

.testimonial__right--column {
  width: 100%;
  max-width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.testimonials__stars {
  margin-top: 3rem;
}

.star {
  width: 20px;
  fill: #f6ad55;
}

.testimonials__header {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #243e63;
  font-weight: 700;
}

.testimonials__subheader {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgb(74, 85, 104);
}

.testimonials__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials__footer--img {
  width: 80px;
  height: 80px;
  border-radius: 50px;
}

.testimonials__identity {
  display: flex;
  align-items: center;
}

.testimonials__person {
  margin-left: 1.5rem;
}

.testimonials__person--name {
  font-size: 1.25rem;
  font-weight: 700;
}

.testimonials__person--work {
  color: rgb(124, 139, 161);
}

.testimonials__arrows {
  display: flex;
}

.testimonials__btn--left,
.testimonials__btn--right {
  margin: 0 12px;
  padding: 16px;
  background-color: rgb(237, 242, 247);
  border: none;
  border-radius: 50px;
  transition: all 300ms ease;
  cursor: not-allowed;
  height: 100%;
}

.arrow {
  width: 16px;
  height: 16px;
  color: #6415ff;
}

.divider {
  margin: 12px 0;
  border-right: 1px solid #a0aec0;
  opacity: 0.25;
}

/*

FAQ

*/

.row__faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq__para {
  text-align: center;
}

.faq__list {
  margin-top: 3rem;
  width: 100%;
  max-width: 56rem;
}

.faq__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 16px 40px;
  border-radius: 8px;
  background-color: #edf2f7;
  transition-duration: 300ms;
  cursor: pointer;
}

.faq__item:hover {
  background-color: #e0e4e9;
  cursor: not-allowed;
}

.faq__question {
  font-size: 1.25rem;
  font-weight: 600;
}

/*

SUBSCRIBE

*/

.row__subscribe {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #6415ff;
  padding: 96px 32px;
  border-radius: 8px;
}

.subscribe__header {
  color: white;
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  max-width: 500px;
}

.btn__get--started {
  background-color: #f56565;
  margin-right: 32px;
  padding: 1.5rem 2.5rem;
  transition: all 300ms ease;
}

.btn__get--started:hover {
  background-color: #db2424;
}

.btn__contact--us {
  padding: 1.5rem 2.5rem;
  border: 1px solid white;
  transition: all 300ms ease;
}

.btn__contact--us:hover {
  background-color: white;
  color: rgb(52, 14, 128);
}

/*

FOOTER

*/

footer {
  background-color: #6415ff;
}

.footer__container {
  padding: 6rem 3rem;
}

.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
}

.footer__list {
  margin-left: 20px;
  margin-top: 3em;
}

.footer__list--title {
  margin-bottom: 1.5rem;
  font-size: 16px;
  text-transform: uppercase;
}

.footer__list li {
  margin-top: 16px;
}

.footer__link {
  color: white;
  border-color: transparent;
  border-bottom-width: 2px;
  margin-bottom: 0.5rem;
  transition: all 300ms ease;
}

.footer__link:hover {
  color: white;
  cursor: not-allowed;
  border-bottom: 1px solid white;
  padding-bottom: 0.25rem;
}

.footer__divider {
  margin: 4rem 0;
  width: 100%;
  border-color: rgb(226, 232, 240);
  border-bottom-width: 2px;
  border-style: solid;
  border-width: 1px;
  opacity: 0.3;
}

.footer__copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: white;
}

.footer__logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.footer__img {
  width: 2.5rem;
  margin-right: 0.75rem;
}

.footer__socials {
  color: black;
}

.footer__social--link {
  padding: 0.7rem;
  margin-right: 1rem;
  border-radius: 9999px;
  background-color: white;
  text-align: center;
  transition: opacity 300ms ease;
}

.footer__social--link:hover {
  opacity: 0.7;
}

.footer__social--link i {
  width: 1.25rem;
}

/*

LARGE PHONES, TABLETS, AND SMARTPHONES

*/

@media (max-width: 1024px) {
  #landing {
    height: 100vh;
    margin-bottom: 6em;
  }

  .nav__link--list {
    display: none;
  }

  .btn__menu {
    display: block;
  }

  .header__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__left--column {
    width: 100%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
  }

  .header__input {
    width: 100%;
  }

  .header__img {
    height: 100%;
  }

  .btn__header {
    margin-right: 1rem;
  }

  .customer__logos {
    padding: 0 5px;
  }

  .services {
    max-width: 70%;
    margin: 24px auto;
    justify-content: space-between;
    align-items: center;
  }

  .services {
    max-width: 1024px;
  }

  .service {
    width: 50%;
  }

  .section__title {
    font-size: 2.5em;
  }

  .feature__para,
  .quality__para {
    font-size: 1.1em;
  }

  .row__subscribe {
    flex-direction: column;
    justify-content: center;
  }

  .subscribe__header,
  .subscribe__buttons {
    margin: 20px 0;
    display: flex;
  }

  .pricing__columns {
    flex-wrap: wrap;
  }

  .pricing__column {
    max-width: 50%;
    margin: 4rem 1rem 0 1rem;
  }

  .testimonials__subheader {
    font-size: 1em;
  }
}

@media (max-width: 850px) {
  .footer__copyright {
    flex-direction: column;
    justify-content: space-between;
  }

  .footer__logo,
  .copyright,
  .footer__socials {
    margin: 1.5rem 0;
  }

  .footer__social--link {
    margin: 0 12px;
  }

  .row__testimonial {
    flex-direction: column;
  }

  .testimonial__right--column {
    max-width: 100%;
    text-align: center;
  }

  .testimonials__para {
    text-align: center;
    margin: 16px auto 0;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .header__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__title {
    font-size: 2em;
  }

  .header__left--column {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .header__para {
    width: 80%;
  }

  .header__input {
    width: 100%;
  }

  .btn__header {
    margin-right: 1rem;
  }

  .customer__logos {
    padding: 0 5px;
  }

  .section__title {
    font-size: 2em;
  }

  .feature__para,
  .quality__para {
    font-size: 1em;
  }

  .services {
    max-width: 100%;
  }

  .service {
    width: 50%;
  }

  .pricing__columns {
    flex-wrap: wrap;
  }

  .btn__get--started,
  .btn__contact--us {
    margin: 0;
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 650px) {
  #landing {
    height: 100%;
    margin: 0 auto;
  }

  .row__quality {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
  }

  .section__title {
    text-align: center;
  }

  .quality__left--column,
  .quality__right--column,
  .steps__left--column,
  .steps__right--column,
  .values__left--column,
  .testimonial__left--column,
  .testimonial__right--column {
    margin: 12px auto;
    max-width: 100%;
    text-align: center;
  }

  .quality__para {
    text-align: center;
  }

  .step,
  .value__sub--column--header {
    justify-content: center;
  }

  .pricing__column {
    max-width: 100%;
    margin: 1rem 1rem;
  }

  .services {
    max-width: 100%;
  }

  .service {
    width: 100%;
  }

  .row__testimonial {
    flex-direction: column;
  }

  .faq__question {
    font-size: 1rem;
  }

  .footer__copyright {
    flex-direction: column;
    justify-content: space-between;
  }

  .footer__logo,
  .copyright,
  .footer__socials {
    margin: 1.5rem 0;
  }

  .footer__social--link {
    margin: 0 12px;
  }
}