:root {
  --primary: #2B5BD9;
  --primary-dark: #2750E6;
  --primary-light: #D6E1EE;
  --danger: #dc3545;
  --grey: #666666;
  --grey-light: #999999;
  --grey-border: #CCCCCC;
  --bg-footer: #F5F5F5;
  --chat-blue: #E7EDF5;
  --black: #333333;
  --skeleton-primary: #8da5ff;
  --skeleton: #dde4ff;
  --yellow: #F7AB5D;

  /* TYPO */
  --typography-h1-size: 38px;
  --typography-h1-line-height: normal;

  --typography-h2-size: 28px;
  --typography-h2-line-height: normal;

  --typography-h3-size: 24px;
  --typography-h3-line-height: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: none;
}

html,
body {
  color: var(--black);
  font-size: 16px;
  /* Base font size for desktop */
  line-height: var(--typography-body-line-height);
}

.hidden {
  display: none !important;
}

.original-text {
  white-space: pre-wrap;
}

.block-scroll {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

.blur {
  filter: blur(4px);
}

.animate-in {
  animation: fadeIn 0.3s forwards;
}

.container {
  width: 100%;
  max-width: 75rem;
  /* 1200px */
  margin: 0 auto;
  padding: 0 1rem;
  /* 8px */
}

/* Hero Section */
.hero {
  height: 42rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  ;
}

.hero.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-content-top {
  z-index: 3;
}

.hero-content-top .logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo img {
  height: 2.625rem;
  width: 2.625rem;
  object-fit: cover;
  margin-right: .25rem;
}

.logo .logo-title {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.logo-description {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: .5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
}

.breadcrumb-item {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-right: .5rem;
}

.breadcrumb-item:last-child {
  margin-right: 0;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item a {
  margin-right: .5rem;
}

.breadcrumb-item.active::after {
  content: "▸";
  color: #fff;
}

.hero-content-bottom {
  display: flex;
  width: 100%;
  z-index: 3;
  margin-top: 3rem;
  flex: 1;
  min-height: 0;
}

.hero-content-bottom .left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-right: 3rem;
}

.hero-content-bottom .right {
  flex: 1;
  max-width: 20rem;
  margin-top: auto;
  padding: 1rem 0;
}

.hero-content-bottom h1 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content-bottom h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

/* CHAT CONTENT */
/* CHAT BLOCK FOR MOBILE */
/* Mobile Chat Block */
.mobile-chat-block {
  display: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}

.btn-close-chat-mobile {
  display: none;
}

.chat-topic {
  font-size: 14px;
  line-height: 18px;
  background-color: var(--primary);
  padding: 12px 10px;
  color: #fff;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  min-width: 127px;
  margin-right: auto;
}

.chat {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  /* box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.25); */
}

.chat-head {
  background-color: var(--primary);
  color: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 0.75rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}

.chat-info h4 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.chat-info .description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.online-experts {
  display: flex;
  align-items: center;
}

.expert-avatars {
  position: relative;
  display: flex;
  margin-right: 2rem;
}

.expert-avatars .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: -15px;
  object-fit: cover;
  border: 2px solid #fff;
}

.expert-online-text {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
}

.expert-avatars .online-indicator {
  position: absolute;
  right: -1.75rem;
  bottom: -.5rem;
  width: 2rem;
  height: 2rem;
}

.chat-body {
  background-color: #fff;
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.chat-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--grey-light);
  margin: auto;
  gap: 0.5rem;
}

.chat-list {
  display: flex;
  flex-direction: column;
  padding: .75rem 1.25rem;
}

.chat-item-wrapper {
  border-radius: 0.75rem;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
}

.chat-item-wrapper.right {
  align-self: flex-end;
  display: flex !important;
}

.chat-item-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-right: 14px;
}

.chat-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.chat-item {
  display: flex;
  flex-direction: column;
}

.chat-item label {
  font-size: 12px;
  line-height: 18px;
  color: var(--grey-light);
  margin-bottom: .25rem;
}

.chat-item .message {
  border: 1px solid var(--primary);
  white-space: pre-wrap;
  background-color: var(--primary-light);
  border-radius: 3px;
  color: var(--black);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  margin-right: auto;
}

.chat-item .message.error-message {
  color: #dc3545;
}

