@import url("https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* Colors */
  --color-primary: #0f6fec;
  --color-text: #14191e;
  --color-background: #fff;

  /* Typography */
  --font-primary: "e-Ukraine", system-ui, sans-serif;
  --font-heading: "e-UkraineHead", system-ui, sans-serif;
  --font-accent: "Advent Pro", system-ui, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-md: 1rem; /* 16px */
  --space-mdlg: 1.5rem; /* 24px */
  --space-lg: 2rem; /* 32px */
  --space-xl: 4rem; /* 64px */

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 1rem; /* 16px */
  --text-md: 1.25rem; /* 20px */
  --text-lg: 1.5rem; /* 24px */
  --text-xl: 2rem; /* 32px */

  /* Variables */
  --main-padding: 0px;
}

body p:not(.price.fakeprice, .nav-link) {
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: var(--text-xs);
}

h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-xl);
}

h4 {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: 500;
}

h3 {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--text-lg);
}

h5 {
  color: black;
  font-weight: 500;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
}

body p {
  margin: 0;
  padding: 0;
}

main
  > :not(
    svg.triangle,
    .ellipse,
    .ellipse2,
    .div-black,
    .first_slide,
    .leftside_navbar
  ) {
  width: 100%;
  position: relative;
  z-index: 3;
}

