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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  line-height: 1.6;
}

:root {
  --header_font: "Work Sans", sans-serif;
  --header_font_color: #111827;
  --para_font: "Inter", sans-serif;
  --para_font_color: #363d4f;
  --white: #fff;
  --black: #000;
  --pry_btn_color: #31356e;
  --light_white: #fafafa;
  --medium_white: #e5e5e5;
  --light_grey: #686868;
  --medium_grey: #5a5a5a;
  --grey: #363d4f;
  --shadow_md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow_lg: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  background: var(--white);
  overflow-x: hidden;
}

body > * {
  transition: 0.4s ease;
}

a {
  font-family: var(--header_font);
  color: var(--header_font_color);
  text-decoration: none;
}

a,
button {
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.4s ease;
}

p {
  font-family: var(--para_font);
  font-size: 1.6rem;
  line-height: 1.4;
  color: #111827;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header_font);
  font-size: 2rem;
  line-height: 1.2;
  color: #111827;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  /* padding: 2rem 2rem 0rem 2rem; */
}

.pry_btn {
  width: max-content;
  height: 4rem;
  background: var(--pry_btn_color);
  color: var(--white);
  padding: 0.1rem 2rem;
  border: 0.1rem solid var(--pry_btn_color);
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--header_font);
  font-weight: 600;
  animation: wiggle 1.3s ease-in-out infinite;
}

.pry_btn:hover {
  background: var(--white);
  color: var(--pry_btn_color);
}

/* Desktop Navbar */
nav {
  width: 100vw;
  margin: 0 auto;
  background: var(--light_white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.desktop_nav {
  background: var(--white);
  max-width: 90%;
  margin: 0 auto;
  border-radius: 5rem;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.desktop_nav .left {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.desktop_nav .left .logo {
  display: flex;
  align-items: center;
  width: 10rem;
  height: 5rem;
}

.desktop_nav .left .logo svg {
  width: 100%;
  height: 100%;
}

.desktop_nav .left .navlist {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop_nav .left .navlist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.desktop_nav .left .navlist li a {
  text-transform: capitalize;
  font-weight: 500;
}

.desktop_nav .left .navlist li i {
  font-size: 1.2rem;
  transition: 0.4s ease;
}

.desktop_nav .left .navlist li i.rotate {
  transform: rotate(-90deg);
  transition: 0.4s ease;
}

.desktop_nav .left .navlist li .modal {
  position: absolute;
  top: 100%;
  left: -5%;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  padding: 3rem;
  gap: 3rem;
  box-shadow: var(--shadow_md);
  width: max-content;
  border-radius: 1.2rem;
  background: var(--white);
  z-index: 20;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.desktop_nav .left .navlist li .modal:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.desktop_nav .left .navlist li .modal article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.desktop_nav .left .navlist li .modal article h4 {
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--para_font_color);
}

.desktop_nav .left .navlist li .modal article ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.desktop_nav .left .navlist li .modal article ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.desktop_nav .left .navlist li .modal article ul li svg {
  width: 1.5rem;
  height: 1.5rem;
}

.desktop_nav .left .navlist li .modal article ul li p, .desktop_nav .left .navlist li .modal article ul li a {
  font-size: 1.2rem;
}

/* .desktop_nav .middle {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  align-items: center;
  position: relative;
} */

.auth_btn {
  background: transparent;
  color: var(--pry_btn_color);
  display: flex;
  align-items: center;
  gap: .5rem;
  border: .2rem solid var(--pry_btn_color);
  animation: none;
}

.auth_btn:hover {
  color: #fff;
  background: var(--pry_btn_color);
}

/* Mobile Nav */
.mobile_toggle {
  display: none;
  cursor: pointer;
}

.mobile_nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 20;
  padding: 2rem;
  box-shadow: var(--shadow_md);
  height: 50vh;
  overflow-y: scroll;
}

.mobile_nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile_nav ul li ul {
  padding-left: 1.5rem;
  list-style: none;
}

.hidden {
  display: none;
}

.mobile_nav ul li a {
  font-size: 2rem;
  font-weight: 500;
  color: var(--header_font_color);
}

.mobile_nav ul li .pry_btn {
  font-size: 1.4rem;
  color: var(--white);
}

.mobile_nav ul li .pry_btn:hover {
  background: transparent;
  color: var(--pry_btn_color);
}

.mobile_nav:not(.hidden) {
  display: block;
}

.mobile_dropdown_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--header_font);
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--header_font_color);
}

.mobile_submenu {
  list-style: none;
  margin-top: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile_submenu.hidden {
  display: none;
}

.mobile_submenu li p {
  font-size: 1.8rem;
  color: var(--para_font_color);
}

.mobile_nav ul li ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile_nav ul li ul li svg {
  width: 2rem;
  height: 2rem;
}

.mobile_nav .buttons {
  display: flex;
  gap: 1.4rem;
  margin-top: 2rem;
}

.mobile_nav .auth_btn {
  background: transparent;
  color: var(--pry_btn_color) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: .2rem solid var(--pry_btn_color);
  animation: none;
}

.mobile_nav .auth_btn:hover {
  color: #fff !important;
  background: var(--pry_btn_color) !important;
}

@media (max-width: 920px) {
  .desktop_nav .left .navlist,
  .desktop_nav .right {
    display: none;
  }

  .mobile_toggle {
    display: block;
  }

  .desktop_nav {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
  }
}

/* SECTION FEATURES SHOWCASE */
#features_showcase {
  width: 100%;
  padding: 10rem 1rem 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7),
    rgba(150, 150, 150, 0.3)
  );
}

