*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.container {
  margin-inline: auto;
  max-width: 1140px;
  padding-inline: 1rem;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

.row > * {
  padding-inline: 0.75rem;
  width: 100%;
}

.g-3 {
  gap: 1rem 0;
}

.g-4 {
  gap: 1.5rem 0;
}

.g-5 {
  gap: 3rem 0;
}

.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-md-4,
.col-md-6 {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.333333%;
  }

  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    width: 33.333333%;
  }

  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }
}

.navbar {
  align-items: center;
  display: flex;
  padding-block: 0.75rem;
  position: relative;
}

.navbar > .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.navbar-brand {
  color: inherit;
  text-decoration: none;
}

.navbar-toggler {
  background: transparent;
  border: 1px solid rgba(47, 39, 48, 0.18);
  border-radius: 0.75rem;
  cursor: pointer;
  display: none;
  padding: 0.55rem 0.7rem;
}

.navbar-toggler-icon {
  background: currentColor;
  box-shadow: 0 6px currentColor, 0 -6px currentColor;
  display: block;
  height: 2px;
  width: 22px;
}

.navbar-collapse {
  align-items: center;
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar-toggler {
    display: inline-flex;
  }

  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    width: 100%;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    align-items: stretch !important;
    flex-direction: column;
    padding-top: 1rem;
  }
}

.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
}

.bg-white {
  background: #fff;
}

.bg-light {
  background: #fff6fa;
}

.bg-dark {
  background: #2f2730;
}

.text-white,
.text-light {
  color: #fff !important;
}

.text-muted {
  color: #7a6573 !important;
}

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

.text-decoration-none {
  text-decoration: none;
}

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

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

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

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

.gap-3 {
  gap: 1rem;
}

.ms-auto {
  margin-left: auto;
}

.ms-lg-3 {
  margin-left: 1rem;
}

.me-2 {
  margin-right: 0.5rem;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.my-4 {
  margin-block: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.py-5 {
  padding-block: 3rem;
}

.px-4 {
  padding-inline: 1.5rem;
}

.px-5 {
  padding-inline: 3rem;
}

.h-100 {
  height: 100%;
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded {
  border-radius: 0.75rem;
}

.rounded-pill {
  border-radius: 999px;
}

.shadow-sm {
  box-shadow: 0 0.5rem 1.5rem rgba(47, 39, 48, 0.08);
}

.shadow,
.shadow-lg {
  box-shadow: 0 1rem 2.5rem rgba(47, 39, 48, 0.14);
}

.border-0 {
  border: 0;
}

.card {
  background: #fff;
  border-radius: 1.25rem;
}

.card-body {
  padding: 1.5rem;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-lg {
  font-size: 1rem;
  padding-block: 0.9rem;
}

.btn-outline-dark {
  border-color: #2f2730;
  color: #2f2730;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.display-3 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.98;
}

.display-4 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.display-6 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.fw-bold {
  font-weight: 800;
}

.fst-italic {
  font-style: italic;
}

.h4 {
  font-size: 1.35rem;
}

.h5 {
  font-size: 1.1rem;
}

.fs-1 {
  font-size: 2.4rem;
}

.bi {
  align-items: center;
  display: inline-flex;
  font-style: normal;
  justify-content: center;
}

.bi-stars::before {
  content: "*";
}

.bi-palette::before,
.bi-brush::before {
  content: "•";
}

.bi-gem::before,
.bi-award::before {
  content: "◆";
}

.bi-heart::before {
  content: "♡";
}

.bi-flower1::before {
  content: "✦";
}

.bi-shield-check::before {
  content: "✓";
}

.bi-geo-alt-fill::before {
  content: "⌖";
}

.bi-telephone-fill::before {
  content: "☎";
}

.bi-clock-fill::before {
  content: "◷";
}

.bi-envelope-fill::before {
  content: "@";
}

.bi-facebook::before {
  content: "f";
}

.bi-instagram::before {
  content: "◎";
}

.bi-whatsapp::before {
  content: "w";
}

.img-fluid {
  height: auto;
  max-width: 100%;
}
