@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBlack.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaExtraBold.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaLight.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaMedium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaSemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaThin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
:root {
  --font-family: "Lufga", sans-serif;
}
:root {
  --primary-primary-800: #3b269d;
  --primary-primary-600: #6432ff;
  --primary-primary-200: #d2cde8;
  --secondary-blue: #1badff;
  --secondary-pink: #e93fe2;
  --text-primary: #051f2e;
  --text-secondary: #375262;
  --text-extra: #a4afb5;
  --text-white: #fff;
  --dark-shades-900: #051f2e;
  --dark-shades-800: #0e2b3b;
  --dark-shades-400: #2c688a;
  --light-shades-300: #e1e7eb;
  --light-shades-200: #f5f7fa;
  --light-shades-white: #fff;
  --gradient-primary: linear-gradient(135.98deg, #6b83f4 0%, #a862eb 100%);
  --gradient-secondary: linear-gradient(90deg, #6835ff 0%, #1aadff 100%);
  --gradient-tertiary: linear-gradient(128.26deg, #a3deff 0%, #fdadf2 100%);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  background: #ffffff1a;
  height: 100%;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

h1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 76px;
  line-height: 121%;
  color: var(--text-primary);
}

h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 45px;
  line-height: 133%;
  text-align: center;
  color: var(--text-white);
}

h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 144%;
  text-align: center;
  color: var(--text-primary);
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-secondary);
}

.wrapper-pricing {
  background: var(--light-shades-white);
  position: relative;
  width: 100%;
}

/* Pricing-block */

#pricing-section {
  background: var(--text-white);
}

.pricing-title h2 {
  color: var(--text-primary);
}

.pricing-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 120px;
}

.due-date {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 56px 0;
  padding: 14px 24px;
  background: url(../img/due-date-background.png) no-repeat center;
  background-size: 100% 100%;
}

.toggle-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.toggle-wrapper span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 168%;
  text-align: right;
  color: var(--text-primary);
}

.toggle {
  display: flex;
  align-items: center;
  position: relative;
  width: 66px;
  height: 32px;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid var(--primary-primary-600);
}

.toggle-circle {
  position: absolute;
  left: 4px;
  width: 26px;
  height: 24px;
  background: var(--primary-primary-600);
  border-radius: 4px;
  box-shadow: 0 10px 46px 0 rgba(10, 46, 66, 0.1);
  transition: transform 0.2s;
}

.toggle.active .toggle-circle {
  transform: translateX(30px);
}

.due-date-line {
  max-width: 195px;
  width: 100%;
  display: flex;
  align-items: center;
}

.due-date-choice {
  display: flex;
  align-items: center;
  gap: 5px;
}

.due-date-choice p {
    font-size: 16px;
    line-height: 175%;
    color: var(--text-primary);
}
.due-date-choice span {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 215%;
    text-transform: uppercase;
    color: var(--primary-primary-600);
}
  
.pricing-blocks {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.custom-plan {
	width: 100%;
	text-align: center;
	padding: 36px;
	margin-top: 48px;
}
@media (max-width: 1285px) {
  .pricing-blocks {
    flex-wrap: wrap;
  }
}
.popular-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #6b83f4 0%, #a862eb 100%);
  border-radius: 8px;
  max-width: 98px;
  width: 100%;
}
.popular-pricing p {
  color: var(--text-white);
  text-transform: uppercase;
}
.pricing-block,
#pricing-block-gradient-border {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  box-shadow: 0 14px 46px 0 rgba(10, 46, 66, 0.12);
  border-radius: 12px;
  max-width: 360px;
  width: 100%;
  background-image: url(../img/pricing-background.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#pricing-block-gradient-border {
  position: relative;
  z-index: 1;
}
.border-gradient-pricing-block {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  height: 100%;
  width: 100%;
  z-index: -10;
}
.border-gradient-pricing-block-mobile {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 100%;
    width: 100%;
    z-index: -10;
    display: none;
}
.pricing-block-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.pricing-name-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 144%;
  text-align: center;
  color: var(--primary-primary-800);
  margin-bottom: 24px;
}

.pricing-purpose {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.pricing-price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 20px;
}

.pricing-price span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 66%;
  color: var(--text-primary);
}

.pricing-price span {
  display: none;
}

.price-cell span {
  color: var(--text-primary);
  display: none;
}

.pricing-price span.visible {
  display: block;
}

.price-cell span.visible {
  display: block;
}

.pricing-period {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.pricing-accordion-item {
  display: none;
}
.pricing-block-discription-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 32px 16px;
  padding: 0;
  position: relative;
}

