* {
  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 SHOWCASE */
#pricing_showcase {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem 1rem 0rem 1rem;
}

.pricing_intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing_intro h2 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.pricing_intro p {
  font-size: 1.8rem;
  font-weight: 400;
  width: 55rem;
  margin: 0 auto;
  text-align: center;
}

.pricing_content {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
  padding: 0 2rem;
}

.pricing_content article {
  flex-basis: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 1.5rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.pricing_content article:first-of-type {
  border: .2rem solid rgba(16, 230, 189, .4);
}

.pricing_content article:last-of-type {
  border: .2rem solid var(--pry_btn_color);
}

.pricing_content article div {
  width: 6rem;
  height: 6rem;
  border-radius: 6rem;
  background: rgba(16, 230, 189, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing_content article i {
  font-size: 2rem;
  color: var(--pry_btn_color);
}

.pricing_content article h4 {
  font-size: 2.5rem;
  color: var(--para_font_color);
}

.pricing_content article p {
  text-align: center;
  font-size: 1.5rem;
  width: 80%;
  margin: 0 auto;
  letter-spacing: .1rem;
}

.pricing_content article button {
  display: inline-block;
  width: 80%;
  padding: 1rem 1.2rem;
  cursor: pointer;
  border-radius: 5rem;
}

.pricing_content article button a {
  text-decoration: none;
}

.pricing_content article:first-of-type button a {
  color: rgb(16, 230, 191);
}

.pricing_content article:first-of-type button:hover a {
  color: var(--pry_btn_color);
}

.pricing_content article:first-of-type button {
  background: var(--pry_btn_color);
  border: .2rem solid var(--pry_btn_color);
  
}

.pricing_content article:first-of-type button:hover {
  background: rgb(16, 230, 191);
  border: .2rem solid rgb(16, 230, 191);
  transition: .4s ease-out;
}

.pricing_content article:last-of-type button a {
  color: var(--pry_btn_color);
}

.pricing_content article:last-of-type button:hover a {
  color: rgb(16, 230, 191);
}

.pricing_content article:last-of-type button {
  background: rgb(16, 230, 191);
  color: var(--pry_btn_color);
  border: .2rem solid rgb(16, 230, 191);
}

.pricing_content article:last-of-type button:hover {
  background: var(--pry_btn_color);
  border: .2rem solid var(--pry_btn_color);
  color: rgb(16, 230, 191);
}

/* 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;
  margin-top: 10rem;
}

.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: .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;
}

/* Responsiveness */
@media (max-width: 960px) {
  .pricing_intro p {
    font-size: 1.8rem;
  }

  .pricing_intro h2 {
    font-size: 3.5rem;
  }

  .pricing_content {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .pricing_intro h2 {
    font-size: 3rem;
  }

  .pricing_intro p {
    font-size: 1.6rem;
    width: 85%;
  }

  .pricing_content {
    padding: 1rem;
  }

  .pricing_content article {
    width: 100%;
  }

  .pricing_content article button {
    width: 100%;
  }
}