:root {
  --primary-blue: #01579b;
  --primary-blue-light: #5d9cbb;
  --secondary-color: #f85d05;
  --green-color: #509523;
  --violet-color: #6e61ca;
  --text-grey-light: #5e5e5e;
  --red-background: #ffacac;
  --blue-background: #b0ddff;
  --green-background: #b1e58e;
  --yellow-background: #ffedac;
  --orange-background: #ffcbae;
  --violet-background: #bfcdff;
  --grey-background: #e5e5e5;
  --grey-background-light: #f5f5f5;
  --hover-grey: #f0f0f0;
  --hover-grey-dark: #d9d9d9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi-Variable", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  font-weight: 450;
  /* border: 1px solid black; */
}

/* HTML tags */

html {
  scroll-behavior: smooth;
}

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

b {
  font-weight: bold;
}

section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* Position */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.absolute-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Display */

.hide {
  display: none !important;
}

.row {
  display: flex;
  flex-direction: row !important;
  /* align-items: center; */
  /* justify-content: center; */
}

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

.row-column {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  /* place-items: center; */
}

/* Margin */

.m-auto {
  margin: auto;
}

.m-40 {
  margin: 40px;
}

.mt-05 {
  margin-top: 4px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

/* Padding */

.pt-0 {
  padding-top: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.px-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.px-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Width and Height */

.w-auto {
  width: auto !important;
}

.w-100 {
  width: 100% !important;
  max-width: none !important;
}

.w-max-content {
  width: max-content;
}

.mw-1200 {
  max-width: 1200px !important;
}

.h-100 {
  height: 100%;
  max-height: none !important;
}

.secondary {
  color: var(--secondary-color);
}

/* Font Size  */

.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-32 {
  font-size: 2rem !important;
}

.fs-40 {
  font-size: 2.5rem !important;
}

/* Font Weight */

.fw-semibold {
  font-weight: 500;
}

.fw-bold {
  font-weight: 600 !important;
}

.fw-black {
  font-weight: 900;
}

/* Border */

.bw-1 {
  border-width: 1px !important;
}

.bd-none {
  border: none !important;
}

.bd-black {
  border: 2px solid black;
}

.bd-white {
  border: 2px solid white;
}

.br-4 {
  border-radius: 4px;
}

.br-8 {
  border-radius: 8px;
}

.br-16 {
  border-radius: 16px;
}

/* Shapes */

.circle {
  border-radius: 50%;
}

/* Spacing */

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px !important;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-52 {
  gap: 52px;
}

.gap-64 {
  gap: 64px;
}

.gap-80 {
  gap: 80px;
}

.gap-120 {
  gap: 120px;
}

/* Alignment */

.text-center {
  text-align: center;
}

.align-start {
  align-items: start !important;
}

.align-end {
  align-items: end !important;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

/* Text Color */

.white {
  color: white !important;
}

.black {
  color: black !important;
}

/* Background */

.bg-white {
  background-color: white !important;
}

.bg-black {
  background-color: black !important;
}

.bg-red {
  background-color: var(--red-background);
}

.bg-blue {
  background-color: var(--blue-background);
}

.bg-green {
  background-color: var(--green-background);
}

.bg-yellow {
  background-color: var(--yellow-background);
}

.bg-orange {
  background-color: var(--orange-background);
}

.bg-violet {
  background-color: var(--violet-background);
}

/* Text and Shadow Colors */

.primary {
  color: var(--primary-blue);
}

.text-grey-light {
  color: var(--text-grey-light);
}

.text-green {
  color: var(--green-color);
}

.text-violet {
  color: var(--violet-color);
}

.shadow-blue {
  color: var(--blue-background);
}

.shadow-green {
  color: var(--green-background);
}

.shadow-yellow {
  color: var(--yellow-background);
}

.shadow-violet {
  color: var(--violet-background);
}

/* Behaviour */

.overflow-hidden {
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

/* Components */

.hr-solid {
  width: 100%;
  height: 100%;
  border-top: 2px solid black;
}

.icon {
  width: 24px;
  height: 24px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-invert {
  filter: invert(100);
}

.app-store-badges {
  justify-content: center;
}

.app-store-badge {
  height: 64px;
  max-width: 212px;
  transition: all 0.2s ease;
}

.app-store-badge:hover {
  scale: 1.05;
}

.badge-image {
  width: auto;
  height: 100%;
  /* width: 150px;
  height: 50px;
  object-fit: contain; */
}

.cta {
  width: max-content;
  padding: 8px 32px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-button {
  display: none !important;
}

.cta:hover {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px black;
}

.button {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button.button-black {
  filter: invert(100);
  border-color: white;
  background-color: white;
}

.button-black:hover {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -2px 2px black, -4px 4px white;
}

.button-primary {
  gap: 12px;
  padding: 8px 16px 8px 16px;
  height: fit-content;
  color: white;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  background-color: var(--primary-blue);
  transition: all 0.2s ease;
}

.button-primary:hover {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -2px 2px white, -4px 4px var(--primary-blue);
}

.button.icon-right,
.button-primary.icon-right {
  padding: 8px 16px 8px 20px;
}

.button .text,
.button-primary .text {
  width: max-content;
}

.image {
  width: 100%;
  height: 100%;
}

.head {
  max-width: 744px;
  margin-bottom: 40px;
  text-align: center !important;
}

.subheading {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

.heading {
  margin-bottom: 16px;
  font-size: 2.75rem;
  font-weight: 900;
}

.description {
  font-size: 1rem;
}

.text {
  align-items: baseline;
  text-align: left;
}

.popup #video-popup,
.videos #video-popup {
  margin: -1px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.popup #popup-image {
  border-radius: 4px;
  /* margin-bottom: 520px; */
}

.popup .popup-body,
.videos .popup-body {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup #youtube-embed,
.videos #youtube-embed {
  width: 90vw; /* 90% of viewport vidth */
  height: 50.625vw; /* ratio = 9/16 * 90 = 50.625 */
  background: black;
  max-height: 90vh;
  max-width: 160vh; /* 16/9 * 90 = 160 */
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.popup-template {
  display: grid;
  place-items: center;
  position: fixed;
  top: 50%;
  right: 50%;
  width: 100%;
  max-width: 2000px;
  height: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  transform: translate(50%, -50%);
  z-index: 1000;
}

.close-button {
  cursor: pointer;
}

#close-video-popup {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  margin: 0 0 16px 8px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid black;
  background-color: white;
  z-index: 2;
  transition: all 0.2s ease;
  box-shadow: 4px 4px black;
  transform: translateX(-2px) translateY(-2px);
}

#close-video-popup:hover {
  box-shadow: none;
  transform: translateX(0) translateY(0);
}

.wrapper {
  padding: 0 24px;
}

.navbar {
  position: relative;
  display: flex;
  gap: 15px;
  padding: 24px 32px;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  z-index: 99;
}

.navbar .logo {
  height: 32px;
}

.logo .image {
  object-fit: contain;
}

.navbar .menus-wrapper {
  width: 100%;
  justify-content: space-between;
}

.navbar .menus {
  display: flex;
  gap: 4px;
}

.navbar .menu-link {
  cursor: pointer;
  user-select: none;
}

.navbar .checkbox {
  display: none;
}

.navbar .hamburger-lines {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  max-width: 52px;
  height: 48px;
  padding: 12px;
  margin-right: 8px;
  justify-content: space-between;
  border: 2px solid black;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: -4px 4px black;
  transition: all 0.2s ease;
}

.navbar .hamburger-lines:hover {
  box-shadow: none;
  transform: translateX(-2px) translateY(2px);
}

.navbar .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.navbar .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.navbar .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.navbar .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar input[type="checkbox"]:checked ~ .hamburger-lines {
  box-shadow: none;
  transform: translateX(-1px) translateY(1px);
}

.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
  margin-left: 8px;
}

.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
  margin-left: 8px;
}

.navbar input[type="checkbox"]:checked ~ .menus {
  transform: translateX(0);
}

.navbar .menus .center,
.navbar .menus .right {
  display: flex;
  gap: 4px;
}

.navbar .menus .center {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.navbar .right {
  gap: 12px;
}

.navbar .menus .menu {
  padding: 0 12px;
  text-decoration: none;
}

.navbar .menus .menu .menu-link:hover,
.logo:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.navbar .menus .menu a {
  display: flex;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.navbar .menus .menu-link .icon {
  transition: transform 0.2s ease-in-out;
}

.navbar .menus .menu.active .menu-link .icon {
  transform: rotate(180deg);
}

.navbar .menu .menu-dropdown {
  position: absolute;
  top: 48px;
  left: -170px;
  box-shadow: 0 90px 90px 10px rgba(144, 144, 144, 0.5);
}

.navbar .menu .menu-dropdown .dropdown-menu-item {
  padding: 12px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}

.navbar .menu .menu-dropdown .dropdown-menu-item:hover {
  border: 2px solid black;
  /* box-shadow: -4px 4px black; */
  transition: all 0.2s ease;
  /* transform: translateX(2px) translateY(-2px); */
  background-color: black;
  color: white;
}

.navbar .menu .menu-dropdown .dropdown-menu-item:hover .exam-sticker {
  box-shadow: none;
}

.navbar .signin-signup {
  padding: 8px 32px;
  min-width: max-content;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  outline: none;
  /* background-color: black; */
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 52px 40px;
  align-items: center;
  justify-content: center;
}

.hero .body {
  display: flex;
  flex-direction: column;
  max-width: 870px;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.hero .title {
  font-size: 64px;
}

.hero .title,
.hero .title span {
  display: inline-block;
  font-weight: 900;
  text-align: center;
}

.highlight-container,
.highlight {
  position: relative;
}

.highlight-container:before {
  content: " ";
  display: block;
  height: 90%;
  width: 100%;
  margin-left: -3px;
  margin-right: -3px;
  position: absolute;
  background: var(--yellow-background);
  transform: rotate(2deg);
  top: -1px;
  left: -1px;
  border-radius: 42% 0% 21% 3%;
  padding: 4px 2px 2px 4px;
}

.highlight-blue:before {
  background: var(--blue-background);
}

.highlight-orange:before {
  background: var(--orange-background);
}

.hero .content {
  margin-bottom: 16px;
}

.hero .content p {
  font-size: 24px;
  text-align: center;
}

.hero .cta {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px black;
}

.hero .cta:hover {
  transform: translateX(0) translateY(0);
  box-shadow: none;
}

.hero .generic-number {
  gap: 12px;
  width: 240px;
  font-size: 20px;
}

.hero .generic-number-value {
  font-weight: 800;
  font-size: 52px;
}

.hero .generic-number-label {
  font-weight: 700;
  line-height: 1.3;
}

/* Pg pro offer element removed obsolete code below */

.hero .pg-pro-offer {
  display: flex;
  padding: 20px;
  max-width: 800px;
  border-radius: 32px;
  background-color: black;
  transition: all 0.3s ease;;
}

.hero .pg-pro-offer:hover {
  padding: 2px;
  border-radius: 26px;
}

.pg-pro-offer img {
  border-radius: 24px;
}

.offer-popup .pg-pro-offer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 20px;
  margin: auto;
  width: 100%;
  max-width: 800px;
  height: max-content;
  /* max-height: 400px; */
  border-radius: 32px;
  background-color: black;
  transition: all 0.3s ease;;
}

.offer-popup .pg-pro-offer:hover {
  padding: 8px;
  border-radius: 26px;
}


.hero .google-reviews .text {
  color: black;
  font-weight: 500;
  text-decoration: none;
}

.hero .google-reviews .text:hover {
  text-decoration: underline;
  transition: all 0.2s ease;
}

.facet-options {
  gap: 24px;
}

.facet-option {
  min-width: max-content;
  flex: 1;
  padding: 8px 24px;
  /* font-weight: 500; */
  border: 1px solid black;
  border-radius: 4px;
  background: white;
  background: linear-gradient(to left, white 50%, var(--hover-grey) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  cursor: pointer;
}

.facet-option:hover {
  background-color: var(--hover-grey);
}

.facet-option.active {
  transition: all 0.2s ease;
  filter: invert(100);
  box-shadow: -1px 1px black, -4px 4px white;
  transform: translateX(2px) translateY(-2px);
}

.facet-option.loading {
  transition: background-position 5s linear, transform 0.2s ease;
  background-position: left bottom;
}

.image-slot {
  max-width: 960px;
  max-height: 600px;
  /* padding: 8px; */
  border: 2px solid black;
  border-radius: 8px;
}

.portal-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.meet-zynerd .image-slot {
  transition: all 0.2s ease;
}

.meet-zynerd .image-slot:hover {
  box-shadow: -4px 4px black;
  transform: translateX(2px) translateY(-2px);
}

.advantages {
  padding: 80px 40px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
  gap: 80px 24px;
  width: 100%;
  align-items: baseline;
  justify-content: center;
}

.advantage-grid .advantage-item {
  gap: 16px;
  align-items: start;
  width: max-content;
}

.advantage-grid .number {
  display: grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
  margin-top: 2px;
  font-weight: 900;
  border: 2px solid black;
  border-radius: 4px;
}

.advantage-grid .text {
  gap: 8px;
  width: 360px;
  font-size: 1.25rem;
  justify-content: start;
  align-items: start;
}

.advantage-grid h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.features-item:nth-of-type(even) {
  flex-direction: row-reverse !important;
}

.features-item {
  gap: 80px;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
}

.features-item .features-head {
  max-width: 360px;
}

.features-item .illustration {
  min-width: 360px;
}

.features-item .text {
  max-width: 600px;
}

.features-highlight {
  padding: 32px;
  border-radius: 8px;
  border: 2px solid black;
}

.stats-wrapper {
  max-width: 1200px;
}

.stats {
  padding: 0 64px;
  width: 360px;
}

.stats .subheading {
  margin-bottom: -12px;
}

.stats-figure {
  font-size: 5rem;
}

.stats-relativity {
  font-size: 2.75rem;
  font-weight: 900;
}

.exam-list .exam {
  /* min-width: 520px; */
  padding: 40px;
  border: 2px solid white;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.exam-list .exam:hover {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px white;
}

.mobile-view {
  flex-wrap: nowrap;
}

.exam-sticker {
  display: grid;
  place-items: center;
  width: 88px;
  height: 72px;
  font-size: 2.5rem;
  color: black;
  border: 2px solid black;
  border-radius: 4px;
}

.shadow {
  box-shadow: 4px 4px black;
}

.testimonialSwiper {
  padding-bottom: 24px;
}

.testimonial {
  width: 480px;
  height: auto;
  padding: 40px;
  justify-content: space-between;
}

.testimonials .user-dp {
  width: 32px;
  height: 32px;
}

.testimonialSwiper .testimonial-pagination {
  bottom: -4px;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background-color: black;
}

/* Temporary */

.testimonials .user-details {
  align-items: center;
}

.user-details .user-designation {
  display: none;
}

.zynerd-app .cta {
  margin-top: 40px;
}

.get-app-box {
  width: 100%;
  padding: 24px 120px;
}

.get-app-space {
  display: flex;
  width: 100%;
  margin-bottom: 80px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  background-color: #b1e58e;
}

.mockup-container {
  position: relative;
  /* max-width: 341px; */
  /* height: 384px; */
  overflow: hidden;
}

.mockup-container.mockup-main {
  padding-top: 120px;
  padding-bottom: 120px;
  min-width: 582px;
  width: 100%;
  align-items: center !important;
}

.app-mockup-1 {
  right: 8px;
  bottom: -5px;
}

.app-mockup-2 {
  top: 0;
}

.app-mockup-3 {
  right: 0;
  bottom: -5px;
}

.footer {
  border-top: 1px solid black;
  transition: all 0.2s ease;
}

.footer .link:hover {
  transform: scale(1.05);
}

.footer .logo {
  height: 32px;
}

.footer .exam-links:first-child {
  border: 1px solid black;
  border-top: none;
  border-bottom: none;
}

.footer .additional-links-wrapper {
  border-top: 1px solid black;
}

.social-media-links .link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--grey-background);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.social-media-links .link:hover {
  border: 2px solid black;
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px black;
}

.primary-video {
  width: 100%;
  max-width: 888px;
  min-height: 0;
  aspect-ratio: 16 / 9;
  transition: all 0.2s ease;
}

.primary-video:hover {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px black;
}

.primary-video .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: white;
}

.exam-features .illustration {
  min-width: 200px;
  height: 200px;
  border-radius: 8px;
  border: 2px solid black;
  box-shadow: 4px 4px, 8px 8px black;
}

.videos-slider .video {
  width: 496px;
  aspect-ratio: 16 / 9;
}

.packages .packages-wrapper {
  max-width: 1000px;
}

.packages .package {
  width: min-content;
  min-width: 480px;
}

.packages .learn-more-pill {
  margin: 2px 2px 2px 0;
  padding: 0px 0px 0px 20px;
  border-radius: 32px;
  border: 1px solid transparent;
  background-color: var(--blue-background);
  transition: all 0.2s ease;
}

.packages .learn-more-pill:hover {
  margin: 0;
  padding: 2px 2px 2px 20px;
  border: 1px solid black;
  box-shadow: -2px 3px black;
  transform: translateX(2px) translateY(-2px);
}

.packages .learn-more-pill .icon {
  width: 32px;
  height: 32px;
}

.packages .exam-selector .exam-tab:hover {
  background-color: var(--hover-grey);
}

.packages .exam-selector .exam-tab.active {
  color: white;
  background-color: black;
}

.packages .package-feature .check-circle {
  width: 18px;
  height: 18px;
  background-color: var(--green-background);
}

.packages .package-feature {
  line-height: 1.2;
}

.packages .cta:hover {
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px black;
}

/* .contact-us-wrapper {
  padding: 0 24px;
} */

.contact-number-container,
.email-us {
  min-width: 364px;
  max-width: 480px !important; /* temporary */
}

.careers .openings {
  grid-template-columns: repeat(auto-fit, minmax(280px, 304px));
  width: 100%;
}

.careers .job-opening {
  padding: 16px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: var(--grey-background-light);
  transition: all 0.2s ease;
}

.careers .job-opening:hover {
  border: 1px solid black;
  transform: translateX(2px) translateY(-2px);
  box-shadow: -4px 4px black;
}

.job-description {
  line-height: 1.5;
}

.job-description li {
  margin-left: 24px;
}

.policy-wrapper section {
  padding: 0;
  margin-bottom: 48px;
  text-align: left;
  align-items: start;
  gap: 0;
}

.hero,
.article {
  margin: 16px;
  padding: 16px;
}

.toc .content {
  margin-bottom: 4px;
}

.article,
.content {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.article h3 {
  margin-bottom: 16px;
  font-weight: 700;
}

.toc {
  padding: 24px;
  width: 100%;
  line-height: 2;
  position: -webkit-sticky;
  position: sticky;
  flex-basis: 300px;
  align-self: start;
  top: 8px;
}

/* .sidebar {
    --offset: var(--space);
    flex-grow: 1;
    flex-basis: 300px;
    align-self: start;
    position: sticky;
    top: var(--offset);
  } */

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 175px;
}

.list li {
  margin-bottom: 24px;
}

.list li::marker {
  color: var(--description-color);
  font-size: 18px;
  font-weight: 500;
}

.toc .visible a {
  color: var(--primary-color);
}

.policy-wrapper li a {
  display: inline-block;
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.toc-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: red;
}

path {
  transition: all 0.3s ease;
}

.contents {
  padding: 24px;
  /* width: 100%; */
  /* max-width: 800px; */
}

@media only screen and (max-width: 1380px) {
  .contact-numbers-wrapper {
    flex-wrap: wrap;
  }

  .features-item,
  .features-item:nth-of-type(even) {
    gap: 40px;
  }
}

@media only screen and (max-width: 1344px) {
  .exams-section {
    padding: 64px;
  }
}

@media only screen and (max-width: 1021px) {
  .mobile-view {
    flex-wrap: wrap;
    max-width: none;
  }
}

@media only screen and (max-width: 1200px) {
  section,
  .advantages {
    padding: 64px 24px;
  }

  .contact-us {
    padding: 64px;
  }

  .navbar .menus-wrapper {
    width: auto;
  }

  .navbar .menus .center {
    position: static;
  }

  .navbar .menu .menu-dropdown {
    margin: auto;
    top: 80px;
    left: 0;
    right: 0;
  }

  .stats-wrapper {
    gap: 16px;
  }

  .stats-wrapper .stats {
    max-width: 280px;
    padding: 0 12px;
  }

  .exams-section {
    margin: 16px;
  }

  .footer .px-40 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer .px-64 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer .py-40 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .navbar {
    padding: 24px 16px;
  }
  .navbar .menus .menu {
    padding: 0 8px;
  }
}

@media only screen and (max-width: 992px) {
  .navbar .hamburger-lines {
    display: flex;
  }

  .navbar .menus .center,
  .navbar .menus .right {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .navbar .menus {
    position: absolute;
    top: 96px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    padding: 24px 12px;
    filter: invert(100);
    background-color: white;
    border-top: 1px solid black;
    transform: translateY(-160%);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
    touch-action: none;
  }

  .navbar .menus .menu {
    width: 100%;
  }

  .navbar .menus .menu-link .icon {
    transition: transform 0.2s ease-in-out;
  }

  .navbar .menus .menu .menu-link {
    display: flex;
    width: 100%;
    padding: 16px;
    justify-content: space-between;
  }

  .navbar .menus .menu .menu-link:hover {
    transform: none;
  }

  .navbar .menu .menu-dropdown {
    position: static;
    gap: 8px;
    width: 100%;
    padding: 8px;
    padding-bottom: 12px;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    filter: invert(100%);
    transition: all 0.5s ease;
  }

  .navbar .menu .menu-dropdown .dropdown-menu-item {
    padding: 4px;
    gap: 24px;
  }

  .navbar .menu .menu-dropdown .dropdown-menu-item .px-24 {
    padding: 0;
  }

  .divider-vr {
    border-left: 1px solid black;
  }

  .divider-hr {
    width: 100%;
    border-top: 1px solid black;
  }

  .footer .links {
    align-items: center !important;
  }

  .footer .exam-links:first-child {
    border: none;
  }

  .footer .row {
    justify-content: center;
  }

  .footer .py-40 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .navbar .left.gap-24 {
    gap: 12px;
  }
}

@media only screen and (max-width: 960px) {
  .hero {
    padding: 0;
  }

  .hero .title {
    font-size: 2.75rem;
  }

  .stats-wrapper {
    gap: 16px;
  }

  .stats-wrapper .stats {
    max-width: 240px;
    padding: 0 8px;
  }

  .exams-section .exam-list {
    flex-wrap: wrap;
  }

  .exams-section .exam {
    width: 100%;
  }
}

@media only screen and (max-width: 920px) {
  .navbar .menus .right {
    display: none;
  }
}

@media only screen and (max-width: 852px) {
  .gap-120 {
    gap: 80px;
  }

  .features-list {
    width: 100%;
  }

  .features-item,
  .features-item:nth-of-type(even) {
    flex-direction: column !important;
    gap: 40px;
  }

  .features-item .text,
  .features-item .features-head {
    max-width: none;
  }

  .stats-wrapper {
    flex-direction: column !important;
    gap: 80px;
  }

  .stats-wrapper .stats {
    max-width: none;
    align-items: center;
  }

  .stats .stats-illustration {
    max-width: 360px;
  }

  .get-started-banner {
    padding: 16px;
  }

  .get-app-box {
    padding: 24px 80px !important;
  }

  .get-app-space {
    margin: 80px 0;
  }

  .exams-section {
    margin: 0;
    padding: 40px 32px;
  }
}

@media only screen and (max-width: 768px) {
  .zynerd-impact {
    margin-bottom: 40px;
  }

  .exams-section .exam-sticker {
    box-shadow: 4px 4px white;
  }

  .footer .divider-vr {
    display: none;
  }

  footer .row-column {
    flex-direction: column;
    justify-content: center !important;
  }

  footer .additional-links-wrapper .row-column {
    padding: 24px 0px;
  }

  footer .additional-links,
  .copyright {
    gap: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 720px) {
  .get-started-wrapper {
    padding: 32px;
  }

  .careers .openings {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
  }

  .footer .column {
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 680px) {
  .fs-24 {
    font-size: 1.25rem;
  }

  section,
  .advantages {
    padding: 40px 24px;
    gap: 24;
  }

  .contact-us-wrapper main {
    margin: 0 24px !important;
  }

  .head {
    margin: 0;
  }

  .wrapper {
    padding: 0 0 40px 0;
  }

  .navbar {
    padding: 24px;
  }

  .navbar .hamburger-lines {
    margin-right: 4px;
  }

  .facet-options {
    gap: 16px;
  }

  .exam-selector {
    padding: 4px 4px;
  }

  .exam-tab {
    width: max-content;
    padding: 8px 16px;
    font-size: 20px;
  }

  .packages {
    padding: 16px;
    gap: 24px;
  }

  .packages .packages-wrapper {
    gap: 24px;
  }

  .packages .package {
    width: 100%;
    min-width: 0;
  }

  .features-list {
    gap: 40px;
  }

  .features-item,
  .features-item:nth-of-type(even) {
    gap: 24px;
  }

  .features-item .text {
    gap: 16px;
  }

  .features-item .text .heading {
    margin-bottom: 0;
  }

  .features-highlight {
    padding: 16px 24px;
    font-size: 1.25rem;
  }

  .features-apprise {
    font-size: 1rem !important;
  }

  .get-app-space {
    margin: 40px 0;
  }

  .get-app-space .badges-row {
    flex-direction: column !important;
  }

  .get-app-space .app-store-badge {
    height: auto;
    width: 212px;
    max-width: 212px;
  }

  .get-app-space .app-store-badge .badge-image {
    height: auto;
    width: 100%;
  }

  .primary-video {
    margin-top: 16px;
    border-radius: 8px;
  }

  .exams-section {
    border-radius: 0;
  }

  .exam-features .exam-feature {
    flex-direction: column !important;
  }

  .exam-features .illustration {
    min-width: 0;
    width: 100%;
    max-width: 244px;
    height: auto;
  }

  .exam-features .exam-feature .text.column {
    gap: 8px;
  }

  .exam-features .exam-feature .fs-24 {
    font-weight: 800 !important;
  }
}

@media only screen and (max-width: 640px) {
  .toc {
    display: none;
  }

  .contact-us {
    padding: 64px;
  }

  .mockup-container .cta {
    width: 100%;
  }

  .mockup-container .app-mockup {
    position: static;
    width: 100%;
  }

  /* .mockup-container.mockup-main {
    padding-bottom: 0;
  } */

  .mockup-container,
  .mockup-container .mockup-main {
    gap: 40px;
    min-width: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
  }

  #mockup-container-2 {
    padding-top: 0;
  }

  #mockup-container-3 {
    min-height: 384px;
  }

  #mockup-container-3 .app-mockup {
    position: absolute;
    width: auto;
  }
}

@media only screen and (max-width: 540px) {
  .navbar {
    position: fixed;
    top: 0px;
    width: 100%;
    border-bottom: 1px solid black;
    z-index: 99;
  }

  .wrapper {
    margin-top: 96px;
  }

  .navbar .menus-wrapper {
    gap: 8px;
  }

  .hero .cta {
    width: 100%;
  }

  .mobile-button {
    display: flex !important;
    width: 100%;
  }

  .reverse-buttons {
    display: flex !important;
    flex-direction: column-reverse;
    width: 100%;
  }

  .get-app-box {
    padding: 24px 40px !important;
  }

  .contact-us {
    border: none;
    gap: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .heading {
    font-size: 1.5em;
  }

  .navbar {
    padding: 16px;
  }

  .contact-numbers-wrapper .navbar {
    padding: 16px 0;
  }

  .navbar .menus {
    top: 80px;
  }

  .navbar .signin-signup {
    padding: 12px 32px 14px 32px;
  }

  .navbar .signin-signup .signup-text {
    display: none;
  }

  .hero .pg-pro-offer {
    padding: 12px;
    border-radius: 24px;
  }

  .hero .pg-pro-offer:hover {
    padding: 4px;
    border-radius: 16px;
  }

  .hero .generic-numbers-wrapper,
  .hero .generic-numbers {
    gap: 24px;
  }

  .hero .generic-number {
    width: auto;
  }

  .facet-option:hover {
    background-color: transparent;
  }

  .advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }

  .advantage-grid .advantage-item {
    width: 100%;
  }

  .features-item .illustration {
    min-width: 0;
  }

  .testimonials .testimonial {
    width: 280px;
    padding: 16px;
    gap: 32px;
  }

  .testimonials .fs-20 {
    font-size: 1rem;
    font-weight: 500;
  }

  .get-app-box {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 24px 40px !important;
  }

  .get-app-box .better-experience-text {
    text-align: center;
  }

  .get-started-banner,
  .zynerd-app {
    padding: 8px;
  }

  .get-started-wrapper,
  .mockup-container {
    border: 1px solid black;
  }

  .primary-video .icon {
    width: 64px;
    height: 64px;
  }

  .job-description {
    padding: 9px 24px !important;
  }

  .job-description .job-head {
    flex-direction: column !important;
  }

  .job-description .apply-now-button-bottom {
    width: 100%;
    margin-top: 24px;
  }

  footer .additional-links {
    flex-direction: column !important;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 440px) {
  .download-buttons .app-store-badge {
    height: 56px;
    width: auto;
    max-width: 240px;
  }

  .download-buttons .app-store-badge .badge-image {
    height: 100%;
    width: auto;
  }
}

@media only screen and (max-width: 380px) {
  .download-buttons {
    flex-direction: column !important;
  }
  .download-buttons .app-store-badge {
    height: auto;
    width: 160px;
  }

  .download-buttons .app-store-badge .badge-image {
    height: auto;
    width: 160px;
  }
}

.add-nav-bar {
  left: -20px !important;
}

.add-nav-bar2 {
  left: 215px !important;
}

.lkn:hover {
  text-decoration: underline;
}

.lkn {
  font-weight: 600;
}

/* navbar font size reduce */

@media (max-width: 1300px) {
  .navbar .menus .menu a {
    font-size: 16px !important;
  }
}

/* navbar font size reduce */

/* body{
  position: relative;
}

.predictor-menu{
  display: flex;
  align-items: center;
}

.container {
  position: fixed;
  width: 24px;
  height: 24px;
  bottom: 50px;
  display: none;
  right: 50px;  
  z-index: 999;
  }
  
  .chevron {
  position: absolute;
  top: -70px;
  margin-left: 18px;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
  }
  
  .chevron:first-child {
  animation: move 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
  }
  
  .chevron:before,
  .chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #ff7b00;
  }
  
  .chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
  }
  
  .chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
  }
  
  @keyframes move {
  25% {
    opacity: 1;
  
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
  }
  
  .round-btn {
  display: inline-block;
  
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 10px;
  background-color: #ff7b00;
  padding: 8px;
  border-radius: 50px;
  color: black;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0px 0px 20px rgba(248, 93, 5, 0.1);

  }
  
  @keyframes pulse {
  to {
    opacity: 1;
  }
  }


  @media(max-width:576px){

    .container{

      display: block !important;
    }

  } */

@media screen and (max-width: 768px) {
  .pill {
    filter: invert(1) !important; /* Remove the filter */
  }
}
