* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #000;
}
body.light {
  background-color: #f1f5ff;
}
.bg {
  background: linear-gradient(180deg, #f0f4ff 0%, #fff 100%);
  padding-bottom: 84px;
}
.wrapper {
  display: flex;
  max-width: 1440px;
  padding: 48px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #dfe2ef;
  background: #fff;
}
.container {
  padding: 48px 0 0 0;
}
.trusted-guidance {
  max-width: 880px;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.flex-justify-center {
  justify-content: center;
}
.flex-align-center {
  align-items: center;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-column {
  flex-direction: column;
}
.fg-36 {
  gap: 36px;
}
.fg-20 {
  gap: 20px;
}
.fg-12 {
  gap: 12px;
}
.fg-5 {
  gap: 5px;
}
.logo-kasamba {
  width: 70px;
  height: 70px;
  margin-bottom: 36px;
}
.h1 {
  font-size: 37px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
}
.h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
}
.h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.h4 {
  color: #121212;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
h5 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}
p {
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  color: #121212;
  margin-top: 24px;
  margin-bottom: 36px;
}
.first-p {
  margin-top: 12px;
  margin-bottom: 36px;
}
.p-small {
  font-size: 15px;
}
.p-extra-small {
  font-size: 12px;
}
.text-center {
  text-align: center;
}
.color-white {
  color: #fff;
}
.m-0 {
  margin: 0;
}

.card {
  border-radius: 20px;
  border: 0.5px solid #dfe2ef;
  background: #fff;
  padding: 24px;
  margin-top: 16px;
}
.card-first {
  margin-top: 24px;
}
.card-img {
  width: 48px;
  height: 48px;
}
.card-text {
  color: #636570;
}
.exceptional-advisors {
  border-radius: 20px;
  background: #f2f5ff;
  padding: 24px;
  margin-top: 36px;
}
.exceptional-advisors-margin {
  margin: 10px;
}
.exceptional-advisors-color {
  color: #636570;
}
.purple-box {
  width: 100%;
  border-radius: 12px;
  border: 0.5px solid #dfe2ef;
  background: #6c84ff;
  color: #fff;
  padding: 20px 16px;
  margin: 36px 0 0 0;
}
.verified {
  width: 12px;
  height: 13px;
}
.cta {
  border-radius: 8px;
  background: #fff;
  display: flex;
  width: 200px;
  height: 48px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 24px auto;
  text-decoration: none;
  color: #121212;
  font-size: 17px;
  font-weight: 700;
}
.container-breadcrumb {
  max-width: 1440px;
  margin: 24px auto;
}
.breadcrumb-link {
  color: #121212;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}
.breadcrumb-current-page {
  color: #636570;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
}
.icon-security {
  width: 60px;
  height: 60px;
}

/*Dark mode*/
.dark .bg {
  background: #383a40;
}
.dark .wrapper {
  background: #383a40;
  border: 1px solid #27292f;
}
.dark .trusted-guidance {
  background: #383a40;
}
.dark .h1,
.dark .h2,
.dark .h3,
.dark .h4,
.dark h5,
.dark p,
.dark .card-text,
.dark .exceptional-advisors-color,
.dark .breadcrumb-link,
.dark .breadcrumb-current-page {
  color: #fff;
}
.dark .card {
  background: #27292f;
  border: #27292f;
}
body.dark {
  background-color: #383a40;
}
.dark .exceptional-advisors {
  background: #27292f;
}
.dark .purple-box {
  border: 0.5px solid #6c84ff;
}
/*END Dark mode*/

@media (max-width: 1440px) {
  .wrapper {
    max-width: 1024px;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .bg {
    padding-bottom: 36px;
  }
  .wrapper {
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
  }
  .container {
    padding: 16px 0 0;
  }
  .container-breadcrumb {
    padding: 0 16px;
  }

  .fg-12-mobile {
    gap: 12px;
  }
  .logo-kasamba {
    width: 48px;
    height: 48px;
  }
  .flex-column-mobile {
    flex-direction: column;
    text-align: center;
  }
  .h1 {
    font-size: 24px;
    line-height: 28px;
    margin: 0 15px;
    text-align: center;
  }
  .h2 {
    font-size: 22px;
    line-height: 140%;
    text-align: center;
  }
  .h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    padding-right: 0;
  }
  .h4 {
    font-size: 16px;
    text-align: center;
  }
  .h5 {
    font-size: 18px;
    padding: 0 10px;
  }
  .h3-profil {
    margin-right: 15px;
  }
  .h3-training {
    margin-right: 35px;
  }
  p {
    font-size: 15px;
    margin-top: 21px;
    margin-bottom: 24px;
  }
  .p-small {
    font-size: 14px;
  }
  .card-img {
    width: 36px;
    height: 36px;
  }
  .card {
    border-radius: 16px;
    padding: 16px;
    margin-top: 10px;
  }
  .card-first {
    margin-top: 16px;
  }
  .card-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-right: 35px;
  }
  .icon-security {
    padding-bottom: 15px;
  }
  .cta {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .wrapper {
    margin: 0 16px;
  }
}
@media (max-width: 360px) {
  .cta {
    width: auto;
    height: auto;
  }
}
