* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Light Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Medium Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B SemiBold Italic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid Circular B Bold Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
:root {
  --primary-color: #007AFF;
  --text-dark: #BBC1D7;
  --text-muted: #8E91A0;
  --bg-light: #F3F7FA;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 12px;
}

.back-btn-wrapper {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  pointer-events: none;
  z-index: 1000;
}

.back-btn {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: var(--Glass-White-Bg, rgba(255, 255, 255, 0.5));
  box-shadow: 0 0 20px 0 rgba(64, 60, 97, 0.05);
  cursor: pointer;
  pointer-events: auto;
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.3s;
}
.back-btn:hover {
  border-radius: 1000px;
  background: var(--White, #FFF);
}
.back-btn.show {
  opacity: 1;
  visibility: visible;
}

a,
li,
ul {
  list-style: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.wrapper {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
span,
p {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Euclid Circular B", sans-serif;
  background-color: var(--bg-light);
  min-height: 100vh;
  padding: 0 !important;
  overflow: unset !important;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  header {
    padding-top: 20px;
  }
}
header::before {
  content: "";
  width: 172px;
  height: 99px;
  flex-shrink: 0;
}
header::after {
  content: "";
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
header .logo-btn {
  pointer-events: auto;
  position: fixed;
  height: 60px;
  top: 79.5px;
  left: 20px;
  z-index: 1000;
  border-radius: 100px;
  background: var(--Glass-White-Bg, rgba(255, 255, 255, 0.5));
  /* Button Glass+Shadow */
  box-shadow: 0 0 20px 0 rgba(64, 60, 97, 0.05);
  display: inline-flex;
  align-items: center;
  border: none;
  padding: 22.5px 30px;
}
@media (max-width: 768px) {
  header .logo-btn {
    transform: translateX(-20px);
    top: 39.5px;
    left: 40px;
  }
}
@media (min-width: 1180px) {
  header .logo-btn {
    left: calc(50% - 590px + 20px);
  }
}
header .logo-btn img {
  width: 146px;
  height: 30px;
}
header .nav-links {
  pointer-events: auto;
  display: none;
  gap: 30px;
}
@media (min-width: 992px) {
  header .nav-links {
    display: flex;
  }
}
header .nav-links a {
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
header .menu-btn {
  pointer-events: auto;
  position: fixed;
  top: 79.5px;
  right: 20px;
  z-index: 1000;
}
@media (max-width: 768px) {
  header .menu-btn {
    top: 39.5px;
  }
}
@media (min-width: 1180px) {
  header .menu-btn {
    right: calc(50% - 590px + 20px);
  }
}
header .menu-btn {
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 1000px;
  background: var(--Glass-White-Bg, rgba(255, 255, 255, 0.5));
  transition: all 0.3s all;
  /* Button Glass+Shadow */
  box-shadow: 0 0 20px 0 rgba(64, 60, 97, 0.05);
}
header .menu-btn:hover {
  border-radius: 1000px;
  background: var(--White, #FFF);
}

/* Main Section */
.hero-section {
  display: flex;
  align-items: center;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .hero-section {
    margin-bottom: 60px;
  }
}
.hero-section .heroMainBlock {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero-section .heroMainBlock {
    gap: 100px;
  }
  .hero-section .heroMainBlock .heroContetsBlock,
  .hero-section .heroMainBlock .calculatorBlock {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .hero-section .heroMainBlock .heroContetsBlock {
    width: calc(50% - 10px);
  }
  .hero-section .heroMainBlock .calculatorBlock {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .hero-section .heroMainBlock .heroContetsBlock {
    width: calc(66.666% - 10px);
  }
  .hero-section .heroMainBlock .calculatorBlock {
    width: calc(33.333% - 10px);
  }
}
.hero-section .hero-title {
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title {
    margin-bottom: 30px;
    font-size: 35px;
  }
}
.hero-section .hero-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 36px;
  }
}
.hero-section .hero-subtitle {
  color: var(--Gray-Lt, #8A96AF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 125% */
  letter-spacing: -0.1px;
  border-left: 2px solid #DDE1EC;
  padding-left: 20px;
  max-width: 480px;
}
.hero-section .hero-subtitle span {
  font-size: inherit;
  color: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding-bottom: 10px;
  display: block;
}
.hero-section .hero-subtitle.hero-subtitle2 {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
    padding-left: 15px;
  }
}
.hero-section .heroContetsBlock {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.btn-sub-title {
  color: var(--Grey-Dk-H2, #5D5979);
  /* H2 */
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-top: 70px;
}
.btn-sub-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  display: block;
}

.primary-btn {
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  background: var(--Brand-Accent, #008CFF);
  /* Glass Button Fx */
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  cursor: pointer;
  padding: 21px 50px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .primary-btn {
    padding: 21.5px 31.5px;
    width: 100%;
  }
}
.primary-btn:hover {
  border-radius: 25px;
  background: #007ADE;
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset;
}
.primary-btn img {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}
.primary-btn .primary-btn-text strong {
  text-align: center;
  color: var(--White, #FFF);
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 2px;
}
.primary-btn .primary-btn-text small {
  color: var(--White, #FFF);
  /* Footnote+Caption */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: block;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .primary-btn .primary-btn-text small {
    text-align: start;
  }
}

/* Calculator Card */
.calc-card {
  border-radius: 30px;
  background: var(--White, #FFF);
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 50px 30px 80px 30px;
}
.calc-card .calc-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  /* H2 */
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 120% */
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
.calc-card .calc-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}
.calc-card .calcForm_blocks {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.calc-card .input-title {
  color: var(--Grey-Ltst, #BBC1D7);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  margin-bottom: 10px;
}
.calc-card .calcForm_block:last-of-type {
  grid-column: 1/-1;
}
.calc-card .input-group-custom {
  border-radius: 20px;
  background: var(--Bg-Lt, #F7FAFC);
  display: flex;
  align-items: center;
  padding: 17px 20px;
}
.calc-card .input-group-custom input {
  border: none;
  background: transparent;
  flex-grow: 1;
  outline: none;
  padding-left: 15px;
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.calc-card .input-group-custom input::-moz-placeholder {
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.calc-card .input-group-custom input::placeholder {
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.calc-card .input-group-custom input {
  /* Remove number arrows (spinners) */
}
.calc-card .input-group-custom input::-webkit-outer-spin-button, .calc-card .input-group-custom input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-card .input-group-custom input[type=number] {
  -moz-appearance: textfield;
}
.calc-card .input-group-custom .value-placeholder {
  color: var(--Grey-Ltst, #BBC1D7);
  text-align: right;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.16px;
}
.calc-card .calc-submit {
  width: 100%;
  padding: 16.5px;
  cursor: pointer;
  border-radius: 25px;
  border: 1.5px solid #F7FAFC;
  background: var(--White, #FFF);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* Glass Button White Fx */
  box-shadow: 0 7px 8.2px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.calc-card .calc-submit:hover {
  border-radius: 25px;
  border: 1.5px solid var(--Grey-Stroke, #DDE1EC);
  background: var(--White, #FFF);
}
.calc-card .calc-submit img {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}
.calc-card .calc-submit .calc-submit-text {
  text-align: start;
}
.calc-card .calc-submit .calc-submit-text strong {
  color: var(--Grey-Dk-H2, #5D5979);
  /* Body */
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  margin-bottom: 2px;
}
.calc-card .calc-submit .calc-submit-text small {
  color: var(--Grey-Dk-H2, #5D5979);
  /* Footnote+Caption */
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
}

/* Modals Customization */
.right-panel-modal .modal-dialog {
  position: fixed;
  margin: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 20px;
}
.right-panel-modal .modal-content {
  height: 100%;
  border-radius: 0;
  /* Removed border-radius on the left (and all sides) */
  border-radius: 30px;
  background: var(--White, #FFF);
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 160px 20px 20px 20px;
  overflow-y: auto;
}
.right-panel-modal .modal-content.form-instruction {
  padding: 60px 20px 20px 20px;
}
@media screen and (max-width: 768px) {
  .right-panel-modal .modal-content.form-instruction {
    padding: 60px 20px;
    height: 100%;
  }
}
.right-panel-modal .modal-content.resultModalContent {
  padding: 0;
  border-radius: 30px;
  background: var(--main-bg-98, #F3F7FA);
}
.right-panel-modal .modal-content.resultModalContent .resultStatus {
  border-radius: 0 0 30px 30px;
  background: var(--White, #FFF);
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 40px 20px 60px 20px;
}
.right-panel-modal .modal-content.resultModalContent .resultStatus_btn__block {
  padding: 0 20px;
  padding-bottom: 20px;
}
.right-panel-modal .modal-content.resultModalContent .modal-close-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .right-panel-modal .modal-content.resultModalContent .modal-close-btn {
    display: block;
  }
}
.right-panel-modal .modal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: unset;
}
.right-panel-modal.fade .modal-dialog {
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .right-panel-modal.fade .modal-dialog {
    transform: translateX(0);
    transform: translateY(-100%);
  }
  .right-panel-modal.fade .modal-dialog.open-top {
    transform: translateY(0);
    transform: translateY(100%);
  }
}
.right-panel-modal.show .modal-dialog {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .right-panel-modal.show .modal-dialog {
    transform: translateY(0);
  }
  .right-panel-modal.show .modal-dialog.open-top {
    transform: translateY(0);
    top: unset;
    bottom: 0;
    height: unset;
  }
  .right-panel-modal.show .modal-dialog.open-top .form-instruction {
    border-radius: 30px;
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .right-panel-modal .modal-dialog {
    max-width: 100%;
    right: 0;
    top: 0;
    height: 100%;
  }
  .right-panel-modal .modal-content {
    border-radius: 0;
    padding: 190px 20px 45px 20px;
  }
}
.right-panel-modal .modal-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 1000px;
  background: var(--Brand-Accent, #008CFF);
  /* Glass Button Fx */
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
}
.right-panel-modal .modal-close-btn img {
  width: 25px;
  height: 25px;
}
.right-panel-modal {
  /* Mobile Modal Specifics */
}
@media (max-width: 768px) {
  .right-panel-modal.burger-modal-mobile .modal-close-btn {
    position: absolute;
    top: 80px;
    right: 50%;
    transform: translateX(50%);
    margin: 0;
  }
}
.right-panel-modal {
  /* Burger Menu Links */
}
.right-panel-modal .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.right-panel-modal .menu-list li {
  border-bottom: 1px solid var(--Grey-Stroke, #DDE1EC);
  padding: 0 10px;
}
.right-panel-modal .menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  text-decoration: none;
  color: var(--Grey-Md, #6D6981);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.right-panel-modal {
  /* Result Modal */
}
.right-panel-modal .result-title {
  text-align: center;
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  /* 100% */
  margin-bottom: 40px;
}
.right-panel-modal .loss-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--Gray-Lt, #8A96AF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.right-panel-modal .loss-item:nth-child(4) {
  margin-bottom: 0;
}
.right-panel-modal .loss-item .result_reytingBlock {
  display: flex;
  align-items: center;
  max-width: 130px;
  width: 100%;
}
.right-panel-modal .loss-item .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}
.right-panel-modal .loss-item .progress-bar {
  max-width: 100px;
  flex-grow: 1;
  height: 5px;
  background: rgba(213, 0, 53, 0.2);
  margin: 0 10px;
  border-radius: 4px;
  position: relative;
}
.right-panel-modal .loss-item .progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--bar-width, 40%);
  background: #D50035;
  border-radius: 5px;
}
.right-panel-modal .loss-item .progress-bar.warning {
  background: rgba(255, 166, 0, 0.2);
}
.right-panel-modal .loss-item .progress-bar.warning::after {
  background: #FFA600;
  width: 30%;
}
.right-panel-modal .loss-item .text {
  color: var(--Gray-Lt, #8A96AF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
  text-align: end;
}
.right-panel-modal .loss-item .value {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
}
.right-panel-modal .loss-item.danger .value {
  color: var(--Alert, #D50035);
}
.right-panel-modal .loss-item.warning .value {
  color: var(--Warning, #FFA600);
}
.right-panel-modal .reasons-title {
  color: var(--Grey-Dk-H2, #5D5979);
  margin: 50px 0 20px;
  color: var(--Grey-Dk-H2, #5D5979);
  /* Button Big */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 111.111% */
}
.right-panel-modal .reason-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  border-radius: 50px;
  border: 1px solid var(--Alert-Lt, #F7CCD7);
  padding: 10px 15px 10px 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
.right-panel-modal .growth-box {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--Gray-Lt, #8A96AF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.right-panel-modal .growth-box span {
  color: var(--Brand-Accent, #008CFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.right-panel-modal .action-btn {
  width: 100%;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 25px;
  background: var(--Brand-Accent, #008CFF);
  padding: 25px 0;
  /* Glass Button Fx */
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  color: var(--White, #FFF);
  gap: 10px;
  /* Button Big */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 111.111% */
}
.right-panel-modal .action-btn:hover {
  border-radius: 25px;
  background: #007ADE;
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset;
}
.right-panel-modal .action-btn img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  opacity: 0.5;
}
.right-panel-modal .action-btn .text1 {
  color: var(--White, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 111.111% */
  margin-bottom: 2px;
}
.right-panel-modal .action-btn .text2 {
  color: var(--White, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
  opacity: 0.7;
}
.right-panel-modal {
  /* Form Modal */
}
.right-panel-modal .form-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
.right-panel-modal .form_description {
  color: var(--Gray-Lt, #8A96AF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
  text-align: center;
  margin-bottom: 40px;
}
.right-panel-modal .form_description span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  display: block;
}
.right-panel-modal .form-input {
  height: 60px;
  border-radius: 20px;
  background: var(--Bg-Lt, #F7FAFC);
  border: none;
  padding: 20px;
  width: 100%;
  margin-bottom: 15px;
  outline: none;
  color: var(--Grey-Ltst, #BBC1D7);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  resize: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: "Euclid Circular B", sans-serif;
}
.right-panel-modal .area{
	height: 200px;
  border-radius: 20px;
  background: var(--Bg-Lt, #F7FAFC);
  border: none;
  padding: 20px;
  width: 100%;
  margin-bottom: 15px;
  outline: none;
  color: var(--Grey-Ltst, #BBC1D7);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  resize: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: "Euclid Circular B", sans-serif;
}
.right-panel-modal .form-input:last-child {
  margin-bottom: 0;
  padding: 10px 20px;
}
.right-panel-modal .form-input::-moz-placeholder {
  color: var(--Grey-Ltst, #BBC1D7);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  font-family: "Euclid Circular B", sans-serif;
}
.right-panel-modal .form-input::placeholder {
  color: var(--Grey-Ltst, #BBC1D7);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  font-family: "Euclid Circular B", sans-serif;
}
.right-panel-modal .input-title {
  color: var(--Grey-Ltst, #BBC1D7);
  /* Footnote+Caption */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
  margin-bottom: 10px;
  display: block;
}

.competitor-section {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .competitor-section {
    margin-bottom: 100px;
  }
}
.competitor-section .competitor-section_title {
  max-width: 510px;
  margin: 0 auto 60px;
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .competitor-section .competitor-section_title {
    max-width: 353px;
  }
}
.competitor-section .competitor-section_title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}
.competitor-section .competitor_blocks {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .competitor-section .competitor_blocks {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px !important;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 360px) {
  .competitor-section .competitor_blocks {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px !important;
    margin-bottom: 40px;
  }
}
.competitor-section .box {
  padding: 40px 30px;
  padding-bottom: 110px;
  border-radius: 30px;
  background: var(--White, #FFF);
  position: relative;
}
@media screen and (max-width: 768px) {
  .competitor-section .box {
    padding: 20px 20px 55px 20px;
    border-radius: 25px;
  }
}
.competitor-section .box .number {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 20px;
}
.red{
  color: var(--Alert, #D50035) !important;
 }
 .green{
  color: var(--Alert, #16A34A) !important;
 }
@media screen and (max-width: 768px) {
  .competitor-section .box .number {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
}
.competitor-section .box .number.blue {
  color: var(--Brand-Accent, #008CFF);
}
.competitor-section .box .position-warning-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.competitor-section .box .description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
@media screen and (max-width: 768px) {
  .competitor-section .box .description {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.14px;
  }
}
.competitor-section .box .right-icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .competitor-section .box .right-icon {
    width: 25px;
    height: 25px;
    bottom: 20px;
  }
}
.competitor-section .bottom-description {
  color: #8A96AF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
}

.revenue-loss {
  margin-bottom: 110px;
}
@media screen and (max-width: 480px) {
  .revenue-loss {
    margin-bottom: 100px;
  }
  .revenue-loss .block {
    flex-direction: column;
  }
}
.revenue-loss .title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .revenue-loss .title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
}
.revenue-loss .title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.revenue-loss .description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .revenue-loss .description {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.08px;
  }
}
.revenue-loss .item {
  padding: 20px 20px 25px 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 25px;
  background: var(--White, #FFF);
  position: relative;
}
@media screen and (max-width: 480px) {
  .revenue-loss .item {
    padding: 20px 20px 25px 20px;
  }
}
.revenue-loss .item_title {
  color: var(--Brand-Accent, #008CFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .revenue-loss .item_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.revenue-loss .item_description {
  border-left: 2px solid #DDE1EC;
  padding-left: 15px;
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .revenue-loss .item_description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.revenue-loss .warning {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .revenue-loss .warning {
    position: absolute;
    top: 110px;
    left: 20px;
    margin-bottom: 0;
  }
}
.revenue-loss .bottom_description {
  color: var(--Gray-Lt, #8A96AF);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
}
@media screen and (max-width: 480px) {
  .revenue-loss .bottom_description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.14px;
    flex: 1 0 0;
    margin-left: 35px;
  }
}
.revenue-loss .item:nth-child(4) .item_title {
  margin-bottom: 10px;
}

.system-problem {
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .system-problem {
    margin-bottom: 80px;
  }
}
.system-problem .main-block {
  border-radius: 30px;
  background: var(--Brand-Accent, #008CFF);
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 70px 20px 110px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 480px) {
  .system-problem .main-block {
    gap: 40px;
    padding: 60px 20px;
  }
}
.system-problem .title {
  color: var(--White, #FFF);
  /* TB+DT H2 */
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .system-problem .title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }
}
.system-problem .title span {
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  display: block;
}
.system-problem .description {
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.system-problem .description span {
  color: var(--White, #FFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}
.system-problem .block {
  width: 100%;
  height: 194px;
  background-image: url(../imgs/diagram.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .system-problem .block {
    height: 115px;
    margin-bottom: 40px;
  }
}

.reputation-section {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .reputation-section {
    margin-bottom: 60px;
  }
}
.reputation-section .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .reputation-section .main-title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
  .reputation-section .main-title br {
    display: none;
  }
}
.reputation-section .main-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  display: block;
}
.reputation-section .main-description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  /* TB+DT Subheading */
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 100% */
}
@media screen and (max-width: 768px) {
  .reputation-section .main-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.08px;
  }
  .reputation-section .main-description br {
    display: none;
  }
}
.reputation-section .reputation_block {
  display: flex;
  width: 100%;
  padding: 70px 40px 80px 40px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  border-radius: 40px;
  background: var(--White, #FFF);
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
}
@media screen and (max-width: 768px) {
  .reputation-section .reputation_block {
    gap: 40px;
    border-radius: 30px;
    padding: 60px 20px 80px 20px;
  }
}
.reputation-section .swiper-slide {
  height: unset;
}
.reputation-section .reputation-swiper {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .reputation-section .reputation-swiper {
    overflow: unset;
  }
  .reputation-section .reputation-swiper .boxes.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .reputation-section .reputation-swiper .swiper-pagination {
    display: none !important;
  }
}
.reputation-section .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.reputation-section .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: var(--Brand-Accent-Lt, #CCE8FF);
  opacity: 1;
  border-radius: 1000px;
  transition: all 0.3s ease;
}
.reputation-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 1000px;
  background: var(--Brand-Accent, #008CFF);
}
.reputation-section .box {
  border-radius: 25px;
  background: var(--White, #FFF);
  position: relative;
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 30px 20px 70px 20px;
}
@media screen and (max-width: 768px) {
  .reputation-section .box {
    padding: 20px 20px 70px 20px;
  }
}
.reputation-section .box .box_icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .reputation-section .box .box_icon {
    margin-bottom: 10px;
  }
}
.reputation-section .box .box_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}
.reputation-section .box .box_title span {
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 768px) {
  .reputation-section .box .box_title {
    font-size: 18px;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }
  .reputation-section .box .box_title br {
    display: none;
  }
}
.reputation-section .box .box_description1 {
  color: var(--Grey-Ltst, #BBC1D7);
  text-align: center;
  /* Button Small */
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.reputation-section .box .box_description2 {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  /* Footnote+Caption */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .reputation-section .box .box_description2 {
    position: relative;
    margin-left: 20px;
    text-align: start;
    padding-left: 10px;
  }
  .reputation-section .box .box_description2::after {
    width: 4px;
    height: 4px;
    content: "";
    background: #8A96AF;
    border-radius: 50%;
    top: 5px;
    left: 0;
    position: absolute;
  }
}
.reputation-section .box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .reputation-section .box ul {
    gap: 5px;
  }
}
.reputation-section .box ul li {
  color: var(--Gray-Lt, #8A96AF);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
  list-style: disc;
}
.reputation-section .box ul li.blue {
  color: var(--Brand-Accent, #008CFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
.reputation-section .box .number-block {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .reputation-section .box .number-block {
    bottom: 20px;
  }
}
.reputation-section .box .number-block .checked {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}
.reputation-section .box .bottom-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
}
.reputation-section .box .number {
  display: flex;
  align-items: center;
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
.reputation-section .box .number .main {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
}
.reputation-section .bottom-description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  /* Button Big */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 111.111% */
}

.clinic-results {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .clinic-results {
    margin-bottom: 100px;
  }
}
.clinic-results .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .clinic-results .main-title {
    margin-bottom: 10px;
  }
  .clinic-results .main-title br {
    display: none;
  }
}
.clinic-results .main-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}
.clinic-results .sub-description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .clinic-results .sub-description {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .clinic-results .cards-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .clinic-results .cards-block {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.clinic-results .card {
  padding: 30px 30px 40px 30px;
  border-radius: 30px;
  background: var(--White, #FFF);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .clinic-results .card {
    padding: 20px;
    border-radius: 20px;
    gap: 15px;
  }
}
.clinic-results .card::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../imgs/dot.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.clinic-results .card .country {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.08px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .clinic-results .card .country {
    margin-bottom: 15px;
  }
}
.clinic-results .card .datas {
  border-radius: 20px;
  border: 1px solid var(--Grey-Stroke, #DDE1EC);
}
.clinic-results .card .item {
  border-bottom: 1px solid var(--Grey-Stroke, #DDE1EC);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .clinic-results .card .item {
    padding: 10px;
  }
}
.clinic-results .card .item:last-of-type {
  border-bottom: none;
}
.clinic-results .card .name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--Grey-Dk, #535071);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
@media screen and (max-width: 768px) {
  .clinic-results .card .name {
    gap: 5px;
    font-size: 14px;
  }
  .clinic-results .card .name br {
    display: none;
  }
}
.clinic-results .card .body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  border-radius: 100px;
  background: var(--main-bg-98, #F3F7FA);
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
.clinic-results .card .bottom_description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}

.growth-results {
  margin-bottom: 110px;
}
@media screen and (max-width: 480px) {
  .growth-results {
    margin-bottom: 100px;
  }
}
.growth-results .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  /* TB+DT H2 */
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .growth-results .main-title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }
}
.growth-results .main-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  display: block;
}
.growth-results .card_contents {
  padding: 30px 20px;
}
@media screen and (max-width: 480px) {
  .growth-results .card_contents {
    padding: 30px 20px;
  }
}
.growth-results .card {
  border: none;
  position: relative;
  border-radius: 22.164px;
  background: var(--White, #FFF);
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .growth-results .card {
    border-radius: 20px;
    box-shadow: none;
  }
}
.growth-results .card:nth-child(2) {
  z-index: 9;
}
.growth-results .card .card-img {
  max-height: 181px;
  width: 100%;
  padding: 0 10px 10px 10px;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .growth-results .card .card-img {
    padding: 0 10px 10px 10px;
  }
}
.growth-results .card .number-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .growth-results .card .number-block {
    gap: 15px;
  }
}
.growth-results .card .number {
  display: flex;
  width: 55.409px;
  height: 55.409px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1108.179px;
  background: var(--Brand-Accent, #008CFF);
  box-shadow: 0 -4.433px 44.327px 0 rgba(0, 0, 0, 0.2) inset, 0 4.433px 22.164px 0 rgba(255, 255, 255, 0.4) inset, 0 3.325px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4.433px 11.082px 0 rgba(0, 140, 255, 0.3);
  color: var(--White, #FFF);
  text-align: center;
  font-size: 19.947px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.164px;
}
@media screen and (max-width: 480px) {
  .growth-results .card .number {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 20px;
  }
}
.growth-results .card .number-contents {
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  font-size: 19.947px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.164px;
}
.growth-results .card .number-contents span {
  display: block;
  color: var(--Gray-Lt, #8A96AF);
  font-size: 15.515px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.623px;
  letter-spacing: 0.155px;
  margin-top: 5px;
}
@media screen and (max-width: 480px) {
  .growth-results .card .number-contents span {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.14px;
  }
}
@media screen and (max-width: 480px) {
  .growth-results .card .number-contents {
    font-size: 18px;
    line-height: 20px;
  }
}
.growth-results .top-img {
  width: 80.853px;
  height: 80.853px;
  position: absolute;
  right: -20px;
  top: -20px;
  opacity: 0.5;
}
.growth-results .conversion-block {
  display: flex;
  justify-content: space-between;
  padding: 22.164px;
  border-radius: 22.164px;
  background: var(--Bg-Lt, #F7FAFC);
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .growth-results .conversion-block {
    padding: 20px;
    border-radius: 20px;
  }
}
.growth-results .conversion-block .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11.082px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .growth-results .conversion-block .item {
    gap: 10px;
  }
}
.growth-results .conversion-block .item div {
  text-align: center;
  display: block;
  width: 100%;
}
.growth-results .conversion-block .item .status {
  color: var(--Grey-Md, #6D6981);
  text-align: center;
  font-size: 19.947px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.164px;
}
@media screen and (max-width: 480px) {
  .growth-results .conversion-block .item .status {
    font-size: 18px;
    line-height: 20px;
  }
}
.growth-results .conversion-block .item .price {
  color: var(--Grey-Md, #6D6981);
  text-align: center;
  font-size: 17.731px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.623px;
  letter-spacing: -0.089px;
}
@media screen and (max-width: 480px) {
  .growth-results .conversion-block .item .price {
    font-size: 16px;
    line-height: 15px;
    letter-spacing: -0.08px;
  }
}
.growth-results .conversion-block .item .description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 17.731px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.164px;
  letter-spacing: -0.089px;
}
@media screen and (max-width: 480px) {
  .growth-results .conversion-block .item .description {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.08px;
  }
}
.growth-results .conversion-block .blue {
  color: var(--Brand-Accent, #008CFF) !important;
}
.growth-results .growth {
  padding: 0 33.245px;
}
@media screen and (max-width: 480px) {
  .growth-results .growth {
    padding: 0 30px;
  }
}
.growth-results .growth_title {
  color: var(--Grey-Md, #6D6981);
  font-size: 19.947px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.164px;
  margin-bottom: 11px;
}
@media screen and (max-width: 480px) {
  .growth-results .growth_title {
    font-size: 18px;
    line-height: 20px;
  }
}
.growth-results .growth-items {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media screen and (max-width: 480px) {
  .growth-results .growth-items {
    gap: 10px;
  }
}
.growth-results .growth-items .growth-item {
  display: flex;
  align-items: start;
  gap: 7px;
}
.growth-results .growth-items .price {
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 15.515px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.623px;
  /* 107.143% */
  letter-spacing: 0.155px;
  display: block;
}
@media screen and (max-width: 480px) {
  .growth-results .growth-items .price {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.14px;
  }
}
.growth-results .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.growth-results .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: var(--Brand-Accent-Lt, #CCE8FF);
  opacity: 1;
  border-radius: 1000px;
  transition: all 0.3s ease;
}
.growth-results .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 1000px;
  background: var(--Brand-Accent, #008CFF);
}

.chaos-to-system {
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .chaos-to-system {
    margin-bottom: 60px;
  }
  .chaos-to-system .container {
    padding: 0;
  }
}
.chaos-to-system .block {
  display: flex;
  padding: 70px 50px 110px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: var(--White, #FFF);
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
}
@media screen and (max-width: 480px) {
  .chaos-to-system .block {
    padding: 60px 20px;
  }
}
.chaos-to-system .block_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .chaos-to-system .block_title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
  .chaos-to-system .block_title br {
    display: none;
  }
}
.chaos-to-system .block_description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}
@media screen and (max-width: 480px) {
  .chaos-to-system .block_description {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.08px;
  }
  .chaos-to-system .block_description br {
    display: none;
  }
}
.chaos-to-system .chaos-timeline {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.chaos-to-system .chaos-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--Brand-Accent, #008CFF);
}
.chaos-to-system .chaos-timeline_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.chaos-to-system .chaos-timeline_item:nth-child(odd) {
  flex-direction: row;
}
.chaos-to-system .chaos-timeline_item:nth-child(even) {
  flex-direction: row-reverse;
}
.chaos-to-system .chaos-timeline_content {
  width: calc(50% - 50px);
  padding: 35px 32px 34px 33px;
  border-radius: 16px;
  border: 1px solid var(--border, #E2E8F0);
  background: var(--Background-main, #FFF);
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.11);
}
.chaos-to-system .chaos-timeline_empty {
  width: calc(50% - 50px);
}
.chaos-to-system .chaos-timeline_divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  z-index: 2;
  border: 2px solid var(--primary-blue, #2F6FED);
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue, #2F6FED);
  font-family: "Inter", sans-serif;
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.49px;
}
.chaos-to-system .chaos-timeline_title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary, #64748B);
  /* Text */
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 23px;
}
.chaos-to-system .chaos-timeline_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chaos-to-system .chaos-timeline_status {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 45%;
}
.chaos-to-system .chaos-timeline_status .label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.chaos-to-system .chaos-timeline_status.now .label {
  color: var(--Alert, #D50035);
}
.chaos-to-system .chaos-timeline_status.after .label {
  color: #34C759;
}
.chaos-to-system .chaos-timeline_status .text {
  color: var(--Gray-Lt, #8A96AF);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}
.chaos-to-system .chaos-timeline_arrow {
  transform: translate(-11px);
}
@media screen and (max-width: 768px) {
  .chaos-to-system .chaos-timeline {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .chaos-to-system .chaos-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .chaos-to-system .chaos-timeline_item {
    margin-bottom: -15px;
  }
  .chaos-to-system .chaos-timeline_item:nth-child(odd) {
    flex-direction: row !important;
  }
  .chaos-to-system .chaos-timeline_item:nth-child(even) {
    flex-direction: row-reverse !important;
  }
  .chaos-to-system .chaos-timeline_content {
    width: calc(50% - 29px);
    margin: 0;
    padding: 14px 25px 17px 25px;
    border-radius: 16px;
  }
  .chaos-to-system .chaos-timeline_divider {
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 16px;
    border-width: 1.5px;
  }
  .chaos-to-system .chaos-timeline_empty {
    display: block;
    width: calc(50% - 15px);
  }
  .chaos-to-system .chaos-timeline_title {
    flex-direction: column;
    font-size: 12px;
    align-items: start;
    margin-bottom: 6px;
  }
  .chaos-to-system .chaos-timeline_title svg {
    width: 18px;
    height: 18px;
  }
  .chaos-to-system .chaos-timeline_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .chaos-to-system .chaos-timeline_status {
    width: 100%;
    gap: 3px;
  }
  .chaos-to-system .chaos-timeline_status .label {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px;
    gap: 2px;
  }
  .chaos-to-system .chaos-timeline_status .label svg {
    width: 10px;
    height: 10px;
  }
  .chaos-to-system .chaos-timeline_status .text {
    font-size: 12px;
    letter-spacing: -0.6px;
  }
  .chaos-to-system .chaos-timeline_arrow {
    transform: rotate(90deg);
    margin: 4px 0 4px 10px;
  }
  .chaos-to-system .chaos-timeline_arrow svg {
    width: 15px;
    height: auto;
  }
}
.chaos-to-system .revenue-management .management_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  /* Button Big */
  font-family: "Euclid Circular B";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .chaos-to-system .revenue-management .management_title {
    margin-bottom: 40px;
  }
}
.chaos-to-system .revenue-management .management_title {
  /* 111.111% */
}
.chaos-to-system .revenue-management .management_title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.chaos-to-system .revenue-management .management-block {
  margin: 0 auto;
  position: relative;
}
.chaos-to-system .revenue-management .management-block .position-bg-icon {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.chaos-to-system .revenue-management .management-block .item {
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  /* Footnote+Caption */
  font-family: "Euclid Circular B";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
  border-radius: 20px;
  border: 2px solid var(--White, #FFF);
  background: var(--Glass-White-Bg, rgba(255, 255, 255, 0.5));
  box-shadow: 0 10px 15px 0 rgba(0, 140, 255, 0.1), 0 34px 15px 0 rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(1.5px);
}
.chaos-to-system .revenue-management .management-block .item span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.chaos-to-system .revenue-management .items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.pay-from-growth {
  margin-bottom: 110px;
}
@media screen and (max-width: 480px) {
  .pay-from-growth {
    margin-bottom: 80px;
  }
}
.pay-from-growth .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .pay-from-growth .main-title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
}
.pay-from-growth .main-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.pay-from-growth .main-description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  /* TB+DT Subheading */
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 100% */
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .pay-from-growth .main-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.08px;
    margin-bottom: 40px;
  }
}
.pay-from-growth .lists-block {
  max-width: 580px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .pay-from-growth .lists-block {
    margin-bottom: 20px;
  }
}
.pay-from-growth .lists-block ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 25px;
}
.pay-from-growth .lists-block li {
  list-style: disc;
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
@media screen and (max-width: 768px) {
  .pay-from-growth .block {
    flex-wrap: wrap;
  }
}
.pay-from-growth .list-description {
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
  margin-bottom: 10px;
}
.pay-from-growth .block {
  position: relative;
}
.pay-from-growth .block .item {
  display: flex;
  align-items: start;
  gap: 15px;
  border-radius: 20px;
  background: var(--Bg-Lt, #F7FAFC);
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .pay-from-growth .block .item {
    padding: 20px;
    align-items: center;
  }
}
.pay-from-growth .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-from-growth .content .text {
  color: var(--Grey-Dk-H2, #5D5979);
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
}
.pay-from-growth .mobile-icon {
  position: absolute;
  display: none;
}
@media screen and (max-width: 480px) {
  .pay-from-growth .mobile-icon {
    display: block;
    bottom: -77px;
    right: 39px;
  }
}

.how-it-works {
  margin-bottom: 110px;
}
@media screen and (max-width: 480px) {
  .how-it-works {
    margin-bottom: 60px;
  }
}
.how-it-works .mobile-icons {
  display: none;
}
@media screen and (max-width: 480px) {
  .how-it-works {
    margin-bottom: 60px;
  }
  .how-it-works .mobile-icons {
    display: block;
  }
  .how-it-works .mobile-icons .icon1 {
    position: absolute;
    top: 61px;
    left: 53px;
  }
  .how-it-works .mobile-icons .icon2 {
    position: absolute;
    top: 141px;
    right: 40px;
  }
  .how-it-works .mobile-icons .icon3 {
    position: absolute;
    top: 300px;
    left: 53px;
  }
  .how-it-works .mobile-icons .icon4 {
    position: absolute;
    top: 391px;
    right: 40px;
  }
  .how-it-works .mobile-icons .icon5 {
    position: absolute;
    top: 580px;
    left: 53px;
  }
  .how-it-works .mobile-icons .icon6 {
    position: absolute;
    top: 651px;
    right: 40px;
  }
  .how-it-works .container {
    padding: 0;
  }
}
.how-it-works .main-block {
  padding: 70px 50px 110px 50px;
  border-radius: 30px;
  background: var(--White, #FFF);
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  position: relative;
}
@media screen and (max-width: 480px) {
  .how-it-works .main-block {
    padding: 60px 20px;
  }
}
.how-it-works .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .how-it-works .main-title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
}
.how-it-works .main-description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  /* TB+DT Subheading */
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .how-it-works .main-description {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.08px;
    margin-bottom: 40px;
  }
}
.how-it-works .main-description span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.how-it-works .items-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .how-it-works .items-block {
    display: block;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.how-it-works .items-block .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .how-it-works .items-block .items {
    gap: 15px;
  }
  .how-it-works .items-block .items:first-of-type {
    margin-bottom: 20px;
  }
}
.how-it-works .items-block .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  background: var(--Bg-Lt, #F7FAFC);
}
@media screen and (max-width: 768px) {
  .how-it-works .items-block .item {
    max-width: 272px;
    width: 100%;
  }
  .how-it-works .items-block .item:nth-child(even) {
    margin-left: auto;
  }
}
.how-it-works .items-block .item_content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.how-it-works .items-block .number {
  color: var(--Brand-Accent, #008CFF);
  text-align: center;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
}
.how-it-works .items-block .text {
  max-width: 413px;
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.how-it-works .items-block .text span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .how-it-works .icon {
    display: none;
  }
}
.how-it-works .word-block {
  border-radius: 20px;
  background: var(--main-bg-98, #F3F7FA);
  padding: 30px 20px 35px 20px;
}
@media screen and (max-width: 480px) {
  .how-it-works .word-block {
    padding: 30px 20px 20px 20px;
  }
}
.how-it-works .word-block .word-block_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}
.how-it-works .word-block .word_items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}
.how-it-works .word-block .word_item {
  padding: 15px;
  border-radius: 20px;
  background: var(--White, #FFF);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.how-it-works .word-block .word_item svg {
  min-width: 12px;
  min-height: 9px;
  width: 12px;
  height: 9px;
  max-width: 12px;
  max-height: 9px;
}
.how-it-works .word-block .warning-block {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--Gray-Lt, #8A96AF);
  /* Body */
  font-family: "Euclid Circular B";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
}
.how-it-works .word-block .warning-block svg {
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.growth-potential {
  margin-bottom: 170px;
}
@media screen and (max-width: 480px) {
  .growth-potential {
    margin-bottom: 120px;
  }
}
.growth-potential .main-block {
  padding: 0 20px 0px 20px;
}
@media screen and (max-width: 480px) {
  .growth-potential .main-block {
    padding: 0;
  }
}
.growth-potential .main-block .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .growth-potential .main-block .main-title {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 120% */
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
  .growth-potential .main-block .main-title br {
    display: none;
  }
}
.growth-potential .main-block .main-title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.growth-potential .main-block .main-description {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  /* TB+DT Subheading */
  font-family: "Euclid Circular B";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 100% */
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .growth-potential .main-block .main-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    letter-spacing: -0.08px;
    margin-bottom: 40px;
  }
  .growth-potential .main-block .main-description br {
    display: none;
  }
}
.growth-potential .main-block .main-description span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.growth-potential .warning-block {
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .growth-potential .warning-block {
    margin-bottom: 40px;
  }
}
.growth-potential .warning-block .block {
  width: calc(50% - 8px);
  padding: 20px;
  border-radius: 25px;
  border: 2px solid var(--White, #FFF);
  background: var(--Bg-Lt, #F7FAFC);
  box-shadow: 0 10px 15px 0 rgba(0, 140, 255, 0.1), 0 34px 15px 0 rgba(255, 255, 255, 0.25) inset;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .growth-potential .warning-block .block {
    padding: 20px;
  }
}
.growth-potential .warning-block .icon {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--Brand-Accent, #008CFF);
  /* Glass Button Fx */
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  margin: 0 auto;
}
.growth-potential .warning-block .text {
  color: var(--Gray-Lt, #8A96AF);
  /* Footnote+Caption */
  font-family: "Euclid Circular B";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
  text-align: center;
}
.growth-potential .warning-block .text span {
  color: var(--Alert, #D50035);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.growth-potential .growth-potential_btn {
  width: 100%;
  border-radius: 25px;
  background: var(--Brand-Accent, #008CFF);
  /* Glass Button Fx */
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  padding: 21px 0;
  border: none;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 15px;
}
.growth-potential .growth-potential_btn span {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
  opacity: 0.7;
  display: block;
}
.growth-potential .growth-potential_btn:hover {
  border-radius: 25px;
  background: #007ADE;
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset;
}
.growth-potential .btn_text {
  display: block;
  text-align: center;
  color: var(--Grey-Dk-H2, #5D5979);
  /* Footnote+Caption */
  font-family: "Euclid Circular B";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
  text-align: center;
}
.growth-potential .btn_text span {
  color: var(--Brand-Accent, #008CFF);
  text-align: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.growth-potential .messenger-block {
  margin-top: 60px;
  text-align: center;
}
.growth-potential .social-icons_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .growth-potential .social-icons_title {
    margin-bottom: 20px;
  }
  .growth-potential .social-icons_title br {
    display: none;
  }
}
.growth-potential .social-icons {
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .growth-potential .social-icons {
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.growth-potential .social-icons .icon-item {
  display: flex;
  padding: 21.5px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  border-radius: 25px;
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset;
}
@media screen and (max-width: 768px) {
  .growth-potential .social-icons .icon-item {
    width: 100%;
  }
}
.growth-potential .social-icons .icon-item.tg {
  background: var(--Telegram, #08C);
}
.growth-potential .social-icons .icon-item.wtsp {
  background: var(--WhatsApp, #25D366);
}
.growth-potential .social-icons .icon-item.max {
  background: var(--Max, #4335C1);
}
.growth-potential .social-icons .icon-img {
  width: 30px;
  height: 30px;
}
.growth-potential .social-icons .icon-img img {
  width: 100%;
  height: 100%;
}
.growth-potential .descriptions {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.growth-potential .descriptions .description {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.growth-potential .descriptions .mini-description {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
  opacity: 0.7;
}

.reputation-pricing {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing {
    margin-bottom: 60px;
  }
  .reputation-pricing .container {
    padding: 0;
  }
}
.reputation-pricing .reputation_block {
  border-radius: 30px;
  background: var(--White, #FFF);
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
  padding: 70px 30px 110px 30px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing .reputation_block {
    padding: 60px 20px 80px 20px;
  }
}
.reputation-pricing .reputation_block .reputation_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing .reputation_block .reputation_title br {
    display: none;
  }
}
.reputation-pricing .reputation_block .numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.reputation-pricing .reputation_block .numbers .number {
  display: flex;
  align-items: center;
  gap: 3px;
}
.reputation-pricing .reputation_block .numbers .number .item {
  padding: 20px 18px;
  border-radius: 15px;
  background: var(--Brand-Accent, #008CFF);
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  color: var(--White, #FFF);
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing .reputation_block .numbers .number .item {
    padding: 20px 18px;
  }
}
.reputation-pricing .reputation_block .description-block {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing .reputation_block .description-block {
    margin-bottom: 40px;
  }
}
.reputation-pricing .reputation_block .description-block .price {
  display: flex;
  padding: 10px 15px;
  border-radius: 100px;
  border: 1px solid var(--Grey-Stroke, #DDE1EC);
  background: var(--White, #FFF);
  color: var(--Gray-Lt, #8A96AF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
}
.reputation-pricing .reputation_block .description-block .text {
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
.reputation-pricing .reputation_block .status {
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 111.111% */
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing .reputation_block .status {
    margin-bottom: 20px;
  }
}
.reputation-pricing .reputation_block .status_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .reputation-pricing .reputation_block .status_items {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .reputation-pricing .reputation_block .status_items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reputation-pricing .reputation_block .status_items .item {
  padding: 15px 20px;
  border-radius: 20px;
  background: var(--Bg-Lt, #F7FAFC);
  display: flex;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}
.reputation-pricing .reputation_block .status_items .item img {
  width: 30px;
  height: 30px;
}
.reputation-pricing .reputation_block .status_items .status_items__description {
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.reputation-pricing .reputation_block .top_description {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 120% */
  letter-spacing: -0.5px;
}
.reputation-pricing .reputation_block .top_description span {
  display: block;
  color: var(--Grey-Ltst, #BBC1D7);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}

.why-choose-us {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .why-choose-us {
    margin-bottom: 100px;
  }
}
.why-choose-us .main-title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .why-choose-us .main-title {
    margin-bottom: 40px;
  }
}
.why-choose-us .main-title span {
  display: block;
  color: var(--Brand-Accent, #008CFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .why-choose-us .why_choose_us_block {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 360px) {
  .why-choose-us .why_choose_us_block {
    grid-template-columns: repeat(1, 1fr);
  }
}
.why-choose-us .why_choose_us_block .item {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
  border: 2px solid var(--White, #FFF);
  background: var(--Bg-Lt, #F7FAFC);
  box-shadow: 0 10px 15px 0 rgba(0, 140, 255, 0.1), 0 34px 15px 0 rgba(255, 255, 255, 0.25) inset;
}
@media screen and (max-width: 768px) {
  .why-choose-us .why_choose_us_block .item {
    padding: 20px;
    border-radius: 25px;
    gap: 10px;
  }
}
.why-choose-us .why_choose_us_block .icon {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--Brand-Accent, #008CFF);
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
}
.why-choose-us .why_choose_us_block .item_description {
  max-width: 290px;
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
@media screen and (max-width: 768px) {
  .why-choose-us .why_choose_us_block .item_description {
    font-size: 14px;
    line-height: 15px;
    /* 107.143% */
    letter-spacing: 0.14px;
  }
}

.cta-section {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .cta-section {
    margin-bottom: 80px;
  }
  .cta-section .container {
    padding: 0;
  }
}
.cta-section .cta-block {
  display: flex;
  padding: 70px 30px 110px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  border-radius: 30px;
  background: var(--White, #FFF);
  /* Elevation Low */
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
}
@media screen and (max-width: 768px) {
  .cta-section .cta-block {
    padding: 60px 20px;
    gap: 40px;
  }
}
.cta-section .cta_blocks {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_blocks {
    border-radius: 20px;
  }
}
.cta-section .cta_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  /* H2 */
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 120% */
  letter-spacing: -0.5px;
}
.cta-section .cta_title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.cta-section .cta_items {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 360px) {
  .cta-section .cta_items {
    flex-direction: column;
  }
}
.cta-section .cta_items:first-of-type .item:first-child {
  border-radius: 30px 0 0 0;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items:first-of-type .item:first-child {
    border-radius: 20px 0 0 0;
  }
}
.cta-section .cta_items:first-of-type .item:last-child {
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items:first-of-type .item:last-child {
    border-radius: 0 20px 0 0;
  }
}
.cta-section .cta_items:last-of-type .item:first-child {
  border-radius: 0 0 0 30px;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items:last-of-type .item:first-child {
    border-radius: 0 0 0 20px;
  }
}
.cta-section .cta_items:last-of-type .item:last-child {
  border-radius: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items:last-of-type .item:last-child {
    border-radius: 0 0 20px 0;
  }
}
.cta-section .cta_items .negative {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items .negative {
    gap: 8px;
  }
}
.cta-section .cta_items .item {
  width: calc(50% - 5px);
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items .item {
    width: calc(50% - 2.5px);
  }
}
@media screen and (max-width: 360px) {
  .cta-section .cta_items .item {
    width: 100%;
  }
}
.cta-section .cta_items .item {
  padding: 27.5px 20px;
  gap: 8px;
  border: 10px solid var(--White, #FFF);
  background: var(--Bg-Lt, #F7FAFC);
  display: flex;
  align-items: start;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items .item {
    border: 4px solid var(--White, #FFF);
    padding: 15px 15px 15px 10px;
  }
}
.cta-section .cta_items .title {
  width: 100%;
  color: var(--Grey-Ltst, #BBC1D7);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: -0.08px;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items .title {
    font-size: 14px;
    letter-spacing: 0.14px;
  }
}
.cta-section .cta_items .description {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
@media screen and (max-width: 768px) {
  .cta-section .cta_items .description {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.14px;
    gap: 8px;
  }
}
.cta-section .cta_items .description svg {
  min-width: 20px;
  min-height: 20px;
}

.free-reputation-audit {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .container {
    padding: 0;
  }
}
.free-reputation-audit .audit_block {
  padding: 70px 30px 110px 30px;
  border-radius: 30px;
  background: var(--White, #FFF);
  box-shadow: 0 0 40px 0 rgba(64, 60, 97, 0.1);
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .audit_block {
    padding: 60px 20px;
  }
}
.free-reputation-audit .audit_block .audit_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .audit_block .audit_title {
    margin-bottom: 40px;
  }
}
.free-reputation-audit .audit_block .audit_title span {
  color: var(--Brand-Accent, #008CFF);
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.free-reputation-audit .audit_block .question {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .audit_block .question {
    margin-bottom: 20px;
  }
}
.free-reputation-audit .audit_block .benefits-block {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .audit_block .benefits-block {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.free-reputation-audit .benefit-item {
  display: flex;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid var(--Bg-Lt, #F7FAFC);
  background: var(--Bg-Lt, #F7FAFC);
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .benefit-item {
    width: 100%;
    padding: 15px 20px;
    gap: 15px;
    justify-content: space-between;
  }
}
.free-reputation-audit .benefit-item .text {
  color: var(--Grey-Dk-H2, #5D5979);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}
.free-reputation-audit .benefit-item .icon {
  width: 25px;
  height: 25px;
}
.free-reputation-audit .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 25px;
  background: var(--Brand-Accent, #008CFF);
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  padding: 25px 0;
  color: var(--White, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 60px;
  outline: none;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .btn {
    margin-bottom: 40px;
  }
}
.free-reputation-audit .btn:active {
  background: var(--Brand-Accent, #008CFF);
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  color: var(--White, #FFF);
}
.free-reputation-audit .btn:hover {
  border-radius: 25px;
  background: #007ADE;
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset;
}
.free-reputation-audit .btn img {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}
.free-reputation-audit .social-icons_title {
  color: var(--Grey-Dk-H2, #5D5979);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .social-icons_title {
    margin-bottom: 20px;
  }
  .free-reputation-audit .social-icons_title br {
    display: none;
  }
}
.free-reputation-audit .social-icons {
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .social-icons {
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.free-reputation-audit .social-icons .icon-item {
  display: flex;
  padding: 21.5px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  border-radius: 25px;
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .social-icons .icon-item {
    width: 100%;
  }
}
.free-reputation-audit .social-icons .icon-item.tg {
  background: var(--Telegram, #08C);
}
.free-reputation-audit .social-icons .icon-item.wtsp {
  background: var(--WhatsApp, #25D366);
}
.free-reputation-audit .social-icons .icon-item.max {
  background: var(--Max, #4335C1);
}
.free-reputation-audit .social-icons .icon-img {
  width: 30px;
  height: 30px;
}
.free-reputation-audit .social-icons .icon-img img {
  width: 100%;
  height: 100%;
}
.free-reputation-audit .descriptions {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.free-reputation-audit .descriptions .description {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.free-reputation-audit .descriptions .mini-description {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 107.143% */
  letter-spacing: 0.14px;
  opacity: 0.7;
}
.free-reputation-audit .top-desciprion {
  color: var(--Gray-Lt, #8A96AF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
@media screen and (max-width: 768px) {
  .free-reputation-audit .top-desciprion {
    margin-bottom: 0;
  }
  .free-reputation-audit .top-desciprion br {
    display: none;
  }
}

footer {
  margin-bottom: 146px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 30px;
  }
}
footer .footer_blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  footer .footer_blocks {
    padding: 0;
    gap: 20px;
  }
}
footer .footer_blocks .block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_blocks .block {
    gap: 20px;
  }
}
footer .footer_blocks .block a,
footer .footer_blocks .block p {
  color: var(--Gray-Lt, #8A96AF);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
  flex: 1 0 0;
}
footer .contact_item {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  footer .contact_item {
    align-items: start;
  }
}
footer .contact_item svg {
  width: 20px;
  height: 20px;
}
footer .top-description {
  color: var(--Grey-Ltst, #BBC1D7);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.14px;
}
@media screen and (max-width: 768px) {
  footer .top-description br {
    display: none;
  }
}
footer .right-block {
  text-align: end;
}

/* New Premium Result Modal Styles */
.new-result-container {
  background-color: #f3f7fa;
  min-height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.new-result-container .new-result-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(64, 60, 97, 0.05);
  text-align: center;
}
.new-result-container .new-result-card .new-result-title {
  color: #403c61;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}
.new-result-container .new-result-card .new-result-body {
  color: #5d5979;
  font-size: 16px;
  line-height: 1.6;
}
.new-result-container .new-result-card .new-result-body .result-row {
  margin-bottom: 20px;
}
.new-result-container .new-result-card .new-result-body .result-row:last-child {
  margin-bottom: 0;
}
.new-result-container .new-result-card .new-result-body .result-row strong {
  color: #403c61;
  font-weight: 600;
}
.new-result-container .new-result-card .new-result-body .result-row.highlight {
  margin-top: 10px;
}
.new-result-container .new-result-card .new-result-body .result-row.special-msg {
  color: #008cff;
  font-weight: 600;
  margin-top: 20px;
}
.new-result-container .new-result-footer {
  margin-top: auto;
  text-align: center;
  padding: 20px 20px 60px;
}
.new-result-container .new-result-footer .roadmap-prompt {
  margin: 0 auto;
  max-width: 214px;
  color: var(--Grey-Dk-H1-Hero-Body, #403C61);
  text-align: center;
  /* Body */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.08px;
}
.new-result-container .new-result-footer .roadmap-btn {
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 25px;
  background: var(--Brand-Accent, #008CFF);
  /* Glass Button Fx */
  box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.2) inset, 0 4px 20px 0 rgba(255, 255, 255, 0.4) inset, 0 3px 0 0 rgba(255, 255, 255, 0.53) inset, 0 4px 10px 0 rgba(0, 140, 255, 0.3);
  padding: 25px 38px;
  margin-top: 20px;
}
.new-result-container .new-result-footer .roadmap-btn img {
  width: 30px;
  height: 30px;
}
.new-result-container .new-result-footer .roadmap-btn span {
  color: var(--White, #FFF);
  /* Button Big */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 111.111% */
}

/* Mobile adjustments for the new modal */
@media (max-width: 768px) {
  .new-result-container {
    padding: 15px;
  }
  .new-result-container .new-result-card {
    border-radius: 30px;
    padding: 30px 20px;
  }
  .new-result-container .new-result-card .new-result-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .new-result-container .new-result-footer .roadmap-prompt {
    font-size: 16px;
  }
  .new-result-container .new-result-footer .roadmap-btn {
    padding: 15px;
  }
  .new-result-container .new-result-footer .roadmap-btn span {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */

/*calculator*/
.hidden{
    display:none;
}

.error{
    border:2px solid #ff4d4f !important;
}

.error-msg{
    display:none;
    color:#ff4d4f;
    font-size:13px;
    margin-top:6px;
}

.error-msg.active{
    display:block;
}

.calc-result{
    margin-top:30px;
    border-top:1px solid #e8e8e8;
    padding-top:24px;
}