#features_showcase .section_container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

#features_showcase .section_container .row_1 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

#features_showcase .section_container .row_1 h2 {
  font-size: 4rem;
  font-weight: bold;
  color: var(--header_font_color);
}

#features_showcase .section_container .row_1 p {
  font-size: 1.8rem;
  color: var(--para_font_color);
  width: 85%;
}

#features_showcase .section_container .row_2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 3rem 1rem;
}

.feature_image {
  width: 35rem;
  height: 40rem;
  border-radius: 1.2rem;
}

.feature_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.feature_image:nth-of-type(2) {
  margin-top: 3rem;
}

/* SECTION MISSION */
#mission {
  width: 100%;
  text-align: center;
  background: #31356e;
  padding: 3.5rem;
  margin-bottom: 5rem;
  position: relative;
}

#mission h3 {
  width: 90%;
  margin: 0 auto;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
}

#mission svg {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: 2rem;
  right: 3rem;
}

/* SECTION FEATURES LIST */
#features_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

#features_list .section_container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

#features_list .section_container h3 {
  font-size: 4rem;
  font-weight: bold;
  color: var(--header_font_color);
}

.feature_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.feature_items article {
  width: 30rem;
  height: 20rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background-color: #fdfdfd;
  border: 0.1rem solid rgba(104, 104, 104, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.feature_items article .item_icon {
  width: 6rem;
  height: 6rem;
  border-radius: 10rem;
  background: #e9e9ef;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature_items article .item_icon svg {
  width: 3rem;
  height: 3rem;
}

.feature_items article h4 {
  font-size: 2rem;
  font-weight: 500;
}

.feature_items article p {
  font-size: 1.3rem;
}

/* SECTION TESTIMONIAL */
section#testimonials {
  background: linear-gradient(
    to bottom,
    rgba(255, 245, 245, 0.984),
    rgba(255, 255, 255, 0.923)
  );
  margin-bottom: 5rem;
  padding-top: 3rem;
}

#testimonials .section_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

#testimonials .section_container .row_1 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 5rem;
  padding-top: 2rem;
}

#testimonials .section_container .row_1 h4 {
  font-size: 2.4rem;
  font-weight: 600;
}

#testimonials .section_container .row_2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

#testimonials .section_container .row_2 .quote {
  height: 8rem;
  width: 8rem;
  border-radius: 10rem;
  background: #a6ffee;
  display: flex;
  justify-content: center;
  align-items: center;
}

#testimonials .section_container .row_2 .quote svg {
  width: 3.5rem;
  height: 3.5rem;
}

