:root {
  --header-height: 75px;
  --color-primary: #0d88ec;

  --color-tag-1: #2ecc71;
  --color-tag-2: #3498db;
  --color-tag-3: #9b59b6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

li {
  text-decoration: none;
}

ul {
  list-style: none;
}

.nav-link:hover {
  color: var(--color-primary);
}

.show-menu {
  right: 0;
}

.m-t-1 {
  margin-top: 5;
}

.m-b-0 {
  margin-bottom: 0;
}

.p-t-2 {
  padding-top: 2rem;
}

.m-b-smth {
  margin-bottom: 5rem;
}

.p-lr-05 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.p-5 {
  padding: 5;
}

.p-lr-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-0 {
  padding: 0;
}

.p-025 {
  padding: 0.25rem;
}

.p-05 {
  padding: 0.5rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-t-025 {
  padding-top: 0.25rem;
}

.p-b-025 {
  padding-bottom: 0.25rem;
}

.top-1 {
  top: 1rem;
}

.right-1 {
  right: 1rem;
}

.m-0 {
  margin: 0;
}

.gap-01 {
  gap: 0.1rem;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-3 {
  gap: 3rem;
}

.rounded {
  border-radius: 8px;
}

.transition-300ms {
  transition: 0.3s;
}

.w-full {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.h-full {
  height: 100%;
}

.w-17 {
  width: 17rem;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.center {
  justify-content: center;
}

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

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

.column {
  flex-direction: column;
}

.grow-1 {
  flex-grow: 1;
}

.icba {
  height: 17rem;
  width: 20rem;
}

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

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.pointer {
  cursor: pointer;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.z-index-10 {
  z-index: 10;
}

.bg-white {
  background-color: #eaeefe;
}

.bg-full-white {
  background-color: white;
}

.text-white {
  color: #eaeefe;
}

.bg-transaparent {
  background-color: transparent;
}

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

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

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

.bg-purple {
  background-color: var(--color-tag-3);
}

.text-color {
  color: #2c2c2c;
}

.bold {
  font-weight: 600;
}

.dbg-red {
  border: 1px solid red;
}

.dbg-blue {
  border: 1px solid blue;
}

.step-number {
  margin: 0 auto;
  margin-top: 0.5rem;

  color: white;
  background-color: var(--color-primary);

  display: flex;
  justify-content: center;
  align-items: center;

  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.small-cards {
  padding-top: 3rem;
  padding-bottom: 3rem;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

.small-card {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: white;
  padding: 0.5rem;
  border-radius: 8px;

  width: 11rem;
  gap: 1rem;
}

.small-card-text {
  margin-left: auto;
  width: 9rem;
}

.primary-circle {
  margin-left: 1rem;
  background-color: #0650f0;
  height: 10px;
  width: 10px;
  border-radius: 8px;
}

.results {
  height: 100%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;

  padding: 1rem;
}

.result {
  display: flex;
  flex-direction: column;

  text-align: center;
  background-color: white;

  border-radius: 8px;

  padding: 2rem;
  padding-top: 1rem;
  height: 100%;

  width: 20rem;
  height: 23rem;
}

.result-body {
  flex-grow: 1;
}

.result-icon {
  margin: 0 auto;
  margin-top: 0.5rem;

  color: white;
  background-color: #0650f0;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.questions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.question {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  cursor: pointer;
  user-select: none;
}

.answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .answer {
  max-height: 200px; /* adjust depending on content */
  padding: 1rem 0.5rem;
}

.faq-item svg {
  transition: transform 0.3s ease;
}

.faq-item.open svg {
  transform: rotate(-90deg);
}

footer {
  color: #2c2c2c;
  background-color: var(--color-primary);

  display: flex;
  justify-content: space-between;

  padding: 1rem;
}

/* Phones */
@media screen and (max-width: 776px) {
  .nav {
    height: var(--header-height);
  }

  .nav-menu {
    position: fixed;
    background-color: hsla(0, 0%, 100%, 0.1);
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(96px);
    transition: 0.3s;
  }

  .nav-link {
    text-transform: uppercase;
    color: black;
    font-size: large;
    font-weight: medium;
    transition: 0.3s;
  }

  .nav-menu.show-menu {
    right: 0;
  }

  .nav-list-direction {
    flex-direction: column;
  }

  .nav-list-p-top {
    padding-top: 9rem;
  }

  .p-t-header {
    padding-top: calc(var(--header-height) + 0.5rem);
  }

  .text-lg {
    font-size: 3rem;
  }

  .text-logo {
    font-size: 1.5rem;
  }

  .small-card-gap {
    gap: 20px;
  }

  .faq-item {
    width: 20rem;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
  }
}

/* Desktops */
@media screen and (min-width: 777px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .p-t-header {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .nav-link {
    color: black;
    font-size: large;
    font-weight: medium;
    transition: 0.3s;
  }

  #nav-toggle,
  #nav-close {
    display: none;
  }

  .nav-list-direction {
    flex-direction: row;
  }

  .nav-list-p-top {
    padding-top: 0;
  }

  .text-lg {
    font-size: 5rem;
  }

  .text-logo {
    font-size: 2rem;
  }

  .small-card-gap {
    gap: 80px;
  }

  .faq-item {
    width: 30rem;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
  }
}
