/*!
  Theme Name: Glasscubes V2
  Author: Alex Pierierodov
  Version: 1.0.0
  Tested up to: 5.7
  Requires PHP: 7.3
  License: GNU General Public License v2 or later
  License URI: LICENSE
  Text Domain: glasscubes-v2
*/


@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Nunito+Sans:opsz,wdth@6..12,86.3&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Nunito+Sans:opsz,wdth@6..12,86.3&family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --Color-Accent-Buege: #fce6c6;
  --Color-Accent-Light-Blue: #e3e3fc;
  --Color-Accent-Lime: #d1f55f;
  --Color-Primary-Blue: #2a2a49;
  --Color-Primary-Gray: #d9d9e0;
  --Color-Primary-Light-Gray: #f3f4f6;
  --Color-Primary-Dark-Blue: #161625;
  --Color-Primary-Purple-Gray: #89899e;
  --Color-Stroke-Dark: rgba(137, 137, 158, 0.3);
  --Color-Text-70: rgba(0, 0, 0, 0.7);
  --Color-Text-Black-100: #000;
  --Color-Text-Black-60: rgba(0, 0, 0, 0.6);
  --Color-Text-Black-80: rgba(0, 0, 0, 0.8);
  --Color-Text-Grey-60: rgba(64, 64, 99, 0.6);
  --Color-Text-Grey-80: rgba(64, 64, 99, 0.8);
  --Color-Text-White-100: #fff;
  --Color-Text-White-60: rgba(255, 255, 255, 0.6);
  --Color-Text-White-80: rgba(255, 255, 255, 0.8);
  --Color-Additional-Link: #3E58EC;
  --section-padding: 96px;
}

@media (max-width: 991.98px) {
  :root {
    --section-padding: 72px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 64px;
  }
}

@media (max-width: 487.98px) {
  :root {
    --section-padding: 48px;
  }
}

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

a {
  transition: color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  background: var(--Color-Primary-Light-Gray);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  color: var(--Color-Text-Black-80);
  cursor: url("./assets/icons/Cursor.svg"), auto;
}

html.pricing-page,
body.pricing-page {
  background: #FFF;
}