.chat-item-wrapper.right .chat-item .message {
  margin-left: auto;
  margin-right: 0;
  background-color: transparent;
  color: var(--black);
}

.chat-item-message label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  margin-bottom: 0.625rem;
}

.chat-item .message.typing {
  color: var(--chat-blue);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chat-item .message.typing span {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #b7c7ff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
}

.chat-item .message.typing span:nth-child(1) {
  animation: typing 1s infinite 0s;
}

.chat-item .message.typing span:nth-child(2) {
  animation: typing 1s infinite 0.2s;
}

.chat-item .message.typing span:nth-child(3) {
  animation: typing 1s infinite 0.4s;
}

.chat-input-wrapper {
  color: var(--black);
  background-color: var(--primary-light);
  padding: 15px 1.25rem;

}

.chat-input-group {
  position: relative;
  min-height: 3.75rem;
  margin-bottom: .75rem;
}

.chat-input-group textarea {
  border: 1px solid transparent;
  min-height: 100%;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 14px;
  line-height: 18px;
  transition: 0.15s ease-in-out;
  border: 1px solid var(--primary);
  resize: none;
  min-height: 70px;
}

.chat-input-group textarea:focus {
  border-color: var(--primary-dark);
  outline: none;
}

.chat-input-group .placeholder-text {
  color: var(--black);
  font-size: .75rem;
  margin-top: .5rem;
}

.chat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-footer .footer-text {
  font-size: .875rem;
}

.btn-send {
  border-radius: 3px;
  border: 0;
  background-color: var(--yellow);
  color: var(--black);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 7.125rem;
  font-size: 1rem;
  height: 2.5rem;
  font-weight: 700;
}

.btn-send.reverse {
  background-color: var(--primary);
  color: #fff;
}

.btn-send img {
  width: 1.5rem;
  height: 1.5rem;
}

/* END CHAT CONTENT */
.recap-title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: .5rem;
  display: block;
}

.btn-continue {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: .75rem;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  width: 100%;
  height: 3rem;
  min-height: inherit;
}

.btn-continue:hover {
  cursor: pointer;
}

