/* -------------------------------------------------------------------------- */
/*                                   Header                                   */
/* -------------------------------------------------------------------------- */

.logo-wrapper {
  max-width: 150rem;
  margin: 0 auto;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-link-left {
  margin-left: 3rem;
  text-decoration: none;
}
.logo {
  margin-top: -0.4rem;
  margin-left: 3rem;
  text-decoration: none;
  font-size: 3rem;
  color: #000000;
}
.flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}

.toggle-btn {
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
.nav-menu {
  display: flex;
  justify-content: space-evenly;
  margin-right: -8rem;
}

.nav-item {
  margin-right: 4rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  color: #000000b0;
  font-size: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/*                                    Hero                                    */
/* -------------------------------------------------------------------------- */

.hero-text-box {
  max-width: 50rem;
}

.hero-heading {
  font-size: 5.5rem;
}
.hero-heading span {
  letter-spacing: -0.6rem;
}
.hero-paragraph {
  font-size: 1.7rem;
  font-weight: 400;
  margin-top: 3rem;
  line-height: 1.5;
  max-width: 38rem;
}

.hero-img-box {
  position: relative;
}

.hero-img-box::before {
  content: "";
  display: block;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background-color: #ffe5b0;
  position: absolute;
  top: -6rem;
  left: -6rem;
  z-index: -1;
}
.hero-img-box::after {
  content: "";
  display: block;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -21rem;
  left: -21rem;
  z-index: -2;
}
.hero-img {
  max-width: 45rem;
  animation: move 3s infinite alternate-reverse;
}
/* -------------------------------------------------------------------------- */
/*                                    About                                   */
/* -------------------------------------------------------------------------- */

.about-box {
  margin-top: -15rem;
}
.about-img-layer {
  max-width: 80%;
  z-index: -2;
  animation: fade 2.5s infinite alternate-reverse;
  transition: all 0.3s ease-in-out;
}
.about-img {
  max-width: 40rem;
  z-index: 0;
  position: absolute;
  margin: 0 auto;
}

.wrapper {
  margin-top: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-box::before {
  content: "";
  display: block;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background-color: #ffe5b0;
  position: absolute;
  margin: 0 auto;
  z-index: -4;
}
.about-box::after {
  content: "";
  display: block;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  margin: 0 auto;
  z-index: -5;
}
/* -------------------------------------------------------------------------- */
/*                                Testimonials                                */
/* -------------------------------------------------------------------------- */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
.testimonial-box {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2rem;
  max-width: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}
.testimonial-quote {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 15rem;
}

.testimonial-text {
  font-size: 1.5rem;
  max-width: 20rem;
}

.testimonial-img-box {
  margin-top: 3rem;
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 6rem;
  height: 6rem;
  margin-right: 1.5rem;
  border-radius: 50%;
}

.testimonial-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                                   Feature                                  */
/* -------------------------------------------------------------------------- */
.feature-text {
  align-self: center;
  justify-self: center;
}
.feature-img-box {
  max-width: 40rem;
  margin: 0 auto;
}
.feature-img {
  max-width: 100%;
  margin-top: -28rem;
  margin-bottom: 5rem;
  animation: levitate 2.2s infinite alternate-reverse;
}

.feature-heading {
  font-size: 1.6rem;
  max-width: 6.5rem;
  text-align: center;
  color: #000;
  background-color: #ffffff8c;
  margin-bottom: 1.7rem;
  transform: rotate(-5deg);
}

.feature-paragraph {
  max-width: 33rem;
  font-size: 1.7rem;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/*                                     CTA                                    */
/* -------------------------------------------------------------------------- */
.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
}
.cta-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10rem;
  max-width: 35rem;
}
.cta-logo {
  margin-top: 0;
}
.cta-heading {
  margin-top: -2rem;
  text-align: end;
}

.cta-button-box {
  display: block;
  width: 35rem;
}

/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */
.footer-container {
  max-width: 150rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 15rem;
  margin: 0 auto;
}
.footer-logo-wrapper {
  display: flex;
  align-items: center;
}
.footer-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-nav-link-left {
  margin-left: 3rem;
  text-decoration: none;
}
.footer-logo {
  margin-top: -0.4rem;
  margin-left: 3rem;
  text-decoration: none;
  font-size: 3rem;
  color: #000000;
}

.footer-nav-menu {
  display: flex;
  justify-content: space-evenly;
}

.footer-nav-item {
  margin-right: 4rem;
  list-style: none;
}

.footer-nav-link {
  text-decoration: none;
  font-weight: 700;
  color: #000000b0;
  font-size: 1.5rem;
}