button,
input {
  background: transparent;
  cursor: pointer;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  transition: all 0.3s ease-in;
  -webkit-appearance: none;
  -moz-appearance: none;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

/*****************/
[class*=max-container],
[class*=_container] {
  margin: 0px auto;
  height: 100%;
  padding: 0px 16px;
}

[class*=max-container] {
  max-width: 1360px;
}

[class*=_container] {
  max-width: 1248px;
}

.wrapper {
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  flex: 1 1 100%;
}

.fixed-button {
  position: absolute !important;
  pointer-events: none;
  will-change: left, top;
  z-index: 5;
  transition: left 0.08s linear, top 0.08s linear !important;
}

.auth-button {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 46px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  color: var(--Color-Text-White-100);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  line-height: 24px;
  /* 150% */
  position: relative;
}

.auth-button.disabled,
.auth-button:disabled {
  background: var(--Color-Primary-Gray, #d9d9e0) !important;
  color: var(--Color-Primary-Purple-Gray, #89899e) !important;
  cursor: not-allowed;
}

.auth-button.disabled:hover::after,
.auth-button:disabled:hover::after {
  opacity: 0;
  background-color: transparent;
}

.form__text {
  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.error {
  color: var(--Color-Additional-Error, #FA504D);
}

.success {
  color: var(--Color-Additional-Success, #4CAF50);
}

.info {
  color: var(--Color-Primary-Gray, #89899E);
}

.hidden {
  display: none;
}

.post-time {
  color: var(--Color-Primary-Purple-Gray, #89899E);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

@media (max-width: 767.98px) {
  .post-time {
    font-size: 14px;
  }
}

.table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  border-radius: 24px;
}

.table thead>tr>th:first-child {
  width: 389px;
}

@media (max-width: 767.98px) {
  .table thead>tr>th:first-child {
    width: 250px;
    min-width: 250px;
  }
}

.table thead>tr>th:not(:first-child) {
  width: 275px;
  min-width: 275px;
}

@media (max-width: 767.98px) {
  .table thead>tr>th:not(:first-child) {
    width: 200px;
    min-width: 200px;
  }
}

.table tbody>tr>td:not(:first-child) {
  width: 275px;
  min-width: 275px;
}

@media (max-width: 767.98px) {
  .table tbody>tr>td:not(:first-child) {
    width: 200px;
    min-width: 200px;
  }
}

.table tbody>tr>td:first-child {
  width: 389px;
  min-width: 389px;
  max-width: 389px !important;
}

@media (max-width: 767.98px) {
  .table tbody>tr>td:first-child {
    width: 250px;
    min-width: 250px;
  }
}

.table-layout {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.table-layout::-webkit-scrollbar {
  height: 6px;
}

.table-layout::-webkit-scrollbar-thumb {
  background: var(--Color-Accent-Light, #d9d9d9);
  border-radius: 3px;
}

.table-layout::-webkit-scrollbar-track {
  background: transparent;
}

/***********TEXT*******************/
.large-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.6px;
}

@media (max-width: 767.98px) {
  .large-text {
    font-size: 18px;
  }
}

.large-text span {
  font-weight: 700;
}

.regular-text {
  color: var(--Color-Primary-Light-Gray);
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
  /* 155.556% */
  letter-spacing: -0.36px;
}
.regular-text p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .regular-text {
    font-size: 16px;
  }
}

.regular-text span {
  font-weight: 600;
  color: var(--Color-Text-White-100, #FFF);
}

.regular-text a {
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.small-text {
  color: var(--Color-Text-Grey-80);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 767.98px) {
  .small-text {
    font-size: 14px;
  }
}

.small-text span {
  font-weight: 600;
  color: var(--Color-Text-White-100, #FFF);
}

.small-text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.x-small-text {
  color: var(--Color-Text-Black-60, rgba(0, 0, 0, 0.6));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142%;
}

.x-small-text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.faq-content a {
  text-decoration: none;
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.post-content ul,
.post-content ol {
  margin: 8px 0;
  padding-left: 22px;
}

.post-content li {
  list-style: disc !important;
  margin: 0;
  padding: 0;
}

.post-content hr {
  background: var(--Color-Primary-Purple-Gray);
  height: 2px;
  width: 100%;
  margin: 30px 0px;
}

.post-content iframe {
  max-width: 100%;
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.post-content h2 {
  margin-top: 64px;
}

.post-content p,
.post-content li {
  margin: 28px 0px;
}

.post-content,
.post-content td {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.wp-block-list li {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.faq-content p,
.post-content p {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.faq-content h2,
.post-content h2 {
  color: #000;
}

.faq-content a,
.post-content a {
  color: var(--Color-Additional-Link, #3E58EC);
}

.post-content a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/*********TITLE*******************/
.h1 {
  /* Title/H1 */
  color: var(--Color-Text-Black-100, #000);
  font-size: 64px;
  font-weight: 500;
  line-height: 115.625%;
  letter-spacing: -3px;
}

.h1 span {
  position: relative;
  z-index: 10;
  color: var(--Color-Text-Black-100, #000);
  letter-spacing: -6px;
  display: inline-block;
}

.h1 span::after {
  content: "";
  height: 28px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  background: var(--Color-Accent-Lime-50, rgba(209, 245, 95, 0.5));
}

@media (max-width: 991.98px) {
  .h1 span::after {
    height: 20px;
  }
}

@media (max-width: 991.98px) {
  .h1 {
    font-size: 48px;
    letter-spacing: -1px !important;
  }

  .h1 span {
    letter-spacing: -1px !important;
  }
}

@media (max-width: 767.98px) {
  .h1 {
    font-size: 36px;
    letter-spacing: 0px !important;
  }
}

.faq-content h2,
.post-content h2,
.h2 {
  /* Title/H2 */
  font-size: 48px;
  font-weight: 500;
  line-height: 120.833%;
  /* 120.833% */
  letter-spacing: -3px;
}

@media (max-width: 991.98px) {

  .faq-content h2,
  .post-content h2,
  .h2 {
    font-size: 34px;
    letter-spacing: -1px !important;
  }
}

@media (max-width: 767.98px) {

  .faq-content h2,
  .post-content h2,
  .h2 {
    font-size: 28px;
    letter-spacing: 0px !important;
  }
}

.h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 131%;
  /* 131.25% */
  letter-spacing: -1px;
}

@media (max-width: 991.98px) {
  .h3 {
    font-size: 28px;
    letter-spacing: normal;
  }
}

@media (max-width: 767.98px) {
  .h3 {
    font-size: 20px;
  }
}

.h4 {
  /* Title/H4 */
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  /* 150% */
  letter-spacing: -0.72px;
}

@media (max-width: 991.98px) {
  .h4 {
    font-size: 22px;
    letter-spacing: normal;
  }
}

@media (max-width: 767.98px) {
  .h4 {
    font-size: 20px;
  }
}

.h5 {
  /* Title/H5 */
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.36px;
}

@media (max-width: 991.98px) {
  .h5 {
    font-size: 16px;
    letter-spacing: normal;
  }
}

@media (max-width: 767.98px) {
  .h5 {
    font-size: 14px;
  }
}

.h6 {
  color: var(--Color-Text-Black-100);
  /* Title/H6 */
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;
}

@media (max-width: 767.98px) {
  .h6 {
    font-size: 14px;
    letter-spacing: normal;
  }
}

/***********LABEL*****************/
.label {
  color: var(--Color-Text-Grey-100, #404063);
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background-color: transparent;
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  padding: 11px 16px 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 46px;
}

.label a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.label a::after {
  width: 24px;
  height: 24px;
  display: inline-block;
  content: url("./assets/icons/RightChevron.svg");
}

@media (max-width: 991.98px) {
  .label {
    padding: 9px 14px 10px 14px;
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .label {
    padding: 7px 12px 8px 12px;
    font-size: 14px;
  }
}

.label.min {
  padding: 8px 16px;
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  font-size: 14px;
  line-height: 20px;
}

/***********BADGE*************************/
.badge-icon {
  display: inline-flex;
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 16px;
}

.badge-icon.mini {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  padding: 8px;
}

.badge-icon.mini img {
  width: 16px;
  height: 16px;
}

.badge-icon.w-40 {
  width: 40px;
  max-width: 40px;
  height: 40px;
  padding: 8px;
}

.badge-icon.w-40 img {
  width: 24px;
  height: 24px;
}

.badge-icon.small {
  padding: 8px;
  width: 56px;
  height: 56px;
}

.badge-icon.small img {
  width: 40px;
  height: 40px;
}

@media (max-width: 767.98px) {
  .badge-icon.small {
    width: 48px;
    height: 48px;
    padding: 4px;
  }
}

.badge-icon.small-2 {
  padding: 16px;
  width: 56px;
  height: 56px;
}

.badge-icon.small-2 img {
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .badge-icon.small-2 {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
}

.badge-icon.middle {
  padding: 20px;
  width: 64px;
  height: 64px;
}

.badge-icon.middle img {
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .badge-icon.middle {
    padding: 8px;
    width: 56px;
    height: 56px;
  }
}

.badge-icon.large {
  width: 80px;
  height: 80px;
  padding: 16px;
}

.badge-icon.large img {
  width: 32px;
  height: 32px;
}

@media (max-width: 767.98px) {
  .badge-icon.large {
    padding: 16px;
    width: 64px;
    height: 64px;
  }
}

.badge-icon.accent {
  background: var(--Color-Accent-Lime, #d1f55f);
}

.badge-icon.primary-blue {
  background: var(--Color-Primary-Blue);
}

.badge-icon.primary-light-gray {
  background: var(--Color-Primary-Light-Gray, #f3f4f6);
}

.badge-icon.primary-dark-blue {
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.badge-icon.black-100 {
  background: var(--Color-Text-Black-100, #000);
}

.badge-text {
  border-radius: 16px;
  background: var(--Color-Text-70, rgba(0, 0, 0, 0.7));
  display: flex;
  width: 56px;
  height: 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--Color-Accent-Bright-lime, #d1f55f);
}

.badge-text span {
  color: var(--Color-Accent-Bright-lime, #d1f55f);
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 767.98px) {
  .badge-text {
    width: 48px;
    height: 48px;
    padding: 4px;
  }
}

.badge-text.primary-dark-blue {
  border-radius: 16px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

/**************Content Wrapper******************************/
.section-bottom {
  padding-bottom: var(--section-padding);
}

@media (max-width: 991.98px) {
  .section-bottom {
    padding-bottom: var(--section-padding);
  }
}

@media (max-width: 767.98px) {
  .section-bottom {
    padding-bottom: var(--section-padding);
  }
}

@media (max-width: 487.98px) {
  .section-bottom {
    padding-bottom: var(--section-padding);
  }
}

.section {
  padding: var(--section-padding) 0px;
}

@media (max-width: 991.98px) {
  .section {
    padding: var(--section-padding) 0px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: var(--section-padding) 0px;
  }
}

@media (max-width: 487.98px) {
  .section {
    padding: var(--section-padding) 0px;
  }
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (max-width: 991.98px) {
  .section-content {
    gap: 48px;
  }
}

@media (max-width: 767.98px) {
  .section-content {
    gap: 32px;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .section-header {
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .section-header {
    gap: 16px;
  }
}

.section-padding {
  padding: 80px 56px;
  border-radius: 24px;
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 40px 20px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 32px 16px;
  }
}

.flex-content-50 {
  display: flex;
  gap: 24px;
}

@media (min-width: 991.98px) {
  .flex-content-50 {
    align-items: center;
    justify-content: space-between;
  }

  .flex-content-50 div:nth-child(1),
  .flex-content-50 div:nth-child(2) {
    flex: 0 1 50%;
  }
}

@media (max-width: 991.98px) {
  .flex-content-50 {
    flex-direction: column;
  }
}

.bottom-cta-bg {
  position: relative;
}

.bottom-cta-bg::after {
  content: "";
  width: 100%;
  height: 121px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  position: absolute;
  bottom: 0;
}

.bottom-cta-bg [class*=__content] {
  position: relative;
  z-index: 2;
}

.check-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 8px;
}

.check-list__item::before {
  width: 24px;
  height: 24px;
  content: url("./assets/icons/RoundCheck.svg");
}

.cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.card {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (min-width: 991.98px) {
  .card {
    padding: 24px 32px 24px 24px;
  }
}

@media (max-width: 991.98px) {
  .card {
    padding: 16px 24px 16px 16px;
  }
}

.text-dark-100 .regular-text {
  color: var(--Color-Text-Black-100, #000) !important;
}

.right-card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 24px;
  flex-direction: column;
  flex-shrink: 0;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (min-width: 991.98px) {
  .right-card {
    padding: 56px 40px;
  }
}

@media (max-width: 991.98px) {
  .right-card {
    padding: 32px 24px;
  }
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}

.modal {
  position: fixed;
  padding: 0px 16px;
  z-index: 1000;
  visibility: hidden;
  height: 100dvh;
  width: 100dvw;
  display: flex;
  opacity: 0;
  align-items: center;
  top: -100%;
  inset: 0;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal._active {
  inset: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
}

.modal._active .modal__body {
  transform: translateY(0);
}

.modal__wrapper {
  position: relative;
  margin: auto;
}

.modal__body {
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  max-height: 90dvh;
  height: auto;
  overflow-y: auto;
  max-width: 1086px;
  padding: 40px;
  border-radius: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

@media (max-width: 991.98px) {
  .modal__body {
    padding: 32px 20px;
  }
}

.modal__close {
  position: absolute;
  right: -32px;
  border-radius: 24px;
  background: #FFF;
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 8px;
  top: -32px;
}

@media (max-width: 1200.98px) {
  .modal__close {
    right: 0;
    top: -36px;
  }
}

/***********BUTTONS*************************/
.button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  outline: none;
  transition: all 0.3s;
}

.button-icon::after {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  transition: opacity 0.3s;
  inset: -4px;
  opacity: 0;
  z-index: -1;
  border-radius: 48px;
  content: "";
}

.button-icon.large {
  width: 72px;
  height: 72px;
  border-radius: 100%;
}

.button-icon.large:hover {
  cursor: pointer;
}

.button-icon-max {
  border-radius: 48px;
  width: 64px;
  height: 64px;
  padding: 16px;
}

@media (max-width: 767.98px) {
  .button-icon-max {
    width: 56px;
    height: 56px;
    padding: 12px;
  }
}

.button-icon-max-2 {
  border-radius: 48px;
  width: 72px;
  height: 72px;
  padding: 24px;
}

@media (max-width: 767.98px) {
  .button-icon-max-2 {
    width: 64px;
    height: 64px;
    padding: 16px;
  }
}

.button-icon-max-3 {
  border-radius: 48px;
  width: 56px;
  height: 56px;
  padding: 16px;
}

.button {
  border-radius: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  z-index: 20;
  outline: none;
  /* 125% */
}

.button::after {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  border-radius: 48px;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  inset: -4px;
  opacity: 0;
  background-color: transparent;
  z-index: -1;
  content: "";
}

.button.base {
  padding: 8px 8px 8px 32px;
  gap: 16px;
  height: 64px;
  border-radius: 48px;
}

.button.base .button-icon {
  border-radius: 48px;
  padding: 8px;
  width: 48px;
  height: 48px;
}

.button.base::after {
  display: none;
  border-radius: 48px;
}

.button.large {
  height: 80px;
  padding: 12px 12px 12px 32px;
  gap: 16px;
}

.button.large .button-icon {
  border-radius: 48px;
  padding: 16px;
  width: 56px;
  height: 56px;
}

@media (max-width: 767.98px) {
  .button.large {
    height: 64px;
    padding: 10px 10px 10px 24px;
  }

  .button.large .button-icon {
    border-radius: 48px;
    padding: 16px;
    width: 48px;
    height: 48px;
  }
}

.button.middle {
  gap: 8px;
  padding: 12px 12px 12px 24px;
  border-radius: 112px;
}

.button.middle .button-icon {
  border-radius: 40px;
  width: 48px;
  height: 48px;
  padding: 8px;
}

.button.middle::after {
  border-radius: 40px;
}

@media (max-width: 767.98px) {
  .button.middle {
    height: 48px;
    padding: 10px 10px 10px 24px;
  }

  .button.middle .button-icon {
    border-radius: 48px;
    padding: 6px;
    width: 36px;
    height: 36px;
  }
}

.button.small-secondary {
  border-radius: 48px;
  height: 56px;
  gap: 8px;
  padding: 16px 16px 16px 32px;
}

.button.small-secondary::after {
  border-radius: 48px;
}

@media (max-width: 767.98px) {
  .button.small-secondary {
    height: 48px;
    padding: 10px 10px 10px 24px;
  }
}

.button.disabled,
.button:disabled {
  background: var(--Color-Primary-Gray, #d9d9e0) !important;
  color: var(--Color-Primary-Purple-Gray, #89899e) !important;
  cursor: not-allowed;
}

.button.disabled .button-icon,
.button:disabled .button-icon {
  border-radius: 48px;
  background: var(--Color-Primary-Purple-Gray, #89899e) !important;
}

.button.disabled:hover::after,
.button:disabled:hover::after {
  opacity: 0;
  background-color: transparent;
}

.button-accent-secondary {
  background-color: transparent;
  border: 1px solid var(--Color-Accent-Lime, #d1f55f);
  color: var(--Color-Text-White-100, #fff);
}

.button-accent-secondary:focus {
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.button-accent-secondary:hover {
  background-color: var(--Color-Accent-Lime, #d1f55f);
  color: var(--Color-Primary-Dark-Blue, #161625);
}

.button-accent-secondary:hover::after {
  border-radius: 48px;
  opacity: 1;
  border: 3px solid var(--Color-Accent-Lime, #d1f55f);
  background-color: var(--Color-Accent-Lime, #d1f55f);
}

.button-accent-secondary:hover img {
  filter: brightness(0) saturate(100%);
}

.button-accent {
  border: 3px solid var(--Color-Accent-Lime, #d1f55f);
  color: var(--Color-Primary-Dark-Blue, #161625);
  background: var(--Color-Accent-Lime, #d1f55f);
}

.button-accent:focus {
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.button-accent:hover::after {
  opacity: 1;
  background-color: var(--Color-Accent-Lime, #d1f55f);
}

.button-accent:hover .button-icon::after {
  opacity: 1;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.button-primary-dark {
  color: var(--Color-Text-White-100, #fff);
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.button-primary-dark:focus {
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.button-primary-dark:hover::after {
  opacity: 1;
  border-radius: 112px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.button-primary-dark:hover .button-icon::after {
  opacity: 1;
  background-color: var(--Color-Accent-Lime, #d1f55f);
}

.button-icon-dark {
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.button-icon-dark:focus {
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.button-icon-dark:hover::after {
  opacity: 1;
  border-radius: 112px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.button-icon-accent {
  background: var(--Color-Accent-Lime, #d1f55f);
}

.button-icon-accent:focus {
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.button-icon-accent:hover::after {
  opacity: 1;
  background-color: var(--Color-Accent-Lime, #d1f55f);
}

.button-green {
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 48px;
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
  /* Batton/Small */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
  transition: all 0.3s ease-in-out;
}

.button-green.primary {
  background: var(--Color-Accent-Lime, #D1F55F);
}

.button-green.primary:focus {
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.button-green.primary:active {
  background: var(--Color-Accent-Lime, #D1F55F);
}

.button-green.primary:hover {
  background: var(--Color-Accent-Lime, #D1F55F);
}

.button-green.primary:disabled {
  color: var(--Color-Primary-Purple-Gray, #89899E);
  background: var(--Color-Primary-Gray, #D9D9E0);
}

.button-green.secondary {
  border: 1px solid var(--Color-Primary-Purple-Gray, #89899E);
}

.button-green.secondary:focus {
  border: 3px solid var(--Color-Primary-Purple-Gray, #89899E);
}

.button-green.secondary:active {
  border: 1px solid var(--Color-Primary-Purple-Gray, #89899E);
  background: var(--Color-Accent-Lime, #D1F55F);
}

.button-green.secondary:hover {
  border: 1px solid var(--Color-Primary-Purple-Gray, #89899E);
  background: var(--Color-Accent-Lime, #D1F55F);
}

.button-green.secondary:disabled {
  color: var(--Color-Primary-Purple-Gray, #89899E);
  border: 1px solid var(--Color-Primary-Purple-Gray, #89899E);
}

/******ALL STYLES ******************************/
.your-privacy-modal {
  width: 440px;
  bottom: 24px;
  right: 24px;
}

.your-privacy-modal .cookie-modal__text {
  padding-top: 8px;
  padding-bottom: 16px;
}

.your-privacy-modal .cookie-modal__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.your-privacy-modal .cookie-modal__button {
  width: 100%;
}

.your-privacy-modal .cookie-modal__button button {
  width: 100%;
}

.cookie-settings-modal {
  width: 616px;
  bottom: 48px;
  right: 48px;
}

.cookie-settings-modal .cookie-modal__text {
  padding-top: 8px;
  padding-bottom: 8px;
}

.cookie-settings-modal .cookie-modal__buttons {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .cookie-settings-modal .cookie-modal__buttons {
    flex-direction: column;
    align-items: inherit;
  }
}

.cookie-settings-modal .cookie-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cookie-settings-modal .cookie-modal__list {
  padding: 16px 0px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 8px;
}

.cookie-settings-modal .cookie-modal__toggle {
  display: flex;
  padding: 4px 0;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: var(--Color-Text-Black-100, #000);
  /* Body/XBold Text */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

@media (min-width: 767.98px) {
  .cookie-settings-modal .button-green {
    padding: 12px 20px;
    width: 128px;
  }
}

.cookie-modal {
  position: fixed;
  display: flex;
  max-height: calc(100dvh - 96px);
  z-index: 2000;
  padding: 32px;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: #FFF;
  box-shadow: -4px -2px 40px 0 rgba(0, 0, 0, 0.12);
}

.cookie-modal__body {
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-modal__title {
  font-size: 18px;
  color: var(--Color-Text-Black-100, #000);
}

.cookie-modal__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

@media (max-width: 767.98px) {
  .cookie-modal {
    width: 100%;
    bottom: 0;
    right: 0;
    border-radius: 24px 24px 0 0;
    border: none;
    box-shadow: none;
  }
}

/**************Toggle*********************/
.toggle {
  position: relative;
  width: 40px;
  height: 24px;
}

.toggle input {
  display: none;
}

.toggle-label {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: var(--Color-Primary-Purple-Gray, #89899E);
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--Color-Primary-Light-Gray, #F3F4F6);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle input:checked+.toggle-label {
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.toggle input:checked+.toggle-label::before {
  transform: translateX(16px);
  background: var(--Color-Accent-Lime, #D1F55F);
}

/**************Toggle*********************/
/*********************************/
.header {
  padding: 16px 0px;
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  max-width: 1360px !important;
}

.header__logo {
  position: relative;
  z-index: 51;
}

.header__logo img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 19/3;
}

@media (min-width: 767.98px) {
  .header__right {
    align-items: center;
    display: flex;
    gap: 64px;
  }
}

@media (max-width: 767.98px) {
  .header__right {
    flex-direction: column;
    display: flex;
    width: 100%;
    z-index: 50;
    height: 100%;
    min-height: 100dvh;
    position: fixed;
    max-height: 100dvh;
    transition: all 0.3s ease-in;
    top: 0;
    left: -100%;
    background: var(--Color-Text-White-100);
    padding: 88px 16px 40px 16px;
    justify-content: space-between;
  }
}

.header nav,
.header__nav {
  display: block;
}

.header__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .header__buttons {
    flex-direction: column;
  }
}

.header__demo {
  color: var(--Color-Primary-Dark-Blue, #161625);
  border-radius: 46px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  /* Body/Small Text */
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  /* 150% */
}

@media (max-width: 767.98px) {
  .header__demo {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .header__button {
    width: 100%;
  }
}

.header-nav ul,
.header-nav__list {
  display: flex;
}

@media (min-width: 767.98px) {

  .header-nav ul,
  .header-nav__list {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 32px;
  }
}

@media (max-width: 767.98px) {

  .header-nav ul,
  .header-nav__list {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    overflow-y: auto;
    max-height: calc(100dvh - 218px);
  }
}

.header-nav li>a,
.header-nav__link {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  padding: 0px 8px 2px 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.header-nav li>a span,
.header-nav__link span {
  position: relative;
  z-index: 10;
}

.header-nav li>a::after,
.header-nav__link::after {
  left: 0;
  width: 100%;
  content: "";
  height: 4px;
  background: var(--Color-Accent-Lime, #d1f55f);
  position: absolute;
  bottom: 5px;
  opacity: 0;
}

.header-nav li>a.active,
.header-nav__link.active {
  color: var(--Color-Text-Black-100);
  font-weight: 600;
  letter-spacing: -0.16px;
}

.header-nav li>a.active::after,
.header-nav__link.active::after {
  opacity: 1;
}

.header-nav li>a:hover,
.header-nav__link:hover {
  color: var(--Color-Text-Black-100);
  font-weight: 600;
  letter-spacing: -0.16px;
}

.header-nav li>a:hover::after,
.header-nav__link:hover::after {
  opacity: 1;
}

.header__right-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .header__right-mobile {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.burger-menu {
  display: none;
}

@media (max-width: 767.98px) {
  .burger-menu {
    width: 24px;
    height: 18px;
    min-width: 24px;
    position: relative;
    display: block;
    z-index: 51;
  }

  .burger-menu span,
  .burger-menu::after,
  .burger-menu::before {
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    display: block;
    transition: all 0.3s ease-in;
    background: var(--Color-Primary-Dark-Blue, #161625);
  }

  .burger-menu::after,
  .burger-menu::before {
    content: "";
  }

  .burger-menu::after {
    top: 0;
  }

  .burger-menu::before {
    bottom: 0;
  }

  .burger-menu span {
    top: calc(50% - 1px);
  }
}

.header._active .burger-menu span {
  width: 0;
}

.header._active .burger-menu::after {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.header._active .burger-menu::before {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}

.header._active .header__right {
  left: 0;
}

/**********FOOTER******************/
.footer {
  background: var(--Color-Primary-Dark-Blue, #161625);
  padding: 48px 0px 0 0px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (max-width: 767.98px) {
  .footer__content {
    gap: 48px;
  }
}

.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .footer__top {
    flex-direction: column;
    gap: 64px;
  }
}

@media (max-width: 767.98px) {
  .footer__top {
    gap: 48px;
  }
}

.footer__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .footer__list {
    align-items: center;
    justify-content: center;
  }
}

.footer-sub-title {
  color: #fff;
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

.footer-sub-title:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .footer-sub-title {
    text-align: center;
  }
}

.footer-top-left {
  display: flex;
  gap: 24px;
}

@media (max-width: 767.98px) {
  .footer-top-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.footer-top-left__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 767.98px) {
  .footer-top-left__list {
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 767.98px) {
  .footer-top-left__li {
    padding-right: 77px;
  }
}

.footer-top-left__link {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.footer-top-right__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  aspect-ratio: 1;
}

.footer-top-right__link img {
  max-width: 88px;
  width: auto;
  height: auto;
  max-height: 88px;
}

@media (max-width: 767.98px) {
  .footer-top-right {
    width: 100%;
  }
}

@media (min-width: 767.98px) {
  .footer-top-right__list {
    margin-right: 20px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0px;
  border-top: 1px solid var(--Color-Text-Grey-80, rgba(64, 64, 99, 0.8));
}

@media (max-width: 767.98px) {
  .footer-bottom {
    flex-direction: column;
  }
}

.footer-bottom__text {
  color: var(--Color-Primary-Purple-Gray, #89899e);
  text-align: right;
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

@media (max-width: 767.98px) {
  .footer-bottom__text {
    text-align: center;
  }
}

/*************************************/
.main__hero {
  padding-top: 76px;
  background: #fff;
}

.main__logos {
  background: #fff;
}

.main .main-logos-mtd {
  border-radius: 0 0 40px 40px;
  padding-bottom: var(--section-padding);
}

.main__before-solution {
  border-radius: 0 0 40px 40px;
  background: #fff;
}

.main .before-solution-mtd {
  background: none;
  border-radius: 0;
}

.main__hour-video {
  border-radius: 40px 40px 0 0;
  background: #fff;
}

.main__features {
  border-radius: 0 0 40px 40px;
  background: #fff;
}

.main__services {
  background: var(--Color-Primary-Light-Gray, #f3f4f6);
}

.main__testimonial {
  padding-bottom: 96px;
  background: var(--Color-Primary-Light-Gray, #f3f4f6);
}

.main__smart-collaboration {
  border-radius: 40px;
  background: #fff;
}

.main .main-reviews-pricing {
  border-radius: 40px 40px 0 0;
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.main__mtd-subscription {
  border-radius: 0 0 40px 40px;
  background: #fff;
}

.main-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-hero__title {
  text-align: center;
  margin: 0px auto;
  max-width: 808px;
  margin-bottom: 24px;
}

.main-hero__title span {
  position: relative;
  z-index: 10;
  color: var(--Color-Text-Black-100, #000);
  letter-spacing: -6px;
  display: inline-block;
}

.main-hero__title span::after {
  content: "";
  height: 28px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  background: var(--Color-Accent-Lime-50, rgba(209, 245, 95, 0.5));
}

@media (max-width: 991.98px) {
  .main-hero__title span::after {
    height: 20px;
  }
}

.main-hero__text {
  color: var(--Color-Text-Black-80);
  text-align: center;
  margin: 0px auto 0px auto;
  max-width: 634px;
}

.main-hero__check-list {
  margin-top: 24px;
}

.main-hero__buttons {
  margin-top: 48px;
  margin-bottom: 96px;
}

.main-hero__video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1008px;
  height: auto;
  max-height: 336px;
  cursor: pointer;
  margin: 0px auto;
  height: 336px;
}

@media (max-width: 767.98px) {
  .main-hero__video {
    max-height: 280px;
  }
}

.main-hero__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.main-hero-pricing {
  padding-top: 96px !important;
}

.main-hero-pricing .main-hero__buttons {
  margin-bottom: 0;
  margin-top: 16px;
}

.main-hero-mtd .main-hero__title {
  max-width: 638px;
}

.main-hero-mtd .main-hero__text {
  max-width: 742px;
}

.main-hero-mtd .main-hero__video img {
  display: block;
  max-width: 100%;
  height: auto;
}

.main-hero-video__button {
  top: 40px;
  white-space: nowrap;
  right: 36px;
  display: inline-flex !important;
}

@media (max-width: 991.98px) {
  .main-hero-video__button {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 767.98px) {
  .main-hero-video__button {
    right: 12px;
    top: 12px;
  }
}

/******************************/
.main-logos__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1280.98px) {
  .main-logos__items {
    justify-content: center;
  }
}

.main-logos__item {
  height: 80px;
  width: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-logos__item img {
  display: block;
  max-width: 100%;
  height: auto;
}

/**********************************/
.before-solution__content {
  background: #161625;
  display: flex;
  align-items: start;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .before-solution__content {
    flex-direction: column;
  }
}

.before-solution__left {
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  /* 596/1216 */
}

@media (max-width: 991.98px) {
  .before-solution__left {
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .before-solution__left {
    gap: 24px;
  }
}

.before-solution__title {
  color: #fff;
}

.before-solution__texts {
  margin-top: 24px;
  max-width: 458px;
}

.before-solution__texts p:not(:last-child) {
  margin-bottom: 8px;
}

.before-solution__buttons {
  margin-top: 48px;
  display: flex;
  align-items: start;
}

.before-solution__right {
  flex: 0 1 50%;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  /* 596/1216 */
}

.before-solution__card {
  display: flex;
  width: 100%;
  padding: 32px 24px;
  align-items: center;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  flex-shrink: 0;
}

.before-solution__card-start {
  align-items: start;
  gap: 8px;
}

.before-solution__card-start .before-solution__text {
  padding: 8px;
}

/*************************/
.partners__title {
  max-width: 681px;
}

.partners__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767.98px) {
  .partners__cards {
    grid-template-columns: 1fr;
  }
}

.partners-card {
  display: flex;
  padding: 48px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 24px;
}

.partners-card:nth-child(1) {
  background: var(--Color-Accent-Lime, #d1f55f);
}

.partners-card:nth-child(2) {
  background: var(--Color-Accent-Light-Blue, #e3e3fc);
}

.partners-card:nth-child(3) {
  background: var(--Color-Accent-Buege, #fce6c6);
}

@media (max-width: 991.98px) {
  .partners-card {
    padding: 32px 24px;
  }
}

@media (max-width: 767.98px) {
  .partners-card {
    padding: 20px;
  }
}

.partners-card__numbers {
  color: var(--Color-Text-Black-100, #000);
  text-align: right;
  font-family: "Be Vietnam Pro";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 78px;
  letter-spacing: -3px;
}

.partners-card__text {
  color: var(--Color-Text-Black-80);
}

/********TOP BLOCK*************************/
.partners__triggers {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 166px;
}

.partners-triggers__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partners-trigger {
  width: 64px;
  height: 64px;
  border-radius: 48px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.partners-trigger:disabled {
  background: var(--Color-Primary-Gray, #d9d9e0);
}

.partners-trigger:disabled svg path {
  fill: #89899e;
}

.pagination {
  position: relative;
  width: 378px;
  height: 2px;
  background: var(--Color-Primary-Gray, #d9d9e0);
  border-radius: 2px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .pagination {
    display: none;
  }
}

.pagination__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  transition: all 0.5s ease;
  height: 100%;
  background: var(--Color-Primary-Dark-Blue, #161625);
  border-radius: 2px;
}

/********triggers*************************/
.partners-slider {
  margin-top: 40px;
}

@media (min-width: 1280px) {
  .partners-slider__container {
    margin-left: auto;
    overflow: hidden;
    margin-right: 0;
    padding: 0px 0px 0px 16px;
    padding-right: 0;
    max-width: calc((100vw - 1232px) / 2 + 1232px);
  }
}

.partners-slider__wrapper {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  align-items: center !important;
  height: 692px;
  padding: 24px 0px !important;
}

@media (max-width: 767.98px) {
  .partners-slider__wrapper {
    height: -moz-max-content;
    height: max-content;
  }
}

.partners-slide {
  width: 405px;
  flex: 0 1 405px;
  z-index: 10;
  height: 586px;
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: width 0.5s ease, height 0.5s ease;
}

.partners-slide.active {
  flex: 0 0 493px;
  width: 493px;
  height: 644px;
}

.partners-slide.active .partners-slide__image-wrapper::after {
  /* background: var(--Color-Primary-Dark-Blue, #161625); */
}

.partners-slide.active .partners-slide__button {
  background: var(--Color-Accent-Lime, #d1f55f);
}

.partners-slide.active .partners-slide__button:hover::after {
  opacity: 1;
  background-color: var(--Color-Accent-Lime, #d1f55f);
}

.partners-slide.active .partners-slide__button:hover .button-icon::after {
  opacity: 1;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.partners-slide.active .partners-slide__decor svg path {
  fill: var(--Color-Accent-Lime, #d1f55f);
}

.partners-slide.active .partners-slide__bottom {
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.partners-slide.active .partners-slide__text {
  color: rgba(255, 255, 255, 0.8);
}

.partners-slide.active .partners-slide__text span {
  font-weight: 600;
  color: var(--Color-Accent-Lime, #d1f55f);
}

.partners-slide.active .partners-slide__user-name {
  color: #fff;
}

.partners-slide.active .partners-slide__user-position {
  color: var(--Color-Text-White-60, rgba(255, 255, 255, 0.6));
}

@media (max-width: 767.98px) {

  .partners-slide,
  .partners-slide.active,
  .partners-slide.next-active {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .partners-slide__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 493 / 334;
    background-size: cover;
    background-position: center;
  }

  .partners-slide__bottom {
    padding: 16px;
  }
}

.partners-slide {
  position: relative;
  border-radius: 24px;
  transform-origin: center bottom;
  overflow: hidden;
}

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

.partners-slide__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 493 / 334;
  will-change: height;
  transition: all 0.5s ease;
  background-position: center;
  background-size: cover;
}

.partners-slide__image-wrapper::after {
  transition: all 0.5s ease;
  content: "";
  /* height: 12px; */
  width: 100%;
  background: #fff;
  left: 0;
  bottom: 0;
  position: absolute;
}

.partners-slide__button {
  position: absolute;
  z-index: 100;
  right: 22px;
  bottom: -11px;
  transition: all 0.5s ease;
}

.partners-slide__bottom {
  display: flex;
  padding: 32px;
  padding-top: 56px;
  flex-direction: column;
  border-radius: 24px 24px 24px 24px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.5s ease;
  height: auto;
  min-height: 240px;
  width: 100%;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.partners-slide__decor {
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.partners-slide__text {
  transition: all 0.5s ease;
  color: var(--Color-Text-Black-80);
  height: auto;
  min-height: 100px;
}

.partners-slide__text span {
  transition: all 0.5s ease;
  font-weight: 600;
  color: var(--Color-Text-Black-100, #000);
}

.partners-slide__user-name {
  transition: all 0.5s ease;
  margin-bottom: 4px;
  color: var(--Color-Text-Black-100, #000);
}

.partners-slide__user-position {
  transition: all 0.5s ease;
  color: var(--Color-Text-Grey-80, rgba(64, 64, 99, 0.8));
}

/*********************************/
.hour-video__video {
  position: relative;
  overflow: hidden;
  max-width: 1009px;
  max-height: 564px;
  height: auto;
  margin: 0px auto;
  flex-shrink: 0;
  border-radius: 24px;
}

.hour-video__video img {
  max-width: 100%;
}

.hour-video-video__button {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media (max-width: 991.98px) {
  .hour-video-video__button {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 767.98px) {
  .hour-video-video__button {
    right: 12px;
    top: 12px;
  }
}

/*******************************/
.features-top__content {
  width: 100%;
  display: flex;
  border-radius: 21.821px;
  background: var(--Color-Accent-Lime, #d1f55f);
  padding: 72.738px 50.917px;
  align-items: center;
  gap: 21.821px;
}

@media (max-width: 991.98px) {
  .features-top__content {
    gap: 36px;
  }
}

@media (max-width: 767.98px) {
  .features-top__content {
    flex-direction: column;
    align-items: start;
    padding: 40px 36px;
  }
}

@media (max-width: 487.98px) {
  .features-top__content {
    padding: 30px 20px;
  }
}

.features-top__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21.821px;
  flex: 1 0 0;
}

.features-top__title {
  color: var(--Color-Primary-Dark-Blue, #161625);
  font-family: "Be Vietnam Pro";
  font-size: 40.953px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 120.833% */
  letter-spacing: -2.56px;
  max-width: 451px;
}

@media (max-width: 991.98px) {
  .features-top__title {
    font-size: 30px;
    letter-spacing: -1px !important;
  }
}

@media (max-width: 767.98px) {
  .features-top__title {
    font-size: 24px;
    letter-spacing: 0px !important;
  }
}

.features-top__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  font-family: "Be Vietnam Pro";
  font-size: 13.651px;
  font-style: normal;
  max-width: 407px;
  font-weight: 400;
  line-height: 20.476px;
  /* 150% */
}

.features-top__right img {
  max-width: 100%;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .features-top__right {
    width: 100%;
  }
}

.features__wrapper {
  height: 670px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .features__wrapper {
    height: 570px;
  }
}

@media (max-width: 767.98px) {
  .features__wrapper {
    height: 770px;
  }
}

@media (max-width: 640.98px) {
  .features__wrapper {
    height: 670px;
  }
}

@media (max-width: 487.98px) {
  .features__wrapper {
    height: 670px;
  }
}

.features__list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  flex-direction: column;
  display: flex;
  position: relative;
}

.features-card {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.features-card__content {
  height: 100%;
  display: flex;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .features-card__content {
    gap: 36px;
  }
}

@media (max-width: 767.98px) {
  .features-card__content {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}

.features-card__left {
  flex: 0 1 50%;
  margin: auto 0px;
}

@media (max-width: 487.98px) {
  .features-card__left {
    padding-top: 60px;
  }
}

.features-card__title {
  max-width: 497px;
}

.features-card__text {
  color: var(--Color-Text-Black-80);
  max-width: 448px;
}

.features-card__right {
  border-radius: 20px !important;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  background: rgba(255, 255, 255, 0.9);
  background-blend-mode: soft-light;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  flex: 0 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-card__right img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767.98px) {
  .features-card__right {
    width: 100%;
  }
}

.features-card__right-video {
  width: 100%;
  height: auto;
  display: block;
}

.features-card-accent {
  background: var(--Color-Accent-Lime, #d1f55f);
}

.features-card-accent-light {
  background: var(--Color-Accent-Light-Blue, #e3e3fc);
}

.features-card-accent-buege {
  background: var(--Color-Accent-Buege, #fce6c6);
}

.features-card-primary-dark-blue {
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.features-dark-max {
  padding-bottom: 64px !important;
  padding-top: 64px;
}

.features-dark-max .features-card__content {
  width: 1328px !important;
}

@media (max-width: 1360.98px) {
  .features-dark-max .features-card__content {
    width: 100% !important;
  }
}

.features-dark-max .features-card__title {
  color: var(--Color-Text-White-100, #FFF);
}

.features-dark-max .features-card__text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.features-dark-max .features-card__right {
  border: none;
}

@media (max-width: 991.98px) {
  .features-dark-max .features__wrapper {
    height: 600px;
  }
}

@media (max-width: 767.98px) {
  .features-dark-max .features__wrapper {
    height: 700px;
  }
}

@media (max-width: 640.98px) {
  .features-dark-max .features__wrapper {
    height: 670px;
  }
}

@media (max-width: 767.98px) {
  .features-dark-max .features-card__right {
    max-height: 400px;
    overflow: hidden;
  }
}

/*************************************/
.main-services__cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 991.98px) {
  .main-services__cards {
    height: 752px;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .main-services__cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 991.98px) {
  .main-services__card:nth-child(1) {
    grid-row: 1/span 2;
    grid-column: 1/span 1;
  }

  .main-services__card:nth-child(2) {
    grid-row: 1/span 1;
    grid-column: 2/span 2;
  }

  .main-services__card:nth-child(3) {
    grid-row: 2/span 1;
    grid-column: 2/span 1;
  }

  .main-services__card:nth-child(4) {
    grid-row: 3/span 1;
    grid-column: 1/span 2;
  }

  .main-services__card:nth-child(5) {
    grid-row: 2/span 2;
    grid-column: 3/span 1;
  }
}

.services-card {
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: #fff;
}

.services-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.services-card__text {
  color: var(--Color-Text-Black-80);
}

@media (min-width: 487.98px) {
  .services-card__text {
    margin: 0px 8px;
  }
}

/******************************/
.testimonial__content {
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

@media (max-width: 991.98px) {
  .testimonial__content {
    flex-direction: column;
  }
}

.testimonial__left {
  display: flex;
  flex-direction: column;
  flex: 0 1 39.802632%;
  /* 484/1216 */
}

.testimonial__right {
  flex: 0 1 50%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.testimonial__right img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  max-width: 100%;
}

.testimonial__button {
  position: absolute;
  bottom: 32px;
  right: 32px;
}

@media (max-width: 991.98px) {
  .testimonial__button {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 767.98px) {
  .testimonial__button {
    right: 12px;
    bottom: 12px;
  }
}

.testimonial-left__badge {
  margin-bottom: 32px;
}

.testimonial-left__title {
  color: #fff;
  margin-bottom: 8px;
}

.testimonial-left__text {
  height: 100%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 57px;
}

.testimonial-left__text span {
  color: var(--Color-Accent-Bright-lime, #d1f55f);
}

.testimonial-left__user-name {
  margin-bottom: 5px;
  color: #fff;
}

.testimonial-left__user-position {
  color: var(--Color-Text-White-60, rgba(255, 255, 255, 0.6));
}

/********************************/
.smart-collaboration__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 56px;
  flex: 0 1 100%;
  gap: 24px;
}

@media (max-width: 1280.98px) {
  .smart-collaboration__content {
    padding: 0px;
  }
}

@media (max-width: 991.98px) {
  .smart-collaboration__content {
    flex-direction: column;
    align-items: start;
  }
}

.smart-collaboration__content-1,
.smart-collaboration__content-2 {
  margin-bottom: 64px;
}

@media (max-width: 991.98px) {

  .smart-collaboration__content-1,
  .smart-collaboration__content-2 {
    margin-bottom: 48px;
  }
}

@media (max-width: 767.98px) {

  .smart-collaboration__content-1,
  .smart-collaboration__content-2 {
    margin-bottom: 32px;
  }
}

.smart-collaboration__left {
  flex: 0 1 50%;
}

.smart-collaboration__title {
  max-width: 492px;
  color: var(--Color-Text-Black-100, #000);
}

.smart-collaboration__text {
  max-width: 492px;
  color: var(--Color-Text-Black-80);
}

.smart-collaboration__right {
  transition: all 0.4s ease;
  will-change: scroll-position;
  will-change: height;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  flex: 0 1 50%;
}

.smart-collaboration__right-accent {
  display: flex;
  padding: 56px 40px;
  flex-direction: column;
  background: var(--Color-Accent-Bright-lime, #d1f55f);
}

@media (max-width: 991.98px) {
  .smart-collaboration__right-accent {
    width: 100%;
    padding: 32px 24px;
  }
}

@media (max-width: 767.98px) {
  .smart-collaboration__right-accent {
    padding: 20px 16px;
  }
}

.smart-collaboration__cards {
  display: flex;
  flex-direction: column;
}

.smart-collaboration__card {
  border-radius: 20px;
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .smart-collaboration__card {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .smart-collaboration__card {
    padding: 16px;
  }
}

.smart-collaboration__card:nth-child(2) {
  margin-top: 10px;
  transform: rotate(3deg);
}

.smart-collaboration__card:nth-child(3) {
  transform: rotate(8.7deg);
  margin-top: 55px;
}

.smart-collaboration__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.smart-collaboration__right-accent-light-blue {
  background: var(--Color-Accent-Light-Blue, #e3e3fc);
}

.smart-collaboration__right-accent-buege {
  background: var(--Color-Accent-Buege, #fce6c6);
}

.list-rounded__li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.list-rounded__li::before {
  width: 8px;
  height: 8px;
  display: block;
  background-color: var(--Color-Primary-Purple-Gray, #89899e);
  content: "";
  border-radius: 50%;
}

.list-rounded__text {
  color: var(--Color-Text-Black-80);
}

.video-review {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .video-review {
    padding: 32px 24px;
  }
}

@media (max-width: 767.98px) {
  .video-review {
    padding: 24px 16px;
  }
}

@media (max-width: 487.98px) {
  .video-review {
    padding: 16px;
  }
}

.video-review__top {
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .video-review__top {
    padding: 20px;
  }
}

.video-review__bottom {
  display: flex;
  padding: 32px 32px 32px 24px;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .video-review__bottom {
    padding: 24px 24px 24px 20px;
  }
}

@media (max-width: 487.98px) {
  .video-review__bottom {
    flex-direction: column;
    gap: 12px;
  }
}

.video-review-top__image {
  position: relative;
  display: flex;
  width: 104px;
  height: 104px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

@media (max-width: 991.98px) {
  .video-review-top__image {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767.98px) {
  .video-review-top__image {
    height: 64px;
    width: 64px;
  }
}

.video-review-top__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-review-top__button {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 48px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

@media (max-width: 991.98px) {
  .video-review-top__button {
    padding: 4px;
    bottom: -3px;
    right: -3px;
  }
}

@media (max-width: 767.98px) {
  .video-review-top__button {
    padding: 2px;
  }
}

.video-review-top__user-name {
  margin-bottom: 4px;
  color: var(--Color-Primary-Dark-Blue, #161625);
}

.video-review-top__user-position {
  color: var(--Color-Text-Grey-80, rgba(64, 64, 99, 0.8));
}

.video-review-bottom__text {
  color: var(--Color-Text-Black-80);
}

/************************************/
.main-reviews__track {
  width: 100%;
  overflow: hidden;
}

.main-reviews__track::-webkit-scrollbar {
  display: none;
}

.main-reviews__track:not(:last-child) {
  margin-bottom: 24px;
}

@media (max-width: 767.98px) {
  .main-reviews__track:not(:last-child) {
    margin-bottom: 16px;
  }
}

.main-reviews__lines {
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media (min-width: 767.98px) {
  .main-reviews__lines {
    height: 679px;
  }
}

@media (max-width: 767.98px) {
  .main-reviews__lines {
    height: 540px;
  }
}

.main-reviews__lines.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 5;
}

.main-reviews__lines.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ccc;
  border-top-color: var(--Color-Accent, #000);
  transform: translate(-50%, -50%);
  animation: spinner 0.8s linear infinite;
  z-index: 6;
}

.main-reviews__line {
  display: flex;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  width: 100%;
  min-width: 100%;
}

@media (max-width: 767.98px) {
  .main-reviews__line {
    gap: 16px;
  }
}

@keyframes spinner {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.main-reviews-header__content {
  margin-bottom: 64px;
}

@media (max-width: 991.98px) {
  .main-reviews-header__content {
    margin-bottom: 48px;
  }
}

@media (max-width: 767.98px) {
  .main-reviews-header__content {
    margin-bottom: 32px;
  }
}

.main-reviews-header__title {
  margin-bottom: 8px;
}

.main-reviews-header__logo {
  display: inline-flex;
  padding: 8px 24px 12px 14px;
  flex-direction: column;
  border-radius: 48px;
  background: var(--Color-Primary-Purple-Gray, #89899e);
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 991.98px) {
  .main-reviews-header__logo {
    padding: 4px 12px 8px 8px;
  }

  .main-reviews-header__logo img {
    max-width: 70px;
    height: auto;
  }
}

.text-reviews-item {
  width: 493px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

@media (max-width: 991.98px) {
  .text-reviews-item {
    padding: 32px;
    width: 420px;
  }
}

@media (max-width: 767.98px) {
  .text-reviews-item {
    padding: 24px;
    width: 380px;
  }
}

@media (max-width: 487.98px) {
  .text-reviews-item {
    padding: 16px;
    width: 100dvw !important;
  }
}

.text-reviews-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.text-reviews-item__top:not(:last-child) {
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  .text-reviews-item__top:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .text-reviews-item__top:not(:last-child) {
    margin-bottom: 16px;
  }
}

.text-reviews-item__user-name {
  color: var(--Color-Text-Black-100, #000);
  margin-bottom: 2px;
}

.text-reviews-item__date {
  color: var(--Color-Text-Grey-60, rgba(64, 64, 99, 0.6));
}

.text-reviews-item__title {
  color: var(--Color-Text-Black-100, #000);
}

.text-reviews-item__title:not(:last-child) {
  margin-bottom: 12px;
}

.text-reviews-item__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.text-reviews-item__text:not(:last-child) {
  margin-bottom: 12px;
}

.text-reviews-item__more {
  color: var(--Color-Primary-Purple-Gray, #89899e);
  text-align: center;
  margin-right: auto;
  /* Batton/Small */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.32px;
}

.text-reviews-item__stars::after {
  content: "";
  display: block;
  width: 96px;
  height: 18px;
  background-image: url("./assets/icons/stars.svg");
}

/***********************************/
.main-subscription__content {
  display: flex;
  padding: 64px 56px;
  align-items: start;
  justify-content: space-between;
  gap: 56px;
  border-radius: 24px;
  background: var(--Color-Accent-Lime, #d1f55f);
}

@media (max-width: 1280.98px) {
  .main-subscription__content {
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .main-subscription__content {
    padding: 40px 32px;
    gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .main-subscription__content {
    padding: 32px 24px;
    gap: 32px;
  }
}

.main-subscription__left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  flex: 0 1 46.381579%;
  /* 564/1216 */
}

@media (min-width: 1280px) {
  .main-subscription__left {
    padding-top: 88px;
  }
}

.main-subscription__right {
  display: flex;
  flex-direction: column;
  padding: 56px 40px;
  border-radius: 20px;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  background: var(--Color-Primary-Dark-Blue, #161625);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  gap: 40px;
  /* 596/1216 */
}

@media (min-width: 1280px) {
  .main-subscription__right {
    flex: 0 1 49.013158%;
  }
}

@media (max-width: 1280.98px) {
  .main-subscription__right {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .main-subscription__right {
    padding: 40px 32px;
  }
}

@media (max-width: 767.98px) {
  .main-subscription__right {
    padding: 32px 24px;
  }
}

@media (max-width: 487.98px) {
  .main-subscription__right {
    padding: 20px;
  }
}

.main-subscription-right__title {
  color: var(--Color-Text-White-100, #fff);
}

.main-subscription-right__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
}

@media (min-width: 767.98px) {
  .main-subscription-right__items {
    margin-left: 24px;
    gap: 16px;
  }
}

.main-subscription-right__item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-subscription-right__text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.main-subscription-right__buttons {
  display: flex;
  justify-content: end;
  align-items: end;
}

/*****************************************************/
.mtd-bottom-cta__content {
  padding: var(--section-padding) 56px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--Color-Accent-Lime, #D1F55F);
}

.mtd-bottom-cta__title,
.mtd-bottom-cta__text {
  max-width: 752px;
  text-align: center;
}

.mtd-bottom-cta__text {
  margin-top: 16px;
}
.mtd-bottom-cta__buttons {
  margin-top: 48px;
}
.mtd-advantages__cards {
  display: grid;
  row-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  align-self: stretch;
}

@media (min-width: 991.98px) {
  .mtd-advantages__cards {
    height: 400px;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .mtd-advantages__cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 991.98px) {
  .mtd-advantages__card:nth-child(1) {
    grid-row: 1/span 1;
    grid-column: 1/span 3;
  }

  .mtd-advantages__card:nth-child(2) {
    grid-row: 1/span 1;
    grid-column: 4/span 2;
  }

  .mtd-advantages__card:nth-child(3) {
    grid-row: 2/span 1;
    grid-column: 1/span 2;
  }

  .mtd-advantages__card:nth-child(4) {
    grid-row: 2/span 1;
    grid-column: 3/span 3;
  }
}

.services-card-mtd .services-card__header {
  gap: 16px;
}

.mtd-pricing-options {
  border-radius: 40px 40px 0 0;
  background: #FFF;
}

.mtd-pricing-options__texts {
  color: var(--Color-Text-Black-100, #000);
}

@media (min-width: 991.98px) {
  .mtd-pricing-options__texts {
    max-width: 492px;
  }
}

.mtd-pricing-options-right {
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  background: var(--Color-Accent-Light-Blue, #E3E3FC);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (min-width: 991.98px) {
  .mtd-pricing-options-right {
    padding: 56px 40px;
  }
}

.mtd-pricing-options-right__title {
  color: var(--Color-Text-Black-100, #000);
}

.mtd-subscription__content {
  padding: 32px 24px;
  border-radius: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

@media (min-width: 991.98px) {
  .mtd-subscription__content {
    padding: 64px 56px;
  }
}

.mtd-subscription__left {
  padding: 20px 0px;
}

@media (min-width: 991.98px) {
  .mtd-subscription__left {
    padding: 40px 40px 40px 0px;
  }
}

.mtd-subscription-left__title {
  color: var(--Color-Text-White-100, #FFF);
  margin-bottom: 16px;
}

.mtd-subscription-left__text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.mtd-subscription-left__list {
  border-radius: 16px;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  margin-top: 16px;
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}

@media (max-width: 991.98px) {
  .mtd-subscription-left__list {
    margin-bottom: 32px;
  }
}

.mtd-subscription-left__li {
  padding: 0px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.mtd-subscription-left__li::before {
  width: 24px;
  height: 24px;
  content: url("./assets/icons/CheckPrimaryBlue.svg");
}

.mtd-subscription-right {
  gap: 16px;
  background: var(--Color-Accent-Lime, #D1F55F);
}

.mtd-subscription-right__title {
  color: var(--Color-Text-Black-100, #000);
}

.mtd-subscription-right__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.mtd-subscription-right__info {
  color: var(--Color-Text-Black-100, #000) !important;
  display: flex;
  padding: 16px 0;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.mtd-subscription-right__info .h1 {
  color: var(--Color-Text-Black-100, #000) !important;
}

.mtd-subscription-right__card {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.mtd-subscription-right__buttons {
  margin-top: auto;
  display: flex;
  justify-content: end;
}

/*****************************/
.newsletters-modal {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 767.98px) {
  .newsletters-modal {
    flex-direction: column;
  }
}

.newsletters-modal-left {
  flex: 0 1 52%;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

@media (max-width: 991.98px) {
  .newsletters-modal-left {
    flex: 0 1 50%;
    padding: 0;
  }
}

.newsletters-modal-left__title {
  color: var(--Color-Text-White-100, #FFF);
}

.newsletters-modal-left__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  height: 100%;
}

.newsletters-modal-left__list .regular-text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.newsletters-modal-left__card {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.newsletters-modal-left__card p {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.newsletters-modal-left__card-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 9px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #000;
}

.newsletters-modal-right {
  flex: 0 1 45%;
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  background: #FFF;
  align-self: stretch;
}

@media (max-width: 991.98px) {
  .newsletters-modal-right {
    flex: 0 1 47%;
    padding: 24px;
  }
}

.newsletters-modal-right__title {
  color: var(--Color-Text-Black-100, #000);
  margin-bottom: 24px;
}

.newsletters-modal-right__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsletters-modal-right__button {
  padding: 8px 8px 8px 64px !important;
  height: 64px !important;
  border-radius: 48px;
}

.newsletters-modal-right__button::after {
  display: none;
  border-radius: 48px;
}

.newsletters-modal-right__button p {
  width: 100%;
}

.newsletters-modal-right__button span {
  width: 48px;
  min-width: 48px !important;
  height: 48px;
  min-height: 48px !important;
}

.newsletters-modal-right__text {
  transition: color 0.3s ease-in-out;
  margin-top: 78px;
  color: var(--Color-Text-Black-60, rgba(0, 0, 0, 0.6));
}

@media (max-width: 991.98px) {
  .newsletters-modal-right__text {
    margin-top: 32px;
  }
}

.newsletters-form._active .newsletters-form__span {
  opacity: 1;
}

.newsletters-form._active .newsletters-form__input::-moz-placeholder {
  opacity: 0;
}

.newsletters-form._active .newsletters-form__input::placeholder {
  opacity: 0;
}

.newsletters-form._active .newsletters-modal-right__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.newsletters-form__label {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.newsletters-form__span {
  color: var(--Color-Text-Grey-100, #404063);
  /* Body/Xsmall Text */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.newsletters-form__input {
  height: 60px;
  border-bottom: 1px solid transparent;
  background: #FFF;
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  outline: none;
  letter-spacing: -0.36px;
  transition: all 0.3s ease-in-out;
}

.newsletters-form__input::-moz-placeholder {
  color: var(--Color-Text-Grey-60, rgba(64, 64, 99, 0.6));
  padding: 16px;
}

.newsletters-form__input::placeholder {
  color: var(--Color-Text-Grey-60, rgba(64, 64, 99, 0.6));
  padding: 16px;
}

.newsletters-form__input:focus {
  padding: 16px 0px;
  color: var(--Color-Primary-Dark-Blue, #161625);
  border-bottom: 1px solid var(--Color-Primary-Purple-Gray, #89899E);
}

/******************************/
.video-review-modal {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-review-modal__video {
  aspect-ratio: 16/9;
  max-width: 100%;
  height: auto;
}

/******************************/
.main-demo {
  background: #FFF;
  padding: 48px 0px 96px 0px;
}

.main-demo.explainer-video .main-demo__image {
  max-width: 1328px;
}
.main-demo.explainer-video .main-demo__image .main-demo-image__video{
  scale: 1.04;
}
.main-demo__image {
  max-width: 834px;
  height: auto;
  position: relative;
  aspect-ratio: 834/464;
  border-radius: 24px;
  overflow: hidden;
  margin: 0px auto 48px auto;
}

.main-demo__image .main-demo-image__video {
  display: none;
}

.main-demo__image .main-demo-image__img,
.main-demo__image .main-demo-image__video {
  width: 100%;
  border-radius: 24px;
  height: 100%;
}

.main-demo__image .main-demo-image__video {
  max-width: 100%;
  scale: 1.01;
  aspect-ratio: 834/464;
}

.main-demo__content {
  padding: 56px 24px 24px 24px;
  border-radius: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1200.98px) {
  .main-demo__content {
    flex-direction: column;
  }
}

@media (min-width: 1200.98px) {
  .main-demo__content {
    align-items: center;
  }
}

@media (min-width: 991.98px) {
  .main-demo__content {
    padding: 56px;
  }
}

@media (max-width: 640.98px) {
  .main-demo__content {
    padding: 24px;
  }
}

.main-demo__left,
.main-demo__right {
  flex: 0 1 50%;
}

.main-demo__title {
  margin-bottom: 16px;
  color: var(--Color-Text-White-100, #FFF);
}

.main-demo__text {
  max-width: 530px;
}

.main-demo-form {
  display: flex;
  padding: 40px 32px 48px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 640.98px) {
  .main-demo-form {
    padding: 16px;
  }
}

.main-demo-form__text {
  color: var(--Color-Text-White-100, #FFF);
}

.main-demo-form__label {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  gap: 16px;
  align-self: stretch;
}

.main-demo-form__label .form__text {
  position: absolute;
  bottom: -28px;
  left: 0;
}

@media (max-width: 640.98px) {
  .main-demo-form__label .form__text {
    flex-direction: column;
    bottom: 76px;
  }
}

@media (max-width: 640.98px) {
  .main-demo-form__label {
    flex-direction: column;
    gap: 40px;
  }
}

.main-demo-form__input {
  height: 64px;
  display: flex;
  padding: 18px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 12px;
  outline: none;
  width: 100%;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.36px;
  caret-color: #000;
}

.main-demo-form__input::-moz-placeholder {
  color: var(--Color-Text-Grey-60, rgba(64, 64, 99, 0.6));
}

.main-demo-form__input::placeholder {
  color: var(--Color-Text-Grey-60, rgba(64, 64, 99, 0.6));
}

.main-demo-form__input:focus {
  border: 2px solid var(--Color-Accent-Lime, #D1F55F);
  color: var(--Color-Primary-Dark-Blue, #161625);
}

/***************Pricing Page********************************/
.buttons-payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 40px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  padding: 4px;
  position: relative;
}

.buttons-payment__button {
  width: 122px;
  display: flex;
  padding: 8px 0;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in;
  height: 44px;
  color: var(--Color-Text-White-60, rgba(255, 255, 255, 0.6));
  /* Body/Regular Text */
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.36px;
  position: relative;
  z-index: 2;
}

.buttons-payment__button._active {
  font-weight: 600;
  color: var(--Color-Text-Black-100, #000);
}

.buttons-payment__active {
  border-radius: 72px;
  position: absolute;
  width: 122px;
  height: 44px;
  left: 4px;
  top: 4px;
  transition: left 0.3s ease-in;
  background: var(--Color-Accent-Lime, #D1F55F);
}

.pricing-cards {
  border-radius: 40px 40px 0 0;
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.pricing-cards__content {
  padding: 14px 0px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1280.98px) {
  .pricing-cards__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.pricing-card {
  display: flex;
  padding: 40px 32px;
  flex-direction: column;
  gap: 32px;
  border-radius: 24px;
  border: 1px solid var(--Color-Stroke-Dark, rgba(137, 137, 158, 0.3));
  background: #FFF;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640.98px) {
  .pricing-card {
    padding: 32px 24px;
  }
}

.pricing-card__title {
  color: var(--Color-Text-Black-100, #000);
}

.pricing-card__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.pricing-card__price {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.pricing-card__price .h2 {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.pricing-card__price .regular-text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.pricing-card__button {
  margin-right: auto;
}

@media (min-width: 1280.98px) {
  .pricing-card__button {
    margin: 0px auto;
  }
}

.pricing-card__list {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--Color-Primary-Light-Gray, #F3F4F6);
  margin: 0px 16px;
}

@media (max-width: 640.98px) {
  .pricing-card__list {
    margin: 0px 12px;
  }
}

.pricing-card__li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.pricing-card__li::before {
  content: url("./assets/icons/RoundCheck.svg");
  display: block;
  width: 24px;
  height: 24px;
}

.pricing-card__li span {
  display: inline-flex;
  color: var(--Color-Text-Black-100, #000);
}

.pricing-card._active {
  padding-top: 88px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.pricing-card._active .pricing-card__title {
  color: var(--Color-Text-White-100, #FFF);
}

.pricing-card._active .pricing-card__text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.pricing-card._active .pricing-card__price .h2 {
  color: var(--Color-Text-White-100, #FFF);
}

.pricing-card._active .pricing-card__price .regular-text {
  color: var(--Color-Text-White-100, #FFF);
}

.pricing-card._active .pricing-card__list {
  margin-bottom: 70px;
  border-top: 1px solid var(--Color-Primary-Blue, #2A2A49);
}

@media (max-width: 640.98px) {
  .pricing-card._active .pricing-card__list {
    margin-bottom: 40px;
  }
}

.pricing-card._active .pricing-card__li {
  color: var(--Color-Text-White-100, #FFF);
}

.pricing-card._active .pricing-card__li span {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.pricing-card._active .pricing-card__popular {
  border-radius: 0 0 0 46px;
  display: flex;
  height: 56px;
  padding: 8px 56px;
  top: 0;
  color: var(--Color-Accent-Lime, #D1F55F);
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: 1.68px;
  text-transform: uppercase;
  justify-content: center;
  position: absolute;
  right: -0.333px;
  align-items: center;
  gap: 6px;
  background: var(--Color-Primary-Blue, #2A2A49);
}

.pricing-additionaly {
  border-radius: 0 0 40px 40px;
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.pricing-additionaly__text {
  margin-left: 32px;
  margin-top: 24px;
  color: var(--Color-Text-Grey-60, rgba(64, 64, 99, 0.6));
}

.pricing-additionaly-table__thead .pricing-additionaly-table__thead-th {
  padding: 38px 0px;
}

.pricing-additionaly-table__thead-th:first-child {
  text-align: left;
  background: var(--Color-Primary-Dark-Blue, #161625);
  height: 112px;
  padding: 16px 40px;
  display: flex;
  align-items: end;
  color: var(--Color-Text-White-100, #FFF);
  border-bottom: 1px solid var(--Color-Primary-Blue);
  border-radius: 24px 0px 0px 0px;
}

@media (max-width: 767.98px) {
  .pricing-additionaly-table__thead-th:first-child {
    padding: 16px;
    height: 60px;
  }
}

.pricing-additionaly-table__thead-th:not(:first-child) {
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
  padding: 38px 0px;
  border-bottom: 1px solid var(--Color-Primary-Gray, #D9D9E0);
}

@media (max-width: 767.98px) {
  .pricing-additionaly-table__thead-th:not(:first-child) {
    padding: 16px;
    height: 60px;
  }
}

.pricing-additionaly-table__thead-th:nth-child(2),
.pricing-additionaly-table__thead-th:nth-child(3) {
  border-right: 1px solid var(--Color-Primary-Gray, #D9D9E0);
}

.pricing-additionaly-table__tr:last-child .pricing-additionaly-table__td {
  padding-bottom: 21px;
  height: 93px;
}

.pricing-additionaly-table__tr:last-child td:first-child {
  border-radius: 0px 0px 0px 24px;
}

.pricing-additionaly-table__td:not(:first-child) {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  text-align: center;
  padding: 8px 0px;
}

.pricing-additionaly-table__td:not(:first-child) img {
  margin-right: 8px;
}

.pricing-additionaly-table__td:not(:first-child) span {
  color: var(--Color-Text-Black-100, #000);
}

.pricing-additionaly-table__td:first-child {
  background: var(--Color-Primary-Dark-Blue, #161625);
  height: 72px;
  padding: 0 40px;
  color: var(--Color-Text-White-60, rgba(255, 255, 255, 0.6));
}

@media (max-width: 767.98px) {
  .pricing-additionaly-table__td:first-child {
    padding: 0px 16px;
  }
}

.pricing-additionaly-table__td:nth-child(2),
.pricing-additionaly-table__td:nth-child(3) {
  border-right: 1px solid var(--Color-Primary-Gray, #D9D9E0);
}

.pricing-features {
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.pricing-features__table {
  border-collapse: separate;
  border: 1px solid var(--Color-Primary-Gray, #D9D9E0);
}

.pricing-features__table thead>tr>th {
  border-bottom: 1px solid var(--Color-Primary-Gray, #D9D9E0) !important;
  height: 72px;
  background: var(--Color-Primary-Gray, #D9D9E0);
}

.pricing-features__table thead>tr>th:not(:first-child) {
  padding: 16px;
}

.pricing-features__table thead>tr>th:first-child {
  padding: 16px 24px;
  border-radius: 24px 0px 0px 0px;
}

@media (max-width: 767.98px) {
  .pricing-features__table thead>tr>th:first-child {
    padding: 12px 16px;
  }
}

.pricing-features__table thead>tr>th:last-child {
  border-radius: 0px 24px 0px 0px;
}

.pricing-features__table tbody>tr {
  transition: background-color 0.3s ease-in;
}

.pricing-features__table tbody>tr:not(:last-child) td {
  border-bottom: 1px solid var(--Color-Primary-Gray, #D9D9E0) !important;
}

.pricing-features__table tbody>tr td:not(:first-child) {
  height: 56px;
  padding: 0 16px;
  text-align: center;
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.pricing-features__table tbody>tr td:not(:first-child) img {
  display: block;
  margin: 0px auto;
}

.pricing-features__table tbody>tr td:not(:last-child) {
  border-right: 1px solid var(--Color-Primary-Gray, #D9D9E0) !important;
}

.pricing-features__table tbody>tr td:first-child {
  height: 56px;
  padding: 0 24px;
  transition: color 0.3s ease-in;
  color: var(--Color-Text-Grey-80, rgba(64, 64, 99, 0.8));
}

.pricing-features__table tbody>tr td:first-child img {
  transition: filter 0.3s ease-in;
}

.pricing-features__table tbody>tr td:first-child div {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .pricing-features__table tbody>tr td:first-child {
    padding: 12px 16px;
  }
}

@media (hover: hover) {
  .pricing-features__table tbody>tr:hover {
    background-color: var(--Color-Primary-Light-Gray, #F3F4F6);
  }

  .pricing-features__table tbody>tr:hover td {
    color: var(--Color-Text-Black-100, #000);
  }

  .pricing-features__table tbody>tr:hover td:first-child img {
    filter: brightness(0) saturate(100%);
  }
}

.tooltip {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
  padding: 20px 16px;
  white-space: pre-line;
  width: 343px;
  max-width: 60vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
  border-radius: 12px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
  font-size: 14px;
  line-height: 20px;
}

.tooltip::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(100% + 6px);
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 6;
  width: 12px;
  height: 12px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .tooltip::after {
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-45%);
    width: 90vw;
    max-width: 220px;
    text-align: left;
  }

  .tooltip::before {
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .tooltip.top::after {
    bottom: calc(50% + 20px);
    top: inherit;
  }

  .tooltip.top::before {
    top: inherit;
    bottom: calc(50% + 14px);
  }
}

/*****************************/
.pricing-subscription {
  padding-top: var(--section-padding);
}

.pricing-subscription__content {
  display: flex;
  padding: 64px 56px;
  border-radius: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  align-items: center;
  gap: 56px;
}

@media (max-width: 1280.98px) {
  .pricing-subscription__content {
    flex-direction: column;
    padding: 40px 32px;
  }
}

@media (max-width: 767.98px) {
  .pricing-subscription__content {
    padding: 32px 24px;
  }
}

.pricing-subscription__left {
  flex: 0 1 46.381579%;
  /* 564/1216 */
  display: flex;
  flex-direction: column;
  align-items: start;
}

.pricing-subscription__title {
  margin-bottom: 16px;
  color: var(--Color-Text-White-100, #FFF);
}

.pricing-subscription__text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
  margin-bottom: 56px;
}

@media (max-width: 767.98px) {
  .pricing-subscription__text {
    margin-bottom: 40px;
  }
}

.pricing-subscription__right {
  flex: 0 1 49.013158%;
  /* 596/1216 */
  display: flex;
  padding: 56px 40px;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--Boarder-Gradient-Stroke, rgba(255, 255, 255, 0.08));
  background: var(--Color-Accent-Lime, #D1F55F);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .pricing-subscription__right {
    padding: 36px 24px;
  }
}

@media (max-width: 767.98px) {
  .pricing-subscription__right {
    padding: 24px 16px;
  }
}

.pricing-subscription-right {
  overflow: hidden;
}

.pricing-subscription-right__li {
  display: flex;
  min-height: 60px;
  height: auto;
  padding: 16px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  color: var(--Color-Text-Black-100, #000);
}

.pricing-subscription-right__li:not(:first-child) {
  margin-top: -4px;
}

.pricing-subscription-right__li::before {
  content: url("./assets/icons/CheckBorder-6.svg");
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .pricing-subscription-right__li {
    padding: 12px;
  }
}

.pricing-subscription-right__li:nth-child(3) {
  transform: rotate(1.096deg);
}

.pricing-subscription-right__li:nth-child(4) {
  transform: rotate(2.61deg);
}

.pricing-subscription-right__li:nth-child(5) {
  transform: rotate(4.979deg) translateY(13px);
}

.pricing-subscription-right__li:nth-child(6) {
  transform: rotate(8.418deg) translateY(40px) translateX(5px);
}

.pricing-subscription-right__li:nth-child(7) {
  transform: rotate(14.234deg) translateY(70px) translateX(10px);
}

/************************************/
.main-response {
  display: none;
  padding: 48px 0px var(--section-padding) 0px;
  border-radius: 0 0 40px 40px;
  background: #FFF;
}

.main-response__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1280.98px) {
  .main-response__content {
    flex-direction: column;
  }
}

.main-response__left {
  flex: 0 1 57%;
  padding-right: 56px;
}

@media (max-width: 1280.98px) {
  .main-response__left {
    padding-right: 0;
  }
}

.main-response__title {
  color: var(--Color-Text-Black-100, #000);
  margin-bottom: 32px;
}

.main-response__list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  margin-bottom: 48px;
}

.main-response__right {
  align-self: stretch;
  flex: 0 1 40%;
}

.button-icon-video {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  transition: all 0.3s ease-in-out;
}

.button-icon-video img:nth-child(1) {
  display: block;
}

.button-icon-video img:nth-child(2) {
  display: none;
}

.button-icon-video._active {
  transform: translate(0, 0);
  right: 42px;
  bottom: 33px;
}


@media(max-width: 991.98px) {
  .button-icon-video {
    width: 64px !important;
    height: 64px !important;
  }
  .button-icon-video._active {
    transform: translate(0, 0);
    right: 32px;
    bottom: 23px;
  }
}
@media(max-width: 767.98px) {
  .button-icon-video {
    width: 48px !important;
    height: 48px !important;
  }
  .button-icon-video._active {
    transform: translate(0, 0);
    right: 22px;
    bottom: 13px;
  }
}
.button-icon-video._active img:nth-child(1) {
  display: none;
}

.button-icon-video._active img:nth-child(2) {
  display: block;
}

.main-response-video {
  border-radius: 24px;
  width: 100%;
  height: auto;
  aspect-ratio: 642/358;
  overflow: hidden;
  position: relative;
}

.main-response-video__preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-response-video__video {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-response-right__wrapper {
  height: 600px;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--Color-Stroke-Grey-10, rgba(137, 137, 158, 0.1));
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

@media (max-width: 1280.98px) {
  .main-response-right__wrapper {
    height: 692px;
    min-height: 692px;
  }
}

/*************BLOG************************/
.main-blog-hero {
  background: #FFF;
}

.main-blog-hero__title {
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
  margin-bottom: 24px;
}

.main-blog-hero__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  text-align: center;
}

.main-blog-hero__text:not(:last-child) {
  margin-bottom: 48px;
}

.main-blog-hero__tags .blog-tag:first-child {
  position: relative;
  margin-right: 16px;
}

.main-blog-hero__tags .blog-tag:first-child::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--Color-Primary-Gray, #D9D9E0);
}

.blog-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-tag {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 46px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.blog-tag._active {
  border-radius: 46px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: var(--Color-Accent-Lime, #D1F55F);
}

.blog-tag:hover {
  border-radius: 46px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: var(--Color-Accent-Lime, #D1F55F);
  cursor: pointer;
}

.blog-tag:active {
  border-radius: 46px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: var(--Color-Accent-Lime, #D1F55F);
}

.posts {
  padding: 64px 0px;
  border-radius: 40px 40px 0px 0px;
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.posts__label {
  margin-bottom: 24px;
}

.posts__title {
  color: var(--Color-Text-Black-100, #000);
  margin-bottom: 40px;
}

.posts__buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .posts__buttons {
    gap: 24px;
    flex-direction: column-reverse;
  }
}

.page-numbers {
  display: flex;
  margin-left: 24px;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767.98px) {
  .page-numbers {
    margin-left: 0;
  }
}
.posts-pagination__current,
.posts-pagination__item,
.posts-pagination__dots {
  display: flex;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
  border: 1px solid transparent;
  /* Body/Small Text */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

.posts-pagination__current {
  border-radius: 40px;
  background: var(--Color-Primary-Dark-Blue, #161625);
  color: var(--Color-Text-White-100, #FFF);
}

.posts-pagination__item:hover {
  border-radius: 40px;
  border: 1px solid var(--Color-Primary-Purple-Gray, #89899E);
}

.posts-pagination__item.not-link {
  cursor: default;
}

.posts-pagination__item.not-link:hover {
  color: var(--Color-Text-Black-100, #000);
  background-color: transparent;
  border: none;
}

body.blog-page {
  background-color: #FFF;
}

.post-last {
  transition: all 0.3s ease-in-out;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  background: #FFF;
  position: relative;
}

@media (max-width: 767.98px) {
  .post-last {
    flex-direction: column;
  }
}

.post-last:hover .post-last__arrow {
  opacity: 1;
}

.post-last__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  height: 100%;
  z-index: 1;
}

.post-last__image {
  flex: 0 1 50%;
  overflow: hidden;
}

.post-last__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px 0px 0px 24px;
}

@media (max-width: 767.98px) {
  .post-last__image img {
    border-radius: 24px 24px 0px 0px;
  }
}

.post-last__content {
  position: relative;
  flex: 0 1 51%;
  margin-left: -24px;
  display: flex;
  padding: 40px 56px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #FFF;
}

@media (max-width: 991.98px) {
  .post-last__content {
    padding: 40px;
  }
}

@media (max-width: 767.98px) {
  .post-last__content {
    margin-left: 0;
    padding: 32px;
    margin-top: -24px;
  }
}

@media (max-width: 487.98px) {
  .post-last__content {
    padding: 32px 16px;
    gap: 0px;
  }
}

@media (max-width: 487.98px) {
  .post-last__label {
    margin-bottom: 12px;
  }
}

.post-last__title {
  color: var(--Color-Text-Black-100, #000);
}

@media (max-width: 487.98px) {
  .post-last__title {
    margin-bottom: 20px;
  }
}

.post-last__text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
  .post-last__text {
    margin-bottom: 12px;
  }
}

@media (max-width: 767.98px) {
  .post-last__text {
    margin-bottom: 0;
  }
}

@media (max-width: 487.98px) {
  .post-last__text {
    margin-bottom: 20px;
  }
}

.post-last__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

@media (max-width: 767.98px) {
  .post-last__arrow {
    width: 48px !important;
    height: 48px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}

.post-last__arrow::after {
  display: none;
}

.posts__grids {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

@media (max-width: 991.98px) {
  .posts__grids {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.post {
  display: flex;
  flex-direction: column;
  position: relative;
}

.post:hover .post__arrow {
  opacity: 1;
}

.post:hover .post__title {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.post__image {
  height: 240px;
  overflow: hidden;
  align-self: stretch;
}

.post__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px 24px 0px 0px;
}

.post__content {
  position: relative;
  margin-top: -24px;
  display: flex;
  padding: 24px 24px 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  background: #FFF;
}

@media (min-width: 991.98px) {
  .post__content {
    height: 275px;
  }
}
.post__title-wrapper {
  flex: 0 1 100%;
}
.post__title {
  align-self: stretch;
  color: var(--Color-Text-Black-100, #000);
}

@media (min-width: 991.98px) {
  .post__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.post__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  width: 56px !important;
  height: 56px !important;
  bottom: 16px !important;
  right: 16px !important;
}

.post__arrow::after {
  display: none;
}

.other-categories {
  background: #FFF;
}

.other-categories__title {
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .other-categories__title {
    margin-bottom: 24px;
  }
}

.other-categories__tags {
  justify-content: start;
}

.back-to-blog {
  display: flex;
  margin: 16px 0px;
  padding: 0 24px;
  align-items: center;
  gap: 6px;
  border-radius: 46px;
  color: var(--Color-Text-Grey-100, #404063);
  /* Body/Small Text */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}
.post-page {
  background-color: #fff;
}
.post-page__image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 64px;
}

.post-page__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .post-page__image {
    margin-bottom: 48px;
  }
}

.post-page__content {
  margin: 0 auto;
  max-width: 800px;
}

.post-page__cta {
  max-width: 800px;
  margin: 64px auto 0 auto;
  display: flex;
  padding: 48px 40px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--Color-Accent-Lime, #D1F55F);
  color: var(--Color-Text-Black-100, #000);
  /* Body/Bold Text */
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.36px;
  position: relative;
}

.post-page__cta a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.post-page__cta p {
  max-width: 640px;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .post-page__cta {
    padding: 40px 32px;
  }
}

.post-page__cta-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.post-page__cta-arrow::after {
  display: none;
}

.post-page__related-posts {
  border-radius: 40px;
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.post-page-hero__title {
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
  max-width: 900px;
  margin: 24px auto;
}

.post-page-hero__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
  /* Body/Small Text */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
  margin: 0 auto;
}

.post-page-hero__info span {
  background: var(--Color-Primary-Gray, #D9D9E0);
  width: 1px;
  flex: 0 1 auto;
  height: 24px;
  display: inline-block;
}

@media (max-width: 487.98px) {
  .post-page-hero__info span {
    width: 48px;
    height: 1px;
  }
}

@media (max-width: 487.98px) {
  .post-page-hero__info {
    display: flex;
    flex-direction: column;
  }
}

.post-page-hero__user {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.post-page-hero__user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-page-hero__user-content p:first-child {
  color: var(--Color-Text-Grey-100, #404063);
  /* Body/Small Text */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

.post-page-hero__user-content p:last-child {
  color: var(--Color-Text-Black-100, #000);
  /* Body/Bold Text */
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.36px;
  position: relative;
  z-index: 10;
  display: inline-block;
}

.post-page-hero__user-content p:last-child::after {
  content: "";
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: -1;
  background: var(--Color-Accent-Lime-50, rgba(209, 245, 95, 0.5));
}

.post-page__author-info {
  max-width: 800px;
  margin: 64px auto var(--section-padding) auto;
}

.author-info {
  display: flex;
  padding: 48px 40px;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

@media (max-width: 767.98px) {
  .author-info {
    padding: 40px 32px;
    flex-direction: column;
  }
}

.author-info__image {
  flex: 0 1 120px;
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  min-width: 120px;
}

.author-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.author-info__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-info__title {
  color: var(--Color-Text-White-100, #FFF);
}

.author-info__text {
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8)) !important;
}

.related-posts__header {
  margin-bottom: 40px;
}

@media (max-width: 487.98px) {
  .related-posts__header {
    margin-bottom: 24px;
  }
}

.related-posts__title {
  color: var(--Color-Text-Black-100, #000);
}

.related-posts__bottom {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 288px;
  margin-top: 40px;
}

@media (max-width: 487.98px) {
  .related-posts__bottom {
    margin-top: 24px;
  }
}

.related-posts .partners__triggers {
  gap: 280px;
}

@media (max-width: 487.98px) {
  .related-posts__slider {
    padding: 0px 16px;
  }
}

.related-posts__pagination {
  position: relative !important;
  max-width: 378px;
  background: var(--Color-Primary-Gray, #D9D9E0) !important;
}

.related-posts__pagination .swiper-pagination-progressbar-fill {
  background: var(--Color-Primary-Dark-Blue, #161625) !important;
}

.related-posts__slide {
  max-width: 389px;
}

@media (min-width: 1248.98px) {
  .related-posts__slide:first-child {
    margin-left: calc((100vw - 1232px) / 2);
  }

  .related-posts__slide:nth-child(3) {
    margin-right: calc((100vw - 1232px) / 2);
  }
}

@media (max-width: 1280.98px) and (min-width: 487.98px) {
  .related-posts__slide:first-child {
    margin-left: 16px;
  }

  .related-posts__slide:nth-child(3) {
    margin-right: 16px;
  }
}

@media (max-width: 487.98px) {
  .related-posts__slide {
    max-width: 100%;
  }
}

.related-posts__slide .post__content {
  height: 285px !important;
}

.related-posts__slide .post__title {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/*********contacts-page*****************************/

.contacts-page .main__logos {
  border-radius: 0px 0px 40px 40px;
}

.supported-portal {
  background-color: #FFF;
}

.supported-portal__content {
  display: flex;
  padding: 80px 56px 96px 56px;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  align-self: stretch;
  position: relative;
  border-radius: 24px;
  background: var(--Color-Primary-Dark-Blue, #161625);
}

@media (max-width: 767.98px) {
  .supported-portal__content {
    padding: 40px 32px 48px 32px;
  }
}

@media (max-width: 487.98px) {
  .supported-portal__content {
    padding: 32px 24px 40px 24px;
  }
}

.supported-portal__title {
  margin-bottom: 32px;
  color: var(--Color-Text-White-100, #FFF);
}

.supported-portal__text {
  max-width: 70%;
  color: var(--Color-Text-White-80, rgba(255, 255, 255, 0.8));
}

.supported-portal__arrow {
  bottom: 48px;
  right: 48px;
  width: 80px !important;
  height: 80px !important;
  position: absolute;
}

.supported-portal__arrow:hover {
  cursor: default !important;
}

.supported-portal__arrow::after {
  display: none;
}

@media (max-width: 767.98px) {
  .supported-portal__arrow {
    bottom: 24px;
    right: 24px;
    width: 64px !important;
    height: 64px !important;
  }
}

@media (max-width: 487.98px) {
  .supported-portal__arrow {
    bottom: 16px;
    right: 16px;
  }
}

.contacts {
  background-color: #FFF;
}

.contacts__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1200.98px) {
  .contacts__content {
    flex-direction: column;
    gap: 40px;
    align-items: start;
  }
}

.contacts__left {
  padding: 24px 0px;
  flex: 0 1 40%;
}

.contacts__title {
  color: var(--Color-Text-Black-100, #000);
  margin-bottom: 24px;
}

.contacts__title span::after {
  content: "";
  height: 28px;
  width: calc(100% - 47px);
  position: absolute;
  bottom: 0px;
  left: 67px !important;
  z-index: -1;
  background: var(--Color-Accent-Lime-50, rgba(209, 245, 95, 0.5));
}

@media (max-width: 991.98px) {
  .contacts__title span::after {
    height: 20px;
  }
}

@media (max-width: 767.98px) {
  .contacts__title span::after {
    left: 40px !important;
    width: calc(100% - 30px);
  }
}

.contacts__text {
  margin-bottom: 78px;
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

@media (max-width: 1200.98px) {
  .contacts__text {
    margin-bottom: 48px;
  }
}

@media (max-width: 487.98px) {
  .contacts__text br {
    display: none;
  }
}

.contacts__follow-us {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.contacts__follow-us-title {
  color: var(--Color-Text-Black-100, #000);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.32px;
}

.contacts__follow-us-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contacts__follow-us-list img {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}

.contacts__right {
  flex: 0 1 57%;
  border-radius: 24px;
  padding: 24px;
  background: var(--Color-Accent-Light-Blue, #E3E3FC);
}

@media (max-width: 1200.98px) {
  .contacts__right {
    width: 100%;
  }
}

.contacts-right__top {
  display: flex;
  gap: 24px;
}

.contacts-right__top div:first-child {
  flex: 0 1 54%;
}

.contacts-right__top div:last-child {
  flex: 0 1 43%;
}

@media (max-width: 767.98px) {
  .contacts-right__top {
    flex-direction: column;
  }
}

.contacts-right-card-address {
  margin-top: 24px;
  display: flex;
  flex-direction: row !important;
  gap: 20px;
  justify-content: space-between !important;
}

@media (max-width: 640.98px) {
  .contacts-right-card-address {
    flex-direction: column !important;
  }
}

.contacts-right-card__right {
  max-width: 325px;
  height: auto;
}

.contacts-right-card__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 640.98px) {
  .contacts-right-card__right {
    max-width: 100%;
    width: 100%;
  }
}

.contacts-right-card {
  border-radius: 20px;
  border: 1px solid var(--Color-Stroke-Grey-30, rgba(137, 137, 158, 0.3));
  background: #FFF;
  display: flex;
  padding: 24px 0 24px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contacts-right-card a:hover {
  color: var(--Color-Additional-Link, #3E58EC);
}

@media (max-width: 640.98px) {
  .contacts-right-card {
    padding: 24px 24px 24px 24px;
  }
}

.contacts-right-card__top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contacts-right-card__title {
  color: var(--Color-Text-Black-100, #000);
  /* Body/Bold Text */
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.36px;
}

.contacts-right-card__text {
  margin-left: 48px;
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.contacts-right-card__badge {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 10px;
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.contacts-right-card__badge img {
  width: 20px;
  height: 20px;
}

/********security-page**********************/
.security-page {
  background: var(--Color-Primary-Light-Gray, #F3F4F6);
}

.security-page .main__logos {
  border-radius: 40px;
}

.security-page-hero {
  border-radius: 0 0 40px 40px;
  background: #FFF;
}

.security-page-hero__title {
  margin-bottom: 32px;
  color: var(--Color-Text-Black-100, #000);
  text-align: center;
}

.security-page-hero__logos {
  padding: 24px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px 81px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.security-page-hero__text {
  color: var(--Color-Text-Grey-80, rgba(64, 64, 99, 0.8));
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  /* 175% */
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.security-page-hero__text span {
  letter-spacing: 3.6px;
}

.security-page-hero__list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--Color-Stroke-Grey-10, rgba(137, 137, 158, 0.1));
  background: #FFF;
}

.faq-item details {
  list-style: none;
}

.faq-item summary {
  -webkit-details-marker: none;
  list-style: none;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .faq-item {
    padding: 24px 16px;
  }
}

.faq-item__title {
  padding-left: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--Color-Text-Black-100, #000);
}

@media (max-width: 767.98px) {
  .faq-item__title {
    padding-left: 0px;
  }
}

.faq-item__content {
  max-width: 968px;
  margin-top: 8px;
  padding: 0px 24px 24px 24px;
}

@media (max-width: 767.98px) {
  .faq-item__content {
    padding: 0px;
  }
}

.faq-item__bottom {
  display: flex;
  margin-top: 16px;
  justify-content: end;
}

.faq-item .button-icon {
  width: 56px;
  height: 56px;
  border-radius: 48px;
}

@media (max-width: 767.98px) {
  .faq-item .button-icon {
    width: 48px;
    height: 48px;
  }
}

.faq-item[open],
.faq-item._active {
  border: 2px solid var(--Color-Accent-Lime, #D1F55F);
}

.faq-item[open] .faq-item__title,
.faq-item._active .faq-item__title {
  padding-top: 24px;
}

.faq-item[open] .faq-item__title .button-icon,
.faq-item._active .faq-item__title .button-icon {
  display: none;
}

@media (max-width: 767.98px) {

  .faq-item[open] .faq-item__title,
  .faq-item._active .faq-item__title {
    padding-top: 0px;
  }
}

/****************features-page*******************/
.features-page .main-hero {
  border-radius: 0 0 40px 40px;
  background: #FFF;
  padding: var(--section-padding) 0px;
}
.features-page .main-demo__image img,
.features-page .main-demo__image video {
  max-width: 100%;
  height: auto;
}
.features-page .main-hero__title {
  max-width: 100%;
}
@media(max-width:991.98px) {
  .features-page .main-hero__text br{
    display: none;
  }
}
.features-page .main-hero__text {
  max-width: 1128px;
}

.features-page .main-demo-image {
  margin: 0px auto 0px auto;
  padding-bottom: var(--section-padding);
}

.features-page .before-solution {
  border-radius: 40px 40px 0 0;
  background: #FFF;
}

.features-page .before-solution__title {
  margin-bottom: 48px;
  max-width: 516px;
}

.features-page .before-solution__text {
  max-width: 516px;
}

@media (max-width: 991.98px) {
  .features-page .before-solution__text {
    max-width: 100%;
  }
}

.features-page .before-solution__card {
  padding: 24px 16px;
  align-items: start;
}

.features-page .before-solution__card:not(:first-child) {
  margin-top: -12px;
}

.features-page .main-subscription__left {
  align-self: stretch;
  padding: 40px 40px 40px 0px;
}

@media (max-width: 767.98px) {
  .features-page .main-subscription__left {
    padding: 32px 16px 32px 0px;
  }
}

.features-page .main-subscription__left p:last-child {
  padding-top: 56px;
  margin-top: auto;
}

@media (max-width: 767.98px) {
  .features-page .main-subscription__left p:last-child {
    padding-top: 32px;
  }

  .features-page .main-subscription__left p:last-child br {
    display: none;
  }
}

.features-page .main-subscription__left .regular-text {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.features-page .main-subscription-right__list {
  display: flex;
  flex-direction: column;
}

.features-page .main-subscription-right__list li {
  border-radius: 5px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 16px;
  color: var(--Color-Text-White-100, #FFF);
}

.features-page .main-subscription-right__list li::before {
  content: url("./assets/icons/Check3.svg");
  width: 24px;
  height: 24px;
  display: block;
}

.features-page .main__testimonial,
.features-page .advantages {
  background: #fff;
}
.advantages__title {
  max-width: 621px;
}

.testimonial.accent .testimonial__content {
  background: var(--Color-Accent-Lime, #D1F55F);
}

@media (min-width: 991.98px) {
  .testimonial.accent .testimonial__content {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.testimonial.accent .testimonial-left__text span {
  color: var(--Color-Text-Black-100, #000);
  font-weight: 600;
}

.testimonial.accent .testimonial-left__text,
.testimonial.accent .testimonial-left__title {
  color: var(--Color-Text-Black-80, rgba(0, 0, 0, 0.8));
}

.testimonial.accent .testimonial-left__user-name {
  color: var(--Color-Text-Black-100, #000);
}

.testimonial.accent .testimonial-left__user-position {
  color: var(--Color-Text-Black-60, rgba(0, 0, 0, 0.6));
}

.features-page__logos-content {
  display: flex;
  padding: 56px 0;
  gap: 81px;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .features-page__logos-content {
    gap: 80px;
    flex-direction: column;
  }
}

.features-page__logos-title {
  max-width: 253px;
  color: var(--Color-Text-Grey-80, rgba(64, 64, 99, 0.8));
  text-align: justify;
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  /* 175% */
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.features-page__logos-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.features-page__logos-list::after {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  background: var(--Color-Primary-Gray, #D9D9E0);
  position: absolute;
  top: 0;
  left: -40px;
}

@media (max-width: 991.98px) {
  .features-page__logos-list::after {
    width: 96px;
    height: 1px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }
}

.features-page__logos-list-item img {
  width: 96px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}

/*# sourceMappingURL=style.css.map */

.logos-bottom-round {
  border-radius: 0px 0px 40px 40px;
}

.explainer-video-text {
  background-color: #fff;
}
.explainer-video-text .regular-text {
  color: var(--Color-Primary-Purple-Gray);
  text-align: center;
  padding-bottom: 32px;
}