.background {
  position: relative;
  background-attachment: scroll;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

svg.triangle,
.ellipse,
.ellipse2 {
  z-index: 1;
  pointer-events: none;
  position: fixed;
  filter: blur(62px);
}

svg.triangle {
  top: -15%;
  height: 150vh;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .scroller {
    animation: slide 15s ease-out infinite;
    will-change: transform;
  }

  .triangle {
    animation: moveTriangle 13s ease-out infinite;
    will-change: transform, opacity;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroller,
  .triangle {
    animation: none;
  }
}

@keyframes moveTriangle {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  10% {
    opacity: 1;
  }

  20% {
    transform: translate(center, 0) scale(1);
  }

  /* 90% {
        transform: translate(-105%, 0);
        opacity: 75%;
    } */
  100% {
    transform: translateX(-105%);
    opacity: 0%;
  }
}

.ellipse {
  scale: 0.7;
  opacity: 0.3;
  top: -3%;
  right: 60%;
  width: 100vh;
  flex-shrink: 0;
  height: 25vh;
  border-radius: 50%;
  background: var(--color-primary);
  animation: moveEllipse 13s ease-out infinite;
}

@keyframes moveEllipse {
  0% {
    opacity: 0;
  }

  /* 10%{
        opacity: 0.2;
    } */
  50% {
    opacity: 0.3;
  }

  /* 75%{
        opacity: 0.3;
    } */
  100% {
    transform: translateX(250%);
    opacity: 0%;
  }
}

.ellipse2 {
  width: 40vh;
  height: 20vh;
  transform: rotate(-12.9deg);
  bottom: 40%;
  right: 45%;
  flex-shrink: 0;
  border-radius: 50%;
  opacity: 0.2;
  background: #d900be;
  animation: moveEllipse2 13s ease-out infinite;
}

@keyframes moveEllipse2 {
  0% {
    transform: translate(center, center);
    opacity: 0%;
  }

  /* 25% {
        opacity: 0.1;
    } */
  50% {
    opacity: 0.3;
  }

  100% {
    scale: 2;
    transform: translate(150%, 150%);
    opacity: 0%;
  }
}

.first_slide {
  margin: 0 auto;
  position: relative;
  color: white;
  width: 100%;
  height: 100vh;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../../img/background-carousel_1.webp);
  background-color: rgb(49, 26, 0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -webkit-transition: -webkit-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -moz-transition: -moz-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -o-transition: -o-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -ms-transition: -ms-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  background-attachment: fixed;
  transform-origin: center 72px;
  padding-top: 57px;
}

.first_slide__upper-image {
  position: absolute;
  transition: transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -webkit-transition: -webkit-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -moz-transition: -moz-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -o-transition: -o-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  -ms-transition: -ms-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/background-carousel_1.webp);
  background-color: rgb(49, 26, 0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  will-change: transform, opacity, margin;
}

.first_slide__upper-image.tofade {
  opacity: 1;
}

.first_slide__upper-image.faded {
  opacity: 0;
}


.first_slide-overlay {
  position: absolute;
  transition: 0.8s ease-out;
  -webkit-transition: 0.8s ease-out;
  -moz-transition: 0.8s ease-out;
  -o-transition: 0.8s ease-out;
  -ms-transition: 0.8s ease-out;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
} */

/* .first_slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
} */

.first_slide * {
  z-index: 3;
}

.first_slide_image_1 {
  background-image: url(../../img/background-carousel_1.webp);
}

.first_slide_image_2 {
  background-image: url(../../img/background-carousel_3.webp);
}

.first_slide_image_3 {
  background-image: url(../../img/background-carousel_4.webp);
}

.first_slide > p {
  font-family: var(--font-primary) !important;
  font-size: var(--text-lg) !important;
  font-weight: 300 !important;
  line-height: 28.78px;
  text-align: center;
}

.first_slide span {
  width: 100%;
  font-family: var(--font-accent);
  font-size: 145px;
  font-style: italic;
  font-weight: 600;
  line-height: 174px;
  text-align: center;
  color: rgba(248, 195, 46, 1);
  margin-bottom: 60px;
}

.join_div {
  align-items: flex-end;
  display: flex;
  gap: var(--space-mdlg);
}

.join_label-container {
  width: 276px;
  height: 47px;
  position: relative;
  overflow: hidden;
}

.join_label-container :nth-child(1) {
  top: 0;
}

.join_label-container :nth-child(2) {
  top: 84px;
}

.join_label-container :nth-child(3) {
  top: 168px;
}

.join_label-container :nth-child(4) {
  top: 252px;
}

.join_label {
  position: absolute;
  display: flex;
  width: 100%;
  height: 42px;
  padding: 4px 8px;
  gap: var(--space-sm);
  border-radius: 8px;
  border: 1px solid rgba(79, 158, 248, 1);
  background-color: #fff;
  align-items: center;
  align-content: center;
}

.scroller {
  top: 5px;
  width: 100%;
  height: 47px;
  position: absolute;
  /* animation: slide 15s ease-out infinite; */
}

.first_slide .brand-name {
  position: absolute;
  left: 10%;
  bottom: 76px;
}

.first_slide .brand-name p {
  font-size: var(--text-xs);
}

.first_slide .brand-name h3 {
  color: white;
}

/* @keyframes slide {
    0% {
        top: 0;
    }
    20%{
        top: 0;
    }
    25% {
        top: -89px;
    }
    27.5% {
        top: -84px;
    }
    45%{
        top: -84px;
    }
    50% {
        top: -173px;
    }
    52.5% {
        top: -168px
    }
    70%{
        top: -168px;
    }
    75%{
        top: -257px;
    }
    77.5%{
        top: -252px;
    }
    95%{
        top: -252px;
    }
    97.5%{
        top: 5px;
    }
} */

@keyframes slide {
  0% {
    top: 5px;
  }

  20% {
    top: 5px;
  }

  25% {
    top: -84px;
  }

  27.5% {
    top: -79px;
  }

  45% {
    top: -79px;
  }

  50% {
    top: -168px;
  }

  52.5% {
    top: -163px;
  }

  70% {
    top: -163px;
  }

  75% {
    top: -252px;
  }

  77.5% {
    top: -247px;
  }

  95% {
    top: -247px;
  }

  97.5% {
    top: 10px;
  }

  100% {
    top: 5px;
  }
}

.join_label p {
  margin: 0;
  padding: 0;
  color: black;
  font-size: var(--text-xs);
  line-height: 18px;
  z-index: 2;
}

.sprite_coin {
  width: 34px;
  height: 34px;
  background-image: url(../../img/elements/coin.png);
}

.sprite_backpack {
  width: 36px;
  height: 38px;
  background-image: url(../../img/elements/backpack.png);
}

.landing-main-button {
  display: block;
  width: fit-content;
  font-family: var(--font-primary);
  font-weight: 200;
  font-size: var(--text-sm);
  line-height: 1.5rem;
  background: rgba(15, 111, 236, 1);
  border: 1px solid;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
  min-width: 145px;
  padding: 9px 17px 9px 17px;
  border-radius: 6px;
  border: 1px;
  color: white;
  transition: 0.2s;
  text-align: center;
}

.landing-main-button:hover {
  background: rgba(13, 94, 201, 1);
  box-shadow: 3px 3px 0px 0px rgba(248, 212, 77, 1);
}

.sticky-wrapper {
  position: relative;
}

.sticky {
  min-height: 0 !important;
  position: sticky;
  justify-content: flex-end !important;
  bottom: 0%;
  height: calc(100vh - 56px);
}

.reviews-div {
  width: 100%;
  margin: 10vh 0; /* 10vh 0 */
  z-index: 1;
}

.reviews-container {
  flex-wrap: wrap;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: var(--space-mdlg);
}

.review-block-container {
  gap: var(--space-mdlg);
  display: flex;
  flex: 3;
}

.review-block {
  flex: 1;
  min-width: 230px;
  background-color: white;
  box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.09);
  border-radius: 6px;
}

.review-block .content {
  padding: 20px;
}

.review-block .avatar {
  border-radius: 6px 6px 0 0;
  width: 100%;
  height: calc(75px + 10vw);
  min-height: 180px;
  max-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reviews-container .review-block:nth-of-type(3) {
  position: relative;
}

.reviews-container .review-block:nth-of-type(3)::before {
  content: "";
  position: absolute;
  background-image: url(../../img/icons/pixel-book.png);
  background-position: center;
  background-size: cover;
  width: 6rem;
  height: 5rem;
  border-radius: 0.25rem;
  box-shadow: 0px 4px 4px 0px #00000040;
  right: -80%;
  top: -4rem;
  transform: rotate(9.49deg);
}
.reviews-container .review-block:nth-of-type(3)::after {
  content: "";
  position: absolute;
  background-image: url(../../img/icons/pixel-pencil.png);
  background-size: cover;
  width: 4rem;
  height: 7rem;
  border-radius: 0.25rem;
  box-shadow: 4px 0px 4px 0px #00000040;
  top: -13rem;
  right: 20%;
  transform: rotate(103.52deg);
}

.review-board {
  flex: 1;
  border-radius: 16px;
}

.review-board .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-board p {
  font-family: var(--font-primary);
  font-size: var(--text-sm) !important;
  text-align: left;
  color: rgba(20, 25, 30, 1);
  margin-bottom: 8px;
}

.advantages-div {
  position: relative;
  z-index: 3;
  flex-grow: 1;
}

.advantages-div .landing-main-button {
  margin: 0 auto;
}

.advantages-div h2 {
  text-align: left;
  color: white;
}

.advantages-div p {
  color: white;
  width: 100%;
}

.advantages-div span {
  display: block;
  font-family: Inter;
  font-size: var(--text-xs);
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  margin: 4.25rem auto 1rem;
}

.advantages-div .button {
  margin: 0 auto;
}

.advantages-container {
  width: 100%;
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

/* .advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: var(--space-md);
  margin-block: var(--space-xl);
} */

.advantages-block {
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  position: relative;
  z-index: 3;
  flex: 1 0 325px;
  height: 356px;
  background-color: #5d7697;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--Info, rgba(79, 158, 248, 1));
  transition: box-shadow 0.2s;
}

.advantages-block:nth-of-type(1) {
  background-image: url(../../img/hand_with_coins.webp);
}

.advantages-block:nth-of-type(2) {
  background-image: url(../../img/background-carousel_3.webp);
}

.advantages-block:nth-of-type(3) {
  background-image: url(../../img/man_with_shoes.webp);
}

.advantages-block:hover {
  box-shadow: 4px 4px 0px 0px rgba(248, 212, 77, 1);
}

.advantages-block__content {
  width: 100%;
  padding: var(--space-md);
  border: inherit;
  border-radius: inherit;
  background-color: #fff;
  overflow: hidden;
  max-height: 4.5rem;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.advantages-block__content p {
  opacity: 0;
  color: black;
  transition: opacity 0.3s ease;
}

.advantages-block:hover .advantages-block__content {
  max-height: 100%;
}

.advantages-block:hover .advantages-block__content p {
  opacity: 1;
}

.scroll-container {
  position: relative;
  width: 100%;
  flex: 1;
}

.scroll-container .scroll-h2 {
  position: sticky;
  top: 100px;
  margin: 170px 0;
}

.scroll-container .scrollCard {
  position: sticky;
  width: 100%;
  padding: var(--space-md);
  margin: 30vh 0 170px;
  background-color: rgba(240, 240, 240, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.scroll-container .scrollCard:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.scroll-container .scrollCard .images img {
  max-height: 100%;
}

.scroll-container .scrollCard summary {
  pointer-events: none;
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--bs-heading-color);
  list-style: none;
  cursor: default;
}

.scroll-container summary::marker, 
.scroll-container summary::-webkit-details-marker { 
  display: none; 
}

.scroll-container .scrollCard .scrollCard-content {
  margin-top: var(--space-mdlg);
  display: flex;
  gap: var(--space-mdlg);
  width: 100%;
}

.scroll-container .scrollCard .scrollCard-content p {
  color: black;
  display: block;
  flex: 2;
  font-size: var(--text-sm);
  font-weight: 300;
}

.scroll-container .scrollCard .scrollCard-content .images {
  display: flex;
  gap: var(--space-mdlg);
  flex: 2;
  overflow: auto;
}

.scroll-container .scrollCard .scrollCard-content .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(240, 242, 246, 1);
  flex: 1;
  min-width: 225px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 2px solid rgba(189, 189, 189, 1);
}

.top-container {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  max-height: 650px;
}

.top10container {
  display: flex;
}

.top-container .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  color: white;
}

.top-container h2 {
  color: white;
}

.top-container .text-block p {
  font-size: var(--text-sm) !important;
}

.top-container .text-block button {
  margin-top: 15px;
}

.top-container .scrollable-cards {
  flex: 1;
  flex-wrap: wrap;
  min-width: 475px;
  /* max-height: 600px; */
  overflow: auto;
  scrollbar-width: none;
  display: flex;
  gap: 15px;
}

.top-container .scrollable-cards__wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--space-mdlg);
}

.top-container .scrollable-cards .review-block {
  flex: none;
  width: calc(50% - 7.5px);
}

.top-container .scrollable-cards .review-block .content p {
  /* max-height: 50px; */
  overflow: hidden;
}

.dropdown-container {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.dropdown-container label {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 200;
  text-align: left;
  color: #ffffff; /* колір тексту підпису */
}

#category-select {
  width: 100%;
  padding: 10px;
  font-size: var(--text-sm);
  border-radius: 8px;
  border: none;
  appearance: none;
  background-color: #ffffff;
  color: rgba(41, 41, 46, 1);
  background-image: url("../../img/elements/dropdown-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* FOP */

.accounting-section {
  padding-inline: 5%;
  box-sizing: content-box;
}

.accounting-section h2 {
  margin-top: 160px;
  margin-bottom: 50px;
}

.accounting-section .content {
  display: flex;
  /* align-items: center; */
  align-items: stretch;
  gap: var(--space-mdlg);
  margin-bottom: 0.75rem;
}

.accounting-section .image-container {
  margin: 10px 0;
  flex: 1;
}

.accounting-section .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.accounting-section .description {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.accounting-section .description .service {
  margin: 0.75rem 0;
  transition: 0.2s;
}

.accounting-section .description .service h4 {
  font-size: var(--text-md);
  font-weight: bold;
  color: #1e1e1e;
}

.accounting-section .description .service p {
  font-size: var(--text-sm);
  color: black;
}

.accounting-section .description .service:hover {
  background: #fff;
  box-shadow: 4px 4px 0px 0px rgba(248, 212, 77, 1);
  border: 1px solid var(--Info, rgba(79, 158, 248, 1));
  border-radius: 8px;
  padding: var(--space-sm);
}

.accounting-section {
  margin-bottom: 50px;
}

.marquee {
  height: 40px;
  margin-bottom: 50px;
  overflow: hidden;
  background: #eb5757;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee-content {
  animation: scroll 10s linear infinite;
  line-height: 24px;
}

.marquee-content p {
  font-size: var(--text-sm) !important;
  font-weight: 100 !important;
}
.marquee-content span {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: 500;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* .modal {
  z-index: 1055 !important;
} */

/* .modal-backdrop {
  z-index: 2 !important;
} */

/* GENERAL */

.div-white {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  min-height: 800px;
  padding-inline: 5%;
}

.div-white__accounting {
  padding: 0;
}

.div-white__scroll-container {
  min-height: 0;
}

/* .div-white:last-of-type{
  min-height: 0
} */

/* .div-white:first-of-type {
  min-height: 0;
} */

.div-black {
  min-height: 800px;
  width: 100%;
  background-color: black;
  /* position: relative; */
  /* z-index: 0; */
  display: flex;
  align-items: center;
  padding: 120px 5%;
  /* 
  justify-content: center; */
}

.div-black>:nth-child(1), .div-white>:nth-child(1) {
  max-width: 1600px;
  margin-inline: auto;
}
@media (min-width: 1800px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 1600px;
  }
}


.mobile,
.mobile > * {
  display: none;
}

/*  */
/* HEADER FOOTER */
/*  */

nav,
footer {
  z-index: 5;
}

header.fixed-top + main {
  padding-top: 0 !important;
  margin-bottom: 0px;
}

.bg-mode.header {
  background-color: #ffffff00;
  transition: 0.8s;
}

.header-static {
  background-color: #ffffff00;
}

.navbar-nav {
  --bs-nav-link-color: white;
}

.login-btn {
  color: var(--color-header-current);
}

:root {
  --color-header-current: #ffffff; /* Білий колір */
}

/* header .dropdown-language {
  color: #0e5ec8;
} */

.dropdown-item {
  font-weight: 300;
}

header .dropdown-language::before {
  background: #0e5ec8;
  background-color: var(--color-header-current) !important;
}

header .dropdown-language::after {
  background: #0e5ec8;
  background-color: var(--color-header-current) !important;
}

header button.dropdown-toggle {
  color: var(--color-header-current);
}

a.login-btn {
  color: var(--color-header-current);
}

.navbar {
  font-family: var(--font-primary);
  /* font-weight: 200; */
}

.navbar-nav .nav-link {
  font-weight: 300;
}

.mobile-language {
  display: flex;
  font-weight: 300;
  gap: 1.75rem;
}

.mobile-language p {
  font-family: var(--font-primary);
}

.mobile-language button {
  border: 0;
  background: none;
  font-weight: 300;
  transition: 0.05s;
  color: var(--color-primary);
}

.mobile-language .active {
  border-bottom: 2px solid var(--color-primary);
}

.mobile-language > * {
  flex-grow: 1;
}

.mobile-language .languages {
  display: flex;
  max-width: 100px;
  justify-content: space-between;
}

.nav-item.mobile-language-identifier {
  margin-bottom: 20px;
}

section {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-item.dropdown.profile-dropdown-toggler *:not(i),
.nav-item.dropdown.finances *:not(i) {
  font-family: var(--bs-body-font-family);
}
.nav-item.dropdown.profile-dropdown-toggler a.dropdown-item {
  font-weight: 500;
}

.navbar.navbar-light.navbar-expand-lg {
  font-family: var(--bs-body-font-family);
}
