:root {
  --primary: #2AA6F8;
  --nile: #19334A;
  --cyan: #96DBED;
  --danger: #dc3545;
  --azure: #D6E1EE;
  --bg-grey: #F1F6FD;
  --chat-blue: #E7EDF5;
  --black: #333333;
  --skeleton-primary: #8da5ff;
  --skeleton: #dde4ff;

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

  --typography-h2-size: 2rem;
  /* 32px */
  --typography-h2-line-height: normal;

  --typography-h3-size: 1.5rem;
  /* 24px */
  --typography-h3-line-height: normal;

  --typography-h4-size: 1.25rem;
  /* 20px */
  --typography-h4-line-height: normal;

  /* Body Typography */
  --typography-body-size: 1rem;
  /* 16px */
  --typography-body-line-height: normal;

  /* UI Element Typography */
  --typography-label-size: 0.875rem;
  /* 14px */
  --typography-label-line-height: normal;

  --typography-footer-size: 0.75rem;
  /* 12px */
  --typography-footer-line-height: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
  -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 {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

.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 */
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1.25rem;
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
  font-weight: 500;
  width: 80%;
  height: 3.375rem;
  /* 54px */
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: calc(var(--vh, 100vh));
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(129deg, #19334A 24.97%, #50609A 75.61%);
}

.hero.overlay::after {
  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;
  height: 100%;
}

.hero-content-left {
  flex: 1;
  width: 55%;
  max-width: 55%;
  padding: 3rem 0 5rem 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: 2.5rem;
}

.hero-content-left .logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 2.625rem;
  width: 2.625rem;
  object-fit: cover;
  flex-shrink: 0;
}

.logo .logo-title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-right: .25rem;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
}

.hero-content-left-text {
  margin-top: auto;
}