.testimonial_slider_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}

.testimonial_slider {
  position: relative;
  width: 90rem;
  min-height: 35rem;
  height: 40rem;
  overflow: hidden;
}

.testimonial_slider article {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 0;
}

.testimonial_slider article.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial_slider article.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

.testimonial_slider article.exit-right {
  transform: translateX(100%);
  opacity: 0;
}

.testimonial_slider_wrapper svg.slider_arrow {
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 3;
  fill: #31356e;
  transition: transform 0.2s ease;
}

.testimonial_slider_wrapper svg.slider_arrow:hover {
  transform: scale(1.1);
}

#testimonials .section_container .row_2 article p {
  font-weight: 300;
  font-size: 2.5rem;
  width: 80rem;
  margin: 0 auto;
}

#testimonials .section_container .row_2 article .profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

#testimonials .section_container .row_2 article .profile img {
  width: 8rem;
  height: 8rem;
  border-radius: 20rem;
}

#testimonials .section_container .row_2 article .profile h4 {
  font-weight: 500;
  font-size: 2rem;
  text-transform: capitalize;
}

#testimonials .section_container .row_2 article .profile p {
  font-size: 1.6rem;
  color: #535862;
  text-transform: capitalize;
}

#demo {
  width: 100%;
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #31356e;
}

#demo .section_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  position: relative;
}

#demo .section_container h3 {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
}

#demo .section_container p {
  font-size: 1.8rem;
  color: #fff;
  width: 50rem;
}

#demo .section_container a {
  align-self: center;
}

#demo .section_container .pry_btn {
  background: #fff;
  color: #31356e;
  border: 0.1rem solid #fff;
}

#demo .section_container .pry_btn:hover {
  border: 0.1rem solid #fff;
  color: #fff;
  background: #31356e;
}

#demo .section_container svg {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: -2rem;
  right: -5rem;
}

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(248, 241, 241, 0.8),
    rgba(253, 250, 250, 0.952),
    rgba(253, 248, 248, 0.9)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.footer_container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer_container .row_1 .logo svg {
  width: 12rem;
  height: 4rem;
}

.footer_container .row_1 p {
  font-size: 1.6rem;
  color: #111827;
  text-align: left;
}

.footer_container .row_2 {
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  border-bottom: 0.1rem solid #e9eaeb;
  padding-bottom: 5rem;
}

.footer_container .row_2 article h4 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer_container .row_2 article ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer_container .row_2 article ul li a {
  text-transform: capitalize;
  font-size: 1.6rem;
  font-weight: 400;
  color: #535862;
}

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

.footer_container .row_3 .col_1 {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.footer_container .row_3 .col_1 p {
  font-weight: 300;
  font-size: 1.6rem;
  color: #535862;
}

.footer_container .row_3 .col_1 a {
  font-weight: 500;
  font-size: 1.6rem;
  color: #535862;
}
/* 
.footer_container .row_3 .col_2 svg {
  width: 15rem;
  height: 5rem;
} */

/* .footer_container .row_3 .col_2 svg {
  width: 15rem;
  height: 5rem;
} */


.footer_container .row_3 .col_2 {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
}

.footer_container .row_3 .col_2 a {
  font-size: 3rem;
}

.footer_container .row_3 .col_2 a i {
  font-size: 100%;
  line-height: 0;
  color: var(--pry_btn_color);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .feature_image {
    width: 25rem;
    height: 30rem;
  }
}

@media (max-width: 768px) {
  main > section {
    overflow-x: hidden;
  }
  #features_showcase .section_container .row_2 {
    flex-direction: column;
  }

  .feature_image {
    display: none;
  }

  .feature_image:nth-child(2) {
    display: inline-block;
    margin-top: 0;
    width: 80vw;
    height: 45rem;
  }

  #features_showcase .section_container .row_1 h2 {
    font-size: 3.5rem;
  }

  #features_list .section_container h3 {
    font-size: 3.5rem;
  }

  #demo .section_container h3 {
    font-size: 3.5rem;
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  #demo .section_container p {
    width: 85vw;
  }
}