.section-title {
  font-size: var(--typography-h1-size);
  line-height: var(--typography-h1-line-height);
  margin-bottom: 2rem;
  /* 10px */
  font-weight: 500;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

/* Expert section */
.expert {
  padding: 4rem 0;
}

.expert .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.expert .section-subtitle {
  margin-bottom: 2rem;
  text-align: center;
}

.expert .expert-content {
  display: flex;
}

.expert-item {
  display: flex;
  flex-direction: column;
  background-color: rgba(43, 91, 217, 0.05);
  padding: 12px 20px;
  margin-right: 1.25rem;
}

.expert-item:last-child {
  margin-right: 0;
}

.expert-profile {
  display: flex;
  align-items: center;
}

.expert-info {
  display: flex;
  flex-direction: column;
  margin-left: 18px;
}

.expert-rating {
  display: flex;
  margin: .75rem 0;
}

.expert-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1rem;
  align-self: center;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-item-name {
  font-size: .875rem;
  line-height: 1.125rem;
  font-weight: 600;
  margin-bottom: .25rem;
  white-space: nowrap;
}

.expert-item-role {
  font-size: .875rem;
  line-height: 1.125rem;
  color: var(--grey);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating {
  display: flex;
}

.rating img {
  width: 1rem;
  height: 1rem;
  object-fit: cover;
  margin-right: 2px;
}

.expert-item-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #696868;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ebook section */
.ebook {
  padding: 4rem 0;
}

.ebook .banner {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin-bottom: 4rem;
}

.ebook-content .section-title {
  font-weight: 700;
  text-align: center;
}

.ebook-content .section-subtitle {
  text-align: center;
}

.ebook-list {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.ebook-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
}

.ebook-item:last-child {
  margin-right: 0;
}

.ebook-item p {
  font-size: 15px;
  text-align: center;
  margin-top: 1rem;
}

.ebook-item .icon {
  height: 42px;
  width: auto;
}

.btn-pricing.btn-new-ebook {
  margin-top: 4rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

/* Pricing section */
.pricing {
  padding: 4rem 0;
}

.pricing h1 {
  font-size: var(--typography-h1-size);
  font-weight: 700;
  margin-bottom: 3.25rem;
  text-align: center;
}

.pricing .sub-title {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-content {
  display: flex;
  flex-direction: column;
}

.pricing-item {
  border: 1px solid #DED8E1;
  border-radius: 12px;
  padding: 4rem 2rem;
  width: 100%;
  max-width: 37.5rem;
  margin: 2.5rem auto 0 auto;
}

.pricing-caption {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 18px;
}

.pricing-badge {
  font-size: .75rem;
  line-height: 1.125;
  padding: .5rem 1rem;
  background-color: var(--primary-light);
  border-left: 2px solid var(--primary)
}

.pricing-price .price {
  font-size: 48px;
  line-height: 48px;
  font-weight: 500;
  margin-right: 2px;
}

.pricing-separate {
  height: 1px;
  width: 100%;
  background-color: #696868;
  margin: 1.5rem 0;
}

.pricing-text-included {
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.25rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.pricing-list li:last-child {
  margin-bottom: 0;
}

.pricing-list li i {
  font-size: 1.5rem;
  margin-right: .75rem;
}

.pricing-item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 12px;
}

.pricing-item-description {
  font-size: 16px;
  line-height: 1.25;
}

.btn-pricing {
  border-radius: 3px;
  border: 0;
  background-color: var(--yellow);
  color: var(--black);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  height: 2.5rem;
  font-weight: 700;
  width: 100%;
  margin-top: 1.5rem;
}

.btn-pricing.mobile {
  display: none;
}

/* Credentials section */
.credentials {
  margin-bottom: 2.5rem;
}

.credentials-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.credentials-container .credential {
  height: 64px;
  width: auto;
  margin-right: 2rem;
}

.credentials-container .credential:last-child {
  margin-right: 0;
}

.credentials-container .credential img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credential.credential-bb {
  height: 48px;
}

.credentials-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.credential-title {
  font-size: .75rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  /* 64px */
}

.features .section-title {
  text-align: center;
}

.features-grid {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.features-grid .feature-card {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.features-grid .feature-card:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 10rem;
  height: 10rem;
  background-color: var(--bg-grey);
  border: 6px solid #f5f5f5;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: .5rem;
  font-weight: 700;
}

.feature-text {
  font-size: var(--typography-body-size);
  line-height: 1.5rem;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Why section */
.why {
  display: flex;
}

.why-left {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--grey-border);
  border-right: 1px solid var(--grey-border);
}

.why-content-wrapper {
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.why-content {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-content-wrapper:first-child {
  border-bottom: 1px solid var(--grey-border);
}

.why-content h4 {
  font-size: var(--typography-h2-size);
  line-height: 2.625rem;
  text-align: center;
  font-weight: 400;
}

.why-content img {
  margin: 2rem auto
}

.why-content.coins img {
  max-width: 170px;
}

.why-content.circles img {
  max-width: 455px;
}

.why-right {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  border-top: 1px solid var(--grey-border);
}

.why-content-wrapper.right.half {
  width: 50%;
}

.why-content-wrapper.border-right {
  border-right: 1px solid var(--grey-border);
}

/* Footer */
footer {
  padding: 1.5rem 0;
  /* 60px */
  background-color: #F5F5F5;
}

.footer-company-info {
  margin-bottom: 4px;
  font-size: .75rem;
  line-height: 1.25rem;
  color: #666666;
}

.footer-company-info.information {
  margin-top: 24px;
}

.footer-copyright {
  font-size: .75rem;
  line-height: 1.25rem;
  color: #666666;
  margin-top: 24px;
}

.footer-legal {
  display: flex;
  align-items: center;
  font-size: .75rem;
  color: #666666;
  font-weight: 700;
  margin-top: 2rem;
}

.toggle-legal {
  width: 32px;
  height: auto;
  display: flex;
}

.toggle-legal-toggle img {
  width: 100%;
  height: 100%;
}

.footer-legal-toggle {
  display: flex;
  margin-right: 2rem;
  margin-left: 2rem;
}

.footer-legal-toggle .prefix-legal {
  margin-right: 4px;
}

.footer-legal button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  color: #666666;
  font-weight: 700;
}

.footer-tos-list button:hover {
  text-decoration: underline;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: 0;
  /* Firefox */
}

/* Dialog */
.dialog-overlay,
.notify {
  inset: 0px;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.15s ease-in-out;
  background-color: #fff;
}

.notify {
  background-color: rgb(19, 19, 19, 0.5);
  z-index: 10000;
}

.notify .dialog-content {
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
}

.notify .dialog-head {
  padding: 2rem 2.5rem;
  background-color: #fafafa;
  color: #131313;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.dialog-head .online {
  display: flex;
}

.dialog-head .online-info h4 {
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.dialog-head .online-info p {
  font-size: var(--typography-label-size);
  line-height: var(--typography-label-line-height);
}

.notify .dialog-body {
  padding: 2rem 2.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.notify .recap-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.notify .recap-avatar {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1.25rem;
}

.notify .recap-info h4 {
  font-size: var(--typography-h3-size);
  line-height: var(--typography-h3-line-height);
  margin-bottom: 0.75rem;
}

.notify .recap-info p {
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
}

.notify .recap-rate {
  justify-content: center;
}

.notify .stars svg path {
  color: #131313;
}

.notify h2 {
  font-size: var(--typography-h3-size);
  line-height: var(--typography-h2-line-height);
  max-width: 30rem;
  width: 100%;
  text-align: center;
  margin: 3rem auto;
}

.notify .separator {
  height: 1px;
  background-color: var(--grey-text);
  width: 100%;
  margin-bottom: 3rem;
}

.notify .btn-primary {
  width: 100%;
  margin: 3rem 0;
}

.dialog-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: white;
}

.btn-close-dialog {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.btn-close-dialog:hover {
  background-color: var(--grey-text);
}

.btn-close-dialog svg {
  width: 1.5rem;
  height: 1.5rem;
}

.dialog-body {
  width: 100%;
  height: 100%;
  overflow: auto;
}

/* Form section */
.form-section {
  position: relative;
  min-height: 100vh;
}

.form-section .container {
  height: 100%;
}

.form-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 2rem;
  max-width: 50%;
}

.form-title {
  font-size: var(--typography-h2-size);
  line-height: var(--typography-h2-line-height);
  margin-bottom: 1rem;
}

.form-subtitle {
  font-size: var(--typography-h4-size);
  line-height: var(--typography-h4-line-height);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.form-banner {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  filter: blur(8px);
}

.form-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-recap {
  border-radius: 1.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.form-recap-head {
  background-color: var(--primary);
  color: #fff;
  padding: 1.25rem;
  display: flex;
}

.recap-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
  background-color: var(--grey-text);
  position: relative;
}

.recap-avatar .image-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.recap-avatar .shield {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.recap-info h4 {
  font-size: var(--typography-h4-size);
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.recap-list {
  font-size: 1rem;
  font-weight: 400;
}

.recap-info p {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
}

.recap-rate {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-right: 2px;
}

.stars li {
  margin-right: 2px;
}

.stars li:last-child {
  margin-right: 0;
}

.stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.recap-rate p {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0;
}

.form-recap-body {
  padding: 1.25rem 0.5rem;
}

.form-recap-body ul {
  padding-left: 1.5rem;
}

.form-recap-body li {
  padding: 0.25rem 0;
}

.form-recap-body h4 {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.625rem;
}

.form-recap-body .message {
  font-size: 1.125rem;
  line-height: normal;
}

.form-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  animation: spin 1s linear infinite;
  color: var(--primary);
}

.form-wrapper .online {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}

.avatars {
  position: relative;
  height: 2.8175rem;
  padding-left: calc(2.8175rem * 3);
}

.avatars .avatar {
  width: 2.8175rem;
  height: 100%;
  border-radius: 50%;
  background-color: var(--grey-text);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.avatars .avatar:nth-child(2) {
  left: 2rem;
}

.avatars .avatar:nth-child(3) {
  left: 4rem;
}

.online-info h4 {
  font-size: var(--typography-h4-size);
  line-height: var(--typography-h4-line-height);
  font-weight: 500;
  color: var(--primary);
}

.online-info p {
  line-height: 2rem;
}

.form-separator {
  height: 1px;
  background-color: var(--grey-text);
  width: 100%;
}

.form-brand {
  height: 5rem;
  width: 60%;
  margin: 1rem auto 0;
}

.form-brand img {
  width: 100%;
  max-width: 100%;
}

/* Chat Skeleton */
.skeleton {
  background-color: var(--skeleton);
  border-radius: 0.75rem;
  height: 1rem;
}

.skeleton-primary {
  background-color: var(--skeleton-primary);
  border-radius: 0.75rem;
  height: 1rem;
}

/* Chat Head Skeleton */
.chat-head-skeleton {
  display: flex;
  align-items: center;
  width: 100%;
}

.skeleton-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 14px;
}

.skeleton-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.skeleton-name {
  width: 60%;
  margin-bottom: 0.625rem;
}

.skeleton-description,
.skeleton-rate {
  width: 80%;
}

/* Chat Body Skeleton */
.skeleton-message {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-item-wrapper-skeleton {
  width: 80%;
  margin-bottom: 0.625rem;
}

.chat-item-skeleton {
  flex: 1;
}

.skeleton-username {
  width: 50%;
  margin-bottom: 4px;
}

.skeleton-message-content {
  width: 100%;
  height: 44px;
}

.tooltip-container {
  position: relative;
  width: 100%;
  display: flex;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.tooltip-arrow {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--black);
}

.form-legal {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.form-legal span {
  text-decoration: underline;
}

.form-legal span:hover {
  cursor: pointer;
}

.bubble-chat-button {
  display: none;
}

.bubble-chat-button.hidden {
  display: none;
}

@media (max-width: 1400px) {}

@media(max-width: 1200px) {}

@media (max-width: 1024px) {
  .hero {
    height: 40rem;
  }

  .hero-content-bottom .left {
    margin-right: 1.5rem;
  }

  .hero-content-bottom h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-content-bottom h2 {
    font-size: 18px;
    line-height: 28px;
  }

  .form-wrapper {
    max-width: 100%;
  }

  .form-banner {
    display: none;
    /* position: relative; */
  }

  .chat-head {
    padding: .5rem;
  }

  .chat-list {
    padding: .5rem;
  }

  .chat-input-wrapper {
    padding: .5rem;
    margin-bottom: 0;
  }

  .pricing-item {
    padding: 2rem 1rem;
  }

  .why-content img {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {

  html,
  body {
    font-size: 14px;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .hero-bg {
    display: none;
  }

  .hero.overlay::before {
    display: none;
  }

  .logo .logo-title {
    color: #696868;
    font-weight: 500;
    font-size: 18px;
  }

  .logo-description {
    color: #343434;
    font-weight: 400;
  }

  .breadcrumb {
    display: none;
  }

  .hero-content-bottom {
    margin-top: .5rem;
  }

  /* CHAT CONTENT */
  .mobile-chat-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 350px;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
  }

  .mobile-chat-block .chat {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    box-shadow: none;
  }

  .mobile-chat-block .chat-input-wrapper {
    background-color: transparent;
  }

  .mobile-chat-block .chat-input-group {
    box-shadow: 0px 0px 6px 2px rgba(43, 91, 217, 0.23);
    position: relative;
    margin-bottom: 0;
    display: flex;
  }

  .mobile-chat-block .btn-send {
    position: absolute;
    top: 50%;
    right: .25rem;
    transform: translateY(-50%);
    height: auto;
    opacity: .8;
  }

  .mobile-chat-block .chat-input-group textarea {
    border: none;
    min-height: 48px;
    padding-top: 16px;
  }

  .hero-content-bottom .left.chat-modal-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
  }

  .hero-content-bottom .left,
  .hero-content-bottom .right {
    display: none;
  }

  .chat-topic {
    display: none;
  }

  .chat-head {
    padding: 1rem;
    border-top-right-radius: 0.75rem;
    border-top-left-radius: 0.75rem;
  }

  .chat-head .online-experts {
    margin-top: .5rem;
  }

  .chat-head .recap-avatar {
    margin-right: 8px;
  }

  .chat-head .expert-avatars .avatar {
    width: 2rem;
    height: 2rem;
    margin-right: -12px;
  }

  .chat-head .online-indicator {
    width: 1.5rem;
    height: 1.5rem;
    right: -1.5rem;
  }

  .chat-list {
    margin-top: auto;
    height: auto;
  }

  .chat-item-wrapper {
    margin-bottom: .75rem;
  }

  .hero-content-right {
    display: none;
  }

  .hero-content-right.chat-modal-wrapper {
    display: flex;
    position: fixed;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 99;
  }

  .chat-modal-wrapper .chat {
    border-radius: 0;
    height: 100%;
  }

  .chat-modal-wrapper .chat-head {
    border-radius: 0;
    padding-left: 3rem;
  }

  .btn-close-chat-mobile {
    position: absolute;
    top: 2rem;
    left: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .btn-close-chat-mobile img {
    width: 2rem;
    height: 2rem;
  }

  .chat-modal-wrapper .chat-input-wrapper {
    background-color: #fafafa;
  }

  .chat-modal-wrapper .chat-footer {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .chat-modal-wrapper .chat-footer .footer-text {
    display: none;
  }

  .chat-modal-wrapper .btn-send {
    padding: .75rem 1rem;
  }

  .chat-modal-wrapper .chat-input-group {
    margin-bottom: 0;
  }

  .chat-modal-wrapper .chat-input-group textarea {
    min-height: 100px;
  }

  .chat-modal-wrapper .chat-input-group .placeholder-text {
    display: none;
  }

  .chat-modal-wrapper .chat .btn-send {
    width: 100%;
    justify-content: center;
  }

  .chat-modal-wrapper .chat-suggestions-online {
    display: flex;
    margin-top: 1.5rem;
  }

  .chat-suggestions-online .expert-avatars img {
    width: 2rem;
    height: 2rem;
  }

  .chat-suggestions-online .expert-count span {
    color: #696868;
  }

  .chat-suggestions-online .online-indicator {
    width: .5rem;
    height: .5rem;
  }

  .chat-info .description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pricing-item {
    padding: 3rem 2rem;
  }

  .expert .expert-content {
    flex-direction: column;
  }

  .expert-item {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .expert-item:last-child {
    margin-bottom: 0;
  }

  .expert-image {
    width: 132px;
    height: 132px;
  }

  .expert-item-description {
    text-align: left;
  }

  .btn-pricing {
    display: none;
  }

  .btn-pricing.mobile {
    display: flex;
  }

  .explore-content {
    flex-direction: column;
  }

  .explore-image {
    max-width: 100%;
    width: 100%;
    height: 516px;
  }

  .btn-cta-final-mobile {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta-final-md {
    display: none;
  }

  .why-content-wrapper.right.half {
    width: 100%;
  }

  .why-content-wrapper.border-right {
    border-right: 0;
    border-bottom: 1px solid var(--grey-border);
    min-height: 500px;
  }

  .why-content.coins img {
    max-width: 75px !important;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .bubble-chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out;
  }

  .bubble-chat-button img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
  }

  .bubble-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .cta .btn-chat-now {
    width: 100%;
  }

  .cta .btn-chat-now.mobile {
    display: block;
  }

  .cta .btn-chat-now.md {
    display: none;
  }
}

@media (max-width: 642px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    padding-top: 48px;
  }

  .btn-cta-final-mobile {
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .why {
    flex-direction: column;
  }

  .ebook-content .section-title {
    text-align: left;
  }

  .ebook-content .section-subtitle {
    text-align: left;
  }

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

  .ebook-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .ebook-item p {
    text-align: left;
  }

  .btn-pricing.btn-new-ebook {
    width: 100%;
  }

  .notify {
    padding: 1rem;
    align-items: flex-start;
  }

  .notify .dialog-content {
    width: 100%;
  }

  .notify .dialog-head {
    padding: 1.5rem 1rem;
  }

  .notify .dialog-body {
    padding: 1.5rem 1rem;
  }

  .notify .recap-avatar {
    width: 5rem;
    height: 5rem;
  }

  .notify h2 {
    margin: 2rem auto;
  }

  .notify .separator {
    margin-bottom: 2rem;
  }

  .notify .btn-primary {
    margin: 2rem 0;
  }

  .form-wrapper {
    padding-top: 1rem;
  }

  .form-title {
    font-size: var(--typography-h3-size);
    line-height: var(--typography-h3-line-height);
  }

  .form-subtitle {
    margin-bottom: .75rem;
    font-size: var(--typography-h4-size);
    line-height: var(--typography-h4-line-height);
  }

  .form-recap-head {
    padding: .5rem;
  }

  .form-control .control {
    height: 3rem;
  }
}

@media screen and (max-height: 768px) and (max-width: 1024px) {}

@media screen and (max-height: 768px) and (max-width: 642px) {}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@keyframes typing {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}