.hero-content-left h1 {
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-content-left h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-content-left h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-bar-list {
  display: flex;
  align-items: center;
}

.hero-bar-item {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

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

.hero-bar-item .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
  flex-shrink: 0;
  border-radius: 50%;
}

.hero-bar-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bar-item span {
  font-size: 15px;
  line-height: 24px;
  white-space: nowrap;
}

.hero-content-right {
  position: fixed;
  top: 80px;
  bottom: 20px;
  right: 80px;
  z-index: 9999;
  max-width: 460px;
  width: 45%;
  flex-shrink: 0;
  z-index: 3;
}

.focused {
  border: 1px solid #19334a !important;
  border-radius: 4px;
  box-shadow: 0 .5px 6px rgba(0, 0, 0, .04), 0 4px 12px rgba(0, 0, 0, .2);
}

/* CHECKOUT */
.checkout-outer-container {
  background: linear-gradient(129deg, #19334A 24.97%, #50609A 75.61%);
  width: 100%;
  padding-right: 55%;
}

.checkout-inner-container {
  background: white;
  border-top-right-radius: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.checkout-outer-container h2 {
  color: #000;
  font-size: 24px;
  letter-spacing: .15px;
  line-height: 20px;
  text-align: left;
  font-weight: 700;
  padding: 32px 0 8px;
}

.checkout-container {
  background-color: white;
  padding: 16px 12px;
}

.checkout-form-loader {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-chat-block .chat {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Mobile Chat Input Wrapper */
.mobile-chat-block .chat-input-wrapper {
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.mobile-chat-block .chat-input-group {
  margin-bottom: 0;
}

.mobile-chat-block .btn-send {
  width: 100%;
  font-weight: 600;
}

.mobile-chat-block .chat-footer {
  padding: .5rem 0;
}

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

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

.chat-head {
  background-color: var(--nile);
  color: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 1rem 1.25rem;
}

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


.chat-head h1 {
  color: var(--cyan);
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: .25rem;
  font-weight: 600;
}

.online-experts {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.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;
  background-color: white;
}

.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;
  height: 250px;
}

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

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

.chat-item-wrapper {
  box-shadow: 0 5px 20px var(--grey-text);
  border-radius: 0.75rem;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

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

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

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

.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: .75rem;
  color: #666;
  margin-bottom: .25rem;
}

.right .chat-item label {
  text-align: right;
}


.chat-item .message {
  white-space: pre-wrap;
  background-color: var(--chat-blue);
  border-radius: 8px;
  color: var(--black);
  padding: 8px 12px;
  font-size: 14px;
  margin-right: auto;
}

.chat-item .message ul {
  margin: 16px 0 16px 24px;
}

.chat-item .message li {
  margin-bottom: 6px;
}

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

.right .chat-item .message {
  background-color: var(--nile) !important;
  color: var(--white) !important;
}

.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.error-message {
  color: #dc3545;
}

.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: rgb(255, 255, 255, 0.7);
  padding: 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: 1rem;
  transition: 0.15s ease-in-out;
  border: 1px solid #CBD6E1;
  border-radius: 0.5rem;
  resize: none;
  min-height: 70px;
}

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

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

.chat-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chat-footer-text::before {
  background: #00bf8f;
  border-radius: 50%;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
}
.chat-footer-text {
  font-size: 12px;
  margin-top: 12px
}

.btn-send {
  border-radius: 4px;
  border: 1px solid #505f9a;
  background-color: var(--primary);
  color: #fff;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 7.25rem;
  font-size: 1rem;
  height: 3rem;
  width: 100%;
  font-weight: 600;
}

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

.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;
}

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

.features-grid {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: -2rem;
}

.feature-card {
  margin: 0 2rem 4rem 2rem;
}

.feature-icon {
  width: 15.5rem;
  height: 15.5rem;
  padding: 12px;
  background-color: var(--bg-grey);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

.feature-title {
  font-size: 19.38px;
  line-height: 24px;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

.section-title {
  font-size: var(--typography-h1-size);
  line-height: var(--typography-h1-line-height);
  margin-bottom: 48px;
  font-weight: 700;
}

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

/* Function section */
.function {
  width: 50%;
  background-color: var(--bg-grey);
  padding: 6rem 0;
}

.function .section-subtitle {
  text-align: center;
}

.function .section-title {
  text-align: center;
  margin-bottom: .75rem;
  font-size: 32px;
  line-height: 40px;
}

.function-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: -2rem;
}

.function-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2rem 4rem 2rem;
}

.function-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.function-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.function-item-text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

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

.expert .content {
  width: 50%;
}

.expert .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

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

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

.expert-item {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}

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

.expert-image {
  width: 184px;
  height: 184px;
  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: 19px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: .25rem;
  white-space: nowrap;
}

.expert-item-role {
  font-size: 16px;
  line-height: normal;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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: 16px;
  line-height: 1.5;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BANNER BOTTOM SECTION */
.banner-bottom {
  position: relative;
}

.banner-bottom::after {
  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;
}

.banner-bottom img {
  height: 626px;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CTA section */
.cta {
  padding: 4rem 0;
  background-color: var(--bg-grey);
}

.cta .content {
  width: 50%;
}

.cta .section-title {
  margin-bottom: 1rem;
}

.cta .section-subtitle {
  margin-bottom: 1rem;
  font-size: 14px;
}

.cta-highlight-text {
  font-weight: 500;
}

.cta .btn-chat-now {
  border-radius: 4px;
  width: 60%;
  font-weight: 700;
}

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

.separated {
  border-top: 1px solid #DED8E1;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

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

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

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

.ebook-content {
  width: 50%;
}

.ebook-content .section-title {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 12px;
}

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

.ebook-list {
  display: flex;
  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-new-ebook {
  margin-top: 4rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

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

.pricing h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 2.25rem;
}

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

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

.pricing-item {
  border: 1px solid #DED8E1;
  border-radius: 12px;
  padding: 4rem 2rem;
  margin-top: 1.5rem;
}

.pricing-caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  font-weight: 500;
  margin-bottom: 2rem;
}

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

.pricing-text-included {
  font-weight: 500;
  margin-bottom: 2rem;
}

.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 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;
}

/* Footer */
footer {
  padding: 6rem 0;
  /* 60px */
}

.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: 0 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;
  margin: 0 12px;
}

.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: #2c5ff8;
  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: 6px;
}

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

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

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

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

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

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

.skeleton-username {
  width: 50%;
  margin-bottom: .25rem;
}

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

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

.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-container {
  display: none;
}

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

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

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

@media (min-width: 1500px) {
  .hero-content-right {
    right: 100px;
  }
}

@media(max-width: 1200px) {
  .hero-content-left {
    max-width: 50%;
  }

  .hero-content-left h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-content-left h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .hero-content-right {
    right: 32px;
  }

  .hero-bar-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bar-item {
    margin-bottom: 1rem;
  }

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

  .features-grid {
    margin-left: -1rem;
  }

  .feature-card {
    margin: 0 1rem 2rem 1rem;
  }

  .feature-icon {
    width: 10rem;
    height: 10rem;
  }
}

@media (max-width: 1024px) {
  .hero-content-right {
    right: 24px;
  }

  .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;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

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

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

  .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,0));
    pointer-events:none; /* keep image clickable */
    z-index: 2;
  }

  .hero-content {
    padding-top: 0;
    flex: 1;
  }

  .hero-content {
    padding-top: 0;
    flex-direction: column;
    height: 100%;
  }

  .hero-content-left {
    padding: 1rem 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .hero-content-left-text {
    margin-top: 4px;
  }
  .hero-content-left h1 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .hero-content-left h2 {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .hero-content-left h3 {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 32px;
  }

  .hero-content-left .logo {
    margin-bottom: 0.5rem;
  }

  .hero-bar-list {
    display: none;
  }

  /* CHECKOUT */
  .checkout-outer-container {
    padding: 0;
    background: linear-gradient(279deg,#50609a 26.61%,#1c2440 203.61%);
  }

  .checkout-inner-container {
    background: linear-gradient(279deg,#50609a 26.61%,#1c2440 203.61%);
    width: 100%;
    border-radius: 0;
    padding: 0;
  }

  .checkout-outer-container h2 {
    color: #fff;
    font-size: 16px;
    letter-spacing: .15px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
    padding: 16px;
  }
  
  .checkout-container {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: white;
    padding: 16px 12px;
  }

  /* CHAT CONTENT */
  .mobile-chat-block .chat {
    flex: 1;
    min-height: 0;
  }

  .chat-head {
    padding: 1rem;
  }

  .chat-head h1 {
    font-size: 16px;
    font-weight: 600;
  }

  .chat-out .chat-head h1 {
    font-size: 12px;
    line-height: 16px;
    color: white;
    font-weight: 400;
  }

  .chat-in .chat-head h1 {
    font-size: 12px;
    line-height: 16px;
    color: white;
    font-weight: 400;
  }

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

  .chat-in .chat-head .online-experts {
    margin-top: 0;
  }

  .chat-in .chat-head .expert-avatars .avatar {
    border: 1px solid white;
    height: 24px;
    width: 24px;
  }

  .chat-in .expert-avatars {
    margin-right: 10px;
  }
    

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

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

  .chat-out .chat-head .expert-avatars .avatar {
    width: 48px;
    height: 48px;
    margin-right: -8px;
  }

  .chat-head .online-indicator {
    width: 24px;
    height: 24px;
  }

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

  .chat-out .chat-list {
    margin-bottom: auto;
  }

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

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

  .mobile-chat-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .mobile-chat-block .chat {
    height: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.25);
  }

  .mobile-chat-block.chat-modal-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .mobile-chat-block .chat {
    border-radius: 0;
    height: 100%;
    min-height: 500px;
    max-height: 500px;
  }

  .mobile-chat-block .chat-out .chat-head {
    background: linear-gradient(153.86deg, rgb(37, 46, 78) 4.55%, rgb(78, 94, 150)) !important;
  }

  .mobile-chat-block .chat-head {
    border-radius: 0;
    flex-wrap: wrap;
  }

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

  .hero-content-right.chat-modal-wrapper {
    display: flex;
    position: fixed;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    bottom: 0;
    right: auto;
    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: 999;
  }

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

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

  .btn-close-chat-mobile {
    position: absolute;
    top: .75rem;
    left: .5rem;
    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-input-wrapper {
    padding-bottom: 18px;
  }
  .chat-modal-wrapper .chat-input-wrapper {
    background-color: #fafafa;
  }

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

  .chat-modal-wrapper .btn-send {
    border-radius: .5rem;
    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;
  }

  .btn-send-mobile {
    display: block;
    min-width: 32px !important;
    width: 32px !important;
    min-height: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    align-items: center;
    margin: 0px 8px 0 8px;
    border: 0;
  }

  .btn-send-mobile img {
    width: 20px;
    height: 100%;
  }

  .chat-in .chat-footer {
    display: none;
  }

  #textareaMessage {
    min-height: 2em;
    height: auto;
  }

  .features {
    padding: 2rem 0;
  }

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

  .features-grid {
    width: 100%;
  }

  .feature-card {
    margin-bottom: 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .ebook-content {
    width: 100%;
  }

  .pricing-content {
    width: 100%;
  }

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

  .function-content {
    grid-template-columns: 1fr 1fr;
  }

  .function {
    width: 100%;
  }

  .expert .content {
    width: 100%;
  }

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

  .expert .section-subtitle {
    text-align: center;
  }

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

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

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

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

  .cta .content {
    width: 100%;
  }

  .cta .section-title,
  .cta .section-subtitle,
  .cta-highlight-text {
    text-align: center;
  }

  .cta .btn-chat-now {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .bubble-chat-container {
    display: block;
    position: fixed;
    bottom: 24px;
    z-index: 999;
    width: 100%;
    padding: 0 24px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out;
  }

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

  .bubble-chat-message {
    background: black;
    opacity: 0.85;
    width: 100%;
    color: white;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    padding: 12px 8px;
    font-size: 12px;
  }

  .bubble-chat-message ul {
    margin-left: 12px;
  }

  .bubble-chat-button {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    min-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;
  }

  .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;
  }

  .hero-content-left {
    padding-top: 8px;
  }

  .hero-text h1,
  .section-title {
    font-size: 2rem;
  }

  .logo .logo-title {
    font-size: 1.5rem;
  }

  .chat-head h1 {
    margin-bottom: 0;
  }

  .feature-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .function-content {
    grid-template-columns: 1fr;
  }

  .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-new-ebook {
    width: 100%;
  }

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

  .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);
  }
}