.pricing-block-discription-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-primary);
  position: relative;
  padding-left: 10px;
}

.pricing-block-discription-list li span {
  font-size: 12px;
}

.pricing-block-discription-list li.flash::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 12.5%;
  background: url(../icon/flash.svg) no-repeat center;
  width: 12px;
  height: 18px;
}

.pricing-block-discription-list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12.5%;
  background: url(../icon/marker-pricing-blue.svg) no-repeat center;
  width: 20px;
  height: 20px;
}

.pricing-block-button {
  border-radius: 8px;
  padding: 10px 28px;
  width: 100%;
  background-color: var(--primary-primary-600);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--text-white);
  transition: background-color 0.3s ease;
  margin: 0 auto;
}
.pricing-block-button:hover {
  background-color: var(--primary-primary-800);
}
.pricing-block-button:active {
  background-color: var(--primary-primary-600);
}

.pricing-price span sup {
  font-size: 40%;
  position: relative;
  top: -0.2em; 
  margin-left: 1px; 
  font-weight: 400;
  line-height: 0;
}

/* Table-section */

#table-section {
  background: var(--light-shades-200);
  width: 100%;
  overflow: hidden;
}
.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 84px;
  position: relative;
}

.table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; 
  position: relative; 
  border-radius: 12px;
  background: var(--light-shades-200);
  border: 1px solid var(--light-shades-300);
  border-left: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--light-shades-300);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.scroll-indicator-progress {
  height: 100%;
  background-color: var(--primary-primary-600);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}

.comparison-table-content {
 
  min-width: 100%;
  border-radius: 12px;
  background: var(--light-shades-white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-left: none;
}

.table-block-1 {
  max-width: 261px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(13, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-right: 1px solid var(--light-shades-300);
  left: 0;
  background: var(--light-shades-white);
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  border-left: 1px solid var(--light-shades-300);
}
.cell-1 {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--light-shades-300);
}
.cell-1:last-child,
.cell-2:last-child,
.cell-3:last-child,
.cell-4:last-child,
.cell-5:last-child {
  border: none;
}
.cell-1 p,
.cell-2 p {
  color: var(--text-primary);
}
.table-block-2,
.table-block-3,
.table-block-4,
.table-block-5 {

  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(13, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-right: 1px solid var(--light-shades-300);
}
.table-block-5 {
  border: none;
}
.cell-2,
.cell-3,
.cell-4,
.cell-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--light-shades-300);
  text-align: center;
}

.cell-2 span.header,
.cell-3 span.header,
.cell-4 span.header,
.cell-5 span.header {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 168%;
  text-align: center;
  color: var(--primary-primary-600);
}

/* Start section */

#start-section {
  background: url(../img/background-start.png) no-repeat center;
  background-size: cover;
}

