* {
  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: rgb(49, 53, 110);
  --sec_color: #10e6bd;
  --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;
}

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

.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: 0.5rem;
  border: 0.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: 0.5rem;
  border: 0.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;
  }
}

/* SHOWCASE */
#resources_showcase {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 10rem 1rem 0rem 1rem;
  /* border: .1rem solid #000; */
}

.resources_container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.resources_container article {
  display: flex;
  flex-direction: column;
}

.article_header {
  border-bottom: 0.2rem solid var(--medium_white);
  margin-bottom: 3rem;
}

.article_header h2 {
  font-size: clamp(5rem, 1.2cqi, 3rem);
  margin-bottom: 1.8rem;
  font-weight: 700;
}

.article_header p {
  font-size: clamp(3rem, 1.2cqi, 1.8rem);
  font-weight: 600;
  margin-bottom: 2rem;
}

.article_image {
  width: 65%;
  height: 40rem;
  border-radius: 2rem;
  margin-bottom: 3rem;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  padding: 1rem;
}

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

.para {
  padding-bottom: 3rem;
  border-bottom: 0.2rem solid var(--medium_white);
  margin-bottom: 3rem;
}

.survey_para_first,
.survey_para_second,
.survey_para_third,
.survey_para_fourth,
.survey_para_fifth {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.survey_para_first h5,
.survey_para_second h5,
.survey_para_third h5, 
.survey_para_fourth h5,
.survey_para_fifth h5 {
  font-size: clamp(2.4rem, 1cqi, 2rem);
}

.survey_para_first ul p {
  font-size: clamp(2rem, 0.8cqi, 1.8rem);
  margin-bottom: 1.2rem;
}

.survey_para_first ul p:last-of-type {
  margin-bottom: 0;
  margin-top: 1.2rem;
}

.survey_para_first ul p:last-of-type span {
  font-weight: bold;
}

.survey_para_first ul li,
.survey_para_second ul li,
.survey_para_third div:nth-of-type(2) ul li,
.survey_para_third div:nth-of-type(3) ul li,
.survey_para_fifth ul li {
  margin-left: 3rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 0.8cqi, 1.6rem);
}

.survey_para_first ul li span,
.survey_para_second ul li span {
  font-style: italic;
}

.survey_para_second h5:first-of-type {
  margin-bottom: 1rem;
}

.survey_para_second p, 
.survey_para_fourth p {
  font-size: clamp(2rem, 0.8cqi, 1.8rem);
  text-align: justify;
  line-height: 1.2;
}

.survey_para_second p span,
.survey_para_fourth p span {
  font-weight: bold;
}

.survey_para_second p:last-of-type span {
  font-weight: normal;
  font-style: italic;
}

.survey_para_third div:nth-of-type(1) h3 {
  font-size: (2.2rem, 0.8cqi, 1.8rem);
  margin-bottom: 1rem;
}

.survey_para_third div:nth-of-type(1) p,
.survey_para_third div:nth-of-type(2) p,
.survey_para_third div:nth-of-type(3) p,
.survey_para_fifth p {
  font-size: clamp(1.8rem, 0.8cqi, 1.6rem);
  margin-bottom: 0.5rem;
}

.survey_para_third div:nth-of-type(1) p span {
  font-style: italic;
}

.survey_para_third div:nth-of-type(2) p span,
.survey_para_third div:nth-of-type(3) p span {
  font-weight: bold;
}

.survey_para_fourth div {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.survey_para_fifth {
  border-bottom: none;
}

.survey_para_fifth ul li  {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.survey_para_fifth ul li i {
  font-size: 1.8rem;
}

.intelli_para_first, 
.intelli_para_second,
.intelli_para_third,
.intelli_para_fourth,
.intelli_para_fifth,
.analytics_para_first, 
.analytics_para_second,
.analytics_para_third,
.analytics_para_fourth
.analytics_para_fifth {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intelli_para_first > div h4,
.intelli_para_second > div h4,
.intelli_para_third > div h4,
.intelli_para_fourth > div h4,
.intelli_para_fifth > div h4,
.analytics_para_first > div h4,
.analytics_para_second > div h4,
.analytics_para_third > div h4,
.analytics_para_fourth > div h4,
.analytics_para_fifth > div h4 {
  font-size: clamp(2.5rem, 1.2cqi, 2rem);
  margin-bottom: 1rem;
}

.intelli_para_first > div p,
.intelli_para_second > div p,
.intelli_para_third > div p,
.intelli_para_fourth > div p,
.intelli_para_fifth > div p,
.analytics_para_first > div p,
.analytics_para_second > div p,
.analytics_para_third > div p,
.analytics_para_fourth > div p,
.analytics_para_fifth > div p {
  font-size: clamp(2rem, 1cqi, 1.6rem);
}

.intelli_para_first ul p,
.intelli_para_second ul p,
.intelli_para_second ul p,
.intelli_para_fourth ul p,
.intelli_para_fifth ul p,
.analytics_para_first ul p,
.analytics_para_second ul p,
.analytics_para_second ul p,
.analytics_para_fourth ul p,
.analytics_para_fifth ul p {
  font-size: clamp(1.8rem, .8cqi, 1.4rem);
}

.intelli_para_first ul p span,
.intelli_para_second ul p span,
.intelli_para_third ul p span,
.intelli_para_fourth ul p span,
.intelli_para_fifth ul p span,
.analytics_para_first ul p span,
.analytics_para_second ul p span,
.analytics_para_third ul p span,
.analytics_para_fourth ul p span,
.analytics_para_fifth ul p span {
  font-weight: bold;
}

.intelli_para_first ul li,
.intelli_para_second ul li,
.intelli_para_third ul li,
.intelli_para_fourth ul li,
.intelli_para_fifth ul li,
.analytics_para_first ul li,
.analytics_para_second ul li,
.analytics_para_third ul li,
.analytics_para_fourth ul li,
.analytics_para_fifth ul li {
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, .8cqi, 1.4rem);
  margin-left: 2.5rem;
}

.intelli_para_first ul p:last-of-type, 
.intelli_para_second ul:last-of-type p:last-of-type,
.intelli_para_third ul:nth-of-type(2) p:last-of-type,
.intelli_para_third ul:nth-of-type(3) p:last-of-type,
.intelli_para_third ul:last-of-type p:last-of-type {
  margin-top: 2rem;
}

.intelli_para_fourth ul p:first-of-type {
  font-size: clamp(2rem, 1cqi, 1.6rem);
  margin-bottom: 1rem;
}

.intelli_para_fourth ul p:last-of-type {
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, .8cqi, 1.4rem);
}

.intelli_para_fifth, .analytics_para_third {
  border-bottom: none;
}

.intelli_para_fifth > div {
  margin-bottom: 2rem;
}



/* 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;
  font-weight: 400;
}

.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 {
  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);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .resources_container {
    width: 100%;
    padding: 1.5rem;
  }

  .article_header h2 {
    font-size: clamp(3rem, 1cqi, 2.8rem);
    width: 100%;
  } 

  .article_header p {
    font-size: clamp(2rem, 1cqi, 1.6rem);
  }

  .article_image {
    width: 100%;
    height: 35rem;
  }

  .survey_para_first ul p {
    font-size: 1.6rem;
  }

  .survey_para_second p, .survey_para_fourth p {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .survey_para_first h5, .survey_para_second h5, .survey_para_third h5, .survey_para_fourth h5, .survey_para_fifth h5 {
    font-size: 2rem;
  }
}