*,
input {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 0;
}

.button {
  padding-block: 0.4rem;
  padding-inline: 1rem;
  font-size: 0.9rem;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
  outline: none !important;
  border: none;
}

.button:hover {
  background-color: var(--bs-secondary);
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
}

.btn,
.btn:focus {
  border: none;
}

.btn-popover {
  padding: 0;
}

.body-container {
  padding-top: 6rem;
}

/* Toas */
.toast {
  width: 90%;
  max-width: 1250px;
}

/* Card */
.card {
  border: 1.5px solid var(--bs-gray-100);
  transition: all 0.2s ease-in-out !important;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
}

.card:hover {
  border: 1.5px solid var(--bs-secondary);
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
}

.card-title {
  margin-bottom: 0;
  font-size: 1.1rem;
  text-align: left;
}

.card-title-section {
  height: 4rem;
  width: 100%;
}

.card-badge {
  background-color: var(--bs-secondary);
}

.subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bs-primary);
}

.form-control:focus {
  border-color: var(--bs-secondary);
  box-shadow: none;
}

footer {
  height: 2.5rem;
  width: "100%";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}

/* Navbar */
.navbar {
  width: 100% !important;
  position: fixed;
  z-index: 10;
}

.navbar-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.navbar-brand img {
  width: 12rem;
}

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

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

/* Header */
.header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: var(--bs-secondary);
}

.header p {
  font-size: 1.1rem;
}

img.header-img {
  height: 40rem;
}

.header-links {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header img {
  max-width: 8.3rem;
}

/* Solutions */
.solutions {
  padding-block: 2rem;
  background-color: var(--bs-gray-100);
}

/* Let's talk */
.lets-talk {
  width: 30rem;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hidden {
    display: none !important;
  }

  .cards-list {
    gap: 1rem;
  }

  .toast p {
    margin-right: 1rem;
  }

  /* Navbar */
  button.navbar-toggler {
    padding: 0;
    width: fit-content;
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .navbar-nav {
    align-items: end;
  }

  a.nav-link {
    padding-block: 0.2rem;
  }

  .button {
    margin-top: 0.5rem;
  }

  /* Solutions */
  .solutions {
    margin-top: 5rem;
  }
}