.start-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.start-wrapper-discription {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.start-wrapper-discription h2,
.start-wrapper-discription p {
  text-align: center;
  color: var(--text-white);
}

.start-wrapper-button {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  max-width: 243px;
  width: 100%;
  background-color: var(--light-shades-white);
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 168%;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 auto;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}
.start-wrapper-button:hover {
    background-color: var(--text-primary);
    color: var(--text-white);
}
.start-wrapper-button:active {
    background-color: var(--light-shades-white);
    color: var(--text-primary);
}

/* Breakpoint */

@media (max-width: 1024px) {
  h1 {
    font-size: 45px;
    line-height: 133%;
  }

  h2 {
    font-size: 36px;
    line-height: 144%;
  }

  p {
    font-size: 13px;
    line-height: 138%;
    color: var(--text-primary);
  }

  /* Pricing-block */

  .pricing-wrapper {
    max-width: 1023px;
    width: 100%;
    padding: 45px 84px 73px;
  }

  .due-date {
    gap: 22px;
    padding: 14px 20px;
    background: url(../img/due-date-background.png) no-repeat center;
    background-size: 100% 100%;
  }

  .due-date-choice p {
     font-size: 13px;
    line-height: 138%;
    color: var(--text-primary); 
  }

.due-date-choice span {
        font-weight: 700;
        font-size: 13px;
        line-height: 215%;
    }

.toggle {
    width: 64px;
}
  .toggle-wrapper span {
    font-size: 16px;
    line-height: 175%;
    color: var(--text-secondary);
  }

  .due-date-line {
    max-width: 57px;
    width: 100%;
  }

  .pricing-blocks {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .pricing-block {
    padding: 32px 12px 12px 12px;
  }

    .popular-pricing {
    max-width: 85px;
    padding: 7px 0;
    }

  .pricing-block-title {
    margin-bottom: 10px;
  }

  .pricing-name {
    font-size: 24px;
    line-height: 150%;
  }

  .pricing-purpose {
    margin-bottom: 24px;
  }

  .pricing-price {
    margin-bottom: 10px;
  }

  .pricing-price span {
    font-size: 45px;
    line-height: 75%;
  }

  .pricing-period {
    margin-bottom: 32px;
  }
  .pricing-block-discription {
    gap: 0;
  }
  .pricing-block-discription-list {
    margin: 0 0 44px 20px;
  }

  .pricing-block-discription-list li {
    font-size: 12px;
    line-height: 150%;
    padding-left: 6px;
  }
	
  .pricing-block-discription-list li span {
    font-size: 10px;
  }

  .pricing-block-discription-list li.flash::before {
    left: -16px;
    top: 5%;
    width: 10px;
    height: 14px;
  }

  .pricing-block-discription-list li::before {
    left: -20px;
    top: 0%;
    width: 20px;
    height: 20px;
  }

  /* Table-section */

  .comparison-table {
    gap: 48px;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 84px;
  }

  .table-block-1 {
    max-width: 204px;
    width: 100%;
  }

  /* Start section */

  #start-section {
    background: url(../img/background-start-tab.png) no-repeat center;
    background-size: cover;
    border-top-right-radius: 0px;
  }

  .start-wrapper {
    max-width: 1024px;
    width: 100%;
    padding: 64px 0 80px;
    gap: 32px;
  }

  .start-wrapper-discription h2 {
    text-align: center;
    color: var(--text-white);
  }
  .start-wrapper-discription p {
    font-size: 16px;
    line-height: 175%;
    text-align: center;
    color: var(--text-white);
  }

  .start-wrapper-button {
    max-width: 220px;
    width: 100%;
    font-size: 19px;
    line-height: 168%;
    color: var(--text-primary);
  }
}

@media (max-width: 951px) {
    .pricing-blocks {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 144%;
  }

  h2 {
    font-size: 36px;
    line-height: 144%;
  }

  p {
    font-size: 13px;
    line-height: 138%;
    color: var(--text-primary);
  }

  /* Pricing-block */

  .pricing-wrapper {
    max-width: 1024px;
    width: 100%;
    padding: 40px 64px;
  }

  .due-date {
    margin: 0 0 32px 0;
    width: 100%;
    gap: 10px;
    padding: 14px 12px;
    /* background: url(../img/due-date-background-mobile.png) no-repeat center; */
    background-size: 100% 100%;
    border-top: 0px solid var(--light-shades-300);
    border-bottom: 0px solid var(--light-shades-300);
  }

  .toggle-wrapper {
    gap: 10px;
  }

  .toggle-wrapper span {
    font-size: 16px;
    line-height: 175%;
  }

  .due-date-line {
    display: none;
  }

  .due-date-choice {
    display: flex;
    align-items: center;
  }
  .due-date-choice p {
    display: none;
  }
  .due-date-choice span {
    font-size: 11px;
    line-height: 255%;
    margin: 2px 0 0 8px;
  }

  .pricing-blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
  }

    .pricing-block,
    #pricing-block-gradient-border {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: url(../img/2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 14px 46px 0 rgba(10, 46, 66, 0.12);
    max-width: 100%;
    position: relative;
    border: 1px solid var(--light-shades-300);
    border-radius: 12px;
  }

  #pricing-block-gradient-border {
      border: none;
  }

  #pricing-block-gradient-border::before {
     content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1.5px; 
  background: linear-gradient(to right, #A3DEFF 0%, #FDADF2 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -10; 
  }

  .border-gradient-pricing-block {
      display: none;
  }
  .border-gradient-pricing-block-mobile {
      display: none;
  }

  .popular-pricing {
      left: 20%;
  }

  .pricing-block-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .pricing-name-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-price-period {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .pricing-name {
    font-size: 24px;
    line-height: 140%;
    text-align: left;
    margin-bottom: 0;
  }

  .pricing-purpose {
    text-align: left;
  }

  .pricing-price {
    display: flex;
    justify-content: center;
  }
  .pricing-price > img {
    margin-bottom: 14px;
  }
  .pricing-price span {
    font-size: 45px;
    line-height: 133%;
  }

  .pricing-period {
    text-align: center;
    margin-top: 2px;
    margin: 2px 0 0 0;
    order: 3;
  }

  .pricing-accordion-item {
    display: block;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 180px;
    width: 100%;
  }
  .pricing-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    outline: none;
    background: transparent;
    gap: 13px;
  }
  .pricing-accordion-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 137%;
    letter-spacing: 0.02em;
    color: var(--primary-primary-600);
    text-align: left;
  }
  .pricing-accordion-icon {
    transition: transform 0.3s ease;
  }
  .pricing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 10px 0 0 0;
  }

  .pricing-accordion-item.active .pricing-accordion-content {
    max-height: 200px;
    height: 100%;
    margin: 10px 0 0 0;
  }

  .pricing-accordion-item.active .pricing-accordion-icon {
    transform: rotate(180deg);
  }

  .pricing-block-discription {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .pricing-block-discription-list {
    display: none;
  }
  .pricing-block-discription-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 0 16px;
    padding: 0;
    position: relative;
  }

  .pricing-block-discription-list-mobile li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 138%;
    color: var(--text-primary);
    position: relative;
    padding-left: 10px;
  }
	
  .pricing-block-discription-list-mobile li span {
    font-size: 10px;
  }

  .pricing-block-discription-list-mobile li.flash::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 0%;
    background: url(../icon/flash.svg) no-repeat center;
    width: 12px;
    height: 18px;
  }

  .pricing-block-discription-list-mobile li::before {
    content: "";
    position: absolute;
    left: -17px;
    top: -2px;
    background: url(../icon/marker-pricing-blue.svg) no-repeat center;
    width: 20px;
    height: 20px;
  }

  .pricing-block-button {
    border-radius: 12px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 157%;
  }

  /* Table-section */

  #table-section {
    background: var(--light-shades-200);
  }
  .scroll-indicator {
    opacity: 1;
  }
  /* .comparison-table {
    gap: 0px;
    max-width: 393px;
    width: 100%;
    padding: 40px 0 40px 20px;
  } */
  .table-scroll-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-left: 1px solid var(--light-shades-300);
  }
  .comparison-table-content {
    width: 1000px; 
    border-radius: 0px;
  }
  .comparison-table-title {
    display: none;
  }
  .table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
  }

  .comparison-table-content {
    width: max-content;
    min-width: 100%;
    background: var(--light-shades-white);
    display: flex;
  }

  .comparison-table-content::-webkit-scrollbar {
    height: 4px;
  }
  .comparison-table-content::-webkit-scrollbar-track {
    background: var(--light-shades-200);
    border-radius: 2px;
  }

  .comparison-table-content::-webkit-scrollbar-thumb {
    background: var(--primary-primary-600);
    border-radius: 2px;
  }
  .table-block-1 {
    max-width: 153px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-right: 1px solid var(--light-shades-300);
    border-left: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    overflow: hidden;
  }
  .cell-1 {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid var(--light-shades-300);
  }
  .cell-1:last-child,
  .cell-2:last-child {
    border: none;
  }
  .cell-1 p,
  .cell-2 p {
    font-size: 13px;
    line-height: 138%;
  }
  .table-block-2 {
    max-width: 77px;
    width: 100%;
  }
  .table-block-3 {
    max-width: 111px;
    width: 100%;
  }
  .table-block-4 {
    max-width: 114px;
    width: 100%;
  }
  .table-block-5 {
    max-width: 146.5px;
    width: 100%;
  }
  .table-block-5 {
    border: none;
  }
  .cell-2,
  .cell-3,
  .cell-4,
  .cell-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-bottom: 1px solid var(--light-shades-300);
  }

  .cell-2 span,
  .cell-3 span,
  .cell-4 span,
  .cell-5 span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    text-align: center;
    color: var(--primary-primary-600);
  }

  /* Start section */

  #start-section {
    background: url(../img/background-start.png) no-repeat center;
    background-size: cover;
  }

  .start-wrapper {
    max-width: 393px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .start-wrapper-discription {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .start-wrapper-discription h2,
  .start-wrapper-discription p {
    text-align: center;
    color: var(--text-white);
  }

  .start-wrapper-button {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    max-width: 243px;
    width: 100%;
    background: var(--light-shades-white);
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 19px;
    line-height: 168%;
    letter-spacing: 0.02em;
    color: #572aff;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {

      .pricing-wrapper {
    max-width: 1024px;
    width: 100%;
    padding: 40px 20px;
  }

    .comparison-table {
    gap: 0px;
    max-width: 393px;
    width: 100%;
    padding: 40px 0 40px 20px;
  }
}
