@font-face {
  font-family: SFProDisplay;
  font-weight: normal;
  font-style: normal;
  src: url('../public/fonts/SFProDisplay/SFProDisplayRegular.otf')
    format('opentype');
  font-display: swap;
}

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

a {
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

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

html,
body {
  scroll-behavior: smooth;
  height: 100%;
  line-height: 1;
  background: #ffffff;
  font-size: 16px;
  color: #181818;
  font-weight: 400;
  font-family: 'SFProDisplay', sans-serif;
}

/* ---------------------------------------------------------------------------- */
.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* ---------------------------------------------------------------------------- */
.wrapper_half {
  min-height: 30%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* ---------------------------------------------------------------------------- */
.container {
  max-width: 1046px;
  padding: 0px 15px;
  margin: 0px auto;
  box-sizing: content-box;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #036af5;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.button-border {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  outline: none;
  border: 1px solid #036af5;
  background: none;
  color: #036af5;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.button:hover {
  background: #6baaff;
}

.button-square {
  border-radius: 10px;
}

.button-circle {
  border-radius: 25px;
}

.button-circle:disabled {
  background: #6baaff;
  cursor: default;
}

.h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.text {
  margin-top: 10px;
  font-weight: 300;
  line-height: 1.5;
}

.text-gray {
  color: #554f4f;
}

.text-12 {
  font-family: SFProDisplay, sans-serif;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 1277px) {
  .text-12 {
    font-size: 13px;
  }
}

@media (max-width: 1205px) {
  .text-12 {
    font-size: 12px;
  }
}

@media (max-width: 1132px) {
  .text-12 {
    font-size: 11px;
  }
}

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

@media screen and (max-width: 930px) {
  .h2 {
    font-size: 24px;
  }

  .h3 {
    font-size: 18px;
  }

  .text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .h2 {
    font-size: 20px;
  }

  .h3 {
    font-size: 16px;
  }

  .h3.mailing {
    font-size: 20px !important;
    padding: 0 40px;
    text-align: center;
  }

  .text {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------------------- */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  border-bottom: 2px solid #efefef;
}

.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2;
}

.header__body {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  color: #181818;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 3;
}

.header__burger {
  display: none;
}

.header__list {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header__item {
  margin: 0 0 0 20px;
}

.header__link {
  color: #181818;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}

.header__link:hover,
.header__link.active {
  border-bottom: 2px solid #3386f7;
}

.header__button {
  text-transform: uppercase;
  font-size: 14px;
}

@media screen and (max-width: 930px) {
  .header__link,
  .header__button {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  body.lock {
    overflow: hidden;
  }

  .header__body {
    height: 50px;
  }

  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 3;
  }

  .header__burger span {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #181818;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before,
  .header__burger:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #181818;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger.active span {
    transform: scale(0);
  }

  .header__burger.active:before {
    top: 9px;
    transform: rotate(45deg);
  }

  .header__burger.active:after {
    bottom: 9px;
    transform: rotate(-45deg);
  }

  .header__menu {
    background: #ffffff;
    position: fixed;
    width: 100%;
    height: 370px;
    top: -300px;
    left: 0;
    padding: 70px 0 0 0;
    transition: all 0.3s ease 0s;
    overflow: auto;
    border-bottom: 2px solid #efefef;
  }

  .header__menu.active {
    top: 0;
  }

  .header__list {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
  }

  .header__item {
    margin: 0 0 20px 0;
  }

  .header__link,
  .header__button {
    font-size: 14px;
  }

  .header__button {
    width: 150px;
  }
}

/* ---------------------------------------------------------------------------- */
.page {
  padding: 80px 0 0 0;
}

@media screen and (max-width: 767px) {
  .page {
    padding: 50px 0 0 0;
  }
}

/* ---------------------------------------------------------------------------- */
.main {
  padding: 30px 0;
  background: #ffffff;
}

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

.main__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 70%;
}

.main__icon {
  margin: 0 10px 20px 0;
  width: 48px;
  height: 48px;
}

.main__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.main__subtitle {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.main__list {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.main__item {
  padding: 10px 20px;
  font-size: 20px;
}

.main__img {
  margin-top: 20px;
  width: 1046px;
}

@media screen and (max-width: 930px) {
  .main__body {
    width: 80%;
  }

  .main__icon {
    height: 40px;
    width: 40px;
  }

  .main__title {
    font-size: 24px;
  }

  .main__subtitle {
    margin-top: 10px;
    font-size: 16px;
  }

  .main__list {
    margin-top: 10px;
  }

  .main__item {
    font-size: 16px;
  }

  .main__img {
    margin-top: 10px;
    width: 768px;
  }
}

@media screen and (max-width: 767px) {
  .main__body {
    width: 90%;
  }

  .main__icon {
    height: 24px;
    width: 24px;
  }

  .main__title {
    font-size: 18px;
  }

  .main__subtitle {
    margin-top: 10px;
    font-size: 14px;
  }

  .main__list {
    margin-top: 10px;
  }

  .main__item {
    font-size: 14px;
  }

  .main__img {
    margin-top: 10px;
    width: 90%;
  }
}

/* ---------------------------------------------------------------------------- */
.main-product {
  padding: 40px 0;
  background: #ffffff;
}

.main-product__body {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.main-product__text {
  width: 45%;
}

.main-product__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.main-product__subtitle {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.2;
}

.main-product__button {
  width: 300px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.2;
}

.main-analytics__img {
  width: 530px;
}

.main-autoprice__img {
  height: 604px;
  width: 300px;
}
.main-mailing__img {
  height: 604px;
  width: auto;
  border-radius: 30px;
}

.main-course__img {
  border-radius: 10px;
  width: 530px;
}

@media screen and (max-width: 930px) {
  .main-product__title {
    font-size: 24px;
  }

  .main-product__subtitle {
    margin-top: 10px;
    font-size: 16px;
  }

  .main-product__button {
    margin-top: 10px;
    font-size: 16px;
  }

  .main-analytics__img {
    margin-top: 10px;
    width: 50%;
  }

  .main-autoprice__img {
    height: 40%;
    margin-top: 10px;
    width: 40%;
  }

  .main-course__img {
    margin-top: 10px;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .main-product__body {
    align-items: center;
    flex-direction: column;
  }

  .main-product__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
  }

  .main-product__title {
    font-size: 18px;
    text-align: center;
  }

  .main-product__subtitle {
    font-size: 14px;
    text-align: center;
  }

  .main-product__button {
    width: 90%;
    font-size: 14px;
  }

  .main-analytics__img {
    margin-top: 20px;
    width: 90%;
  }

  .main-autoprice__img {
    margin-top: 20px;
    height: 60%;
    width: 60%;
  }

  .main-course__img {
    margin-top: 20px;
    width: 90%;
  }
}

/* ---------------------------------------------------------------------------- */
.cases {
  background: #f5f5f7;
}

.cases__body {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.cases__subtitle {
  padding: 30px 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.cases__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #cccccc;
  padding: 30px 0;
}

.cases__text {
  width: 80%;
}

.cases__line-before {
  margin-top: 20px;
  border-radius: 10px;
  height: 10px;
  width: 25%;
  background: #cccccc;
}

.cases__line-after {
  margin-top: 20px;
  border-radius: 10px;
  height: 10px;
  background: #32d74b;
}

.cases__line-after__1 {
  width: calc(25% * 1.9);
}

.cases__line-after__2 {
  width: calc(25% * 4);
}

.cases__percent {
  font-weight: 600;
  font-size: 40px;
  color: #057f18;
}

@media screen and (max-width: 930px) {
  .cases__body {
    padding: 20px 0;
    width: 100%;
  }

  .cases__subtitle {
    padding: 20px 0;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .cases__subtitle {
    padding: 10px 0;
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------------------- */
.review {
  background: #ffffff;
}

.review__body {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review__menu {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

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

.review__item {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  border-radius: 20px;
  background: #f5f5f7;
  border: 2px solid #cccccc;
}

.review__icon {
  position: relative;
  top: 25px;
  height: 50px;
  width: 50px;
}

.review__text {
  margin-top: 20px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 930px) {
  .review__body {
    padding: 30px 0;
  }

  .review__menu {
    margin-top: 30px;
  }

  .review__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .review__body {
    padding: 20px 0;
  }

  .review__menu {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .review__items {
    width: 100%;
  }

  .review__item {
    padding: 40px 10px;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------- */
.faq {
  background: #f5f5f7;
}

.faq__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__menu {
  margin-top: 40px;
  width: 100%;
}

.faq__item {
  padding: 20px 0;
  border-top: 1px solid #dddddd;
}

.faq__item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item-title-text {
  width: 85%;
}

.faq__item-button {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
  background: none;
}

.faq__item-icon path {
  transform-origin: 50% 50%;
  fill: #181818;
  transition: transform 0.3s;
}

.faq__item-icon__active path {
  transform-origin: 50% 50%;
  fill: #181818;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.faq__item-button:hover {
  background: #3386f7;
}

.faq__item-icon:hover path {
  fill: #ffffff;
}

.faq__item-icon__active:hover path {
  fill: #ffffff;
}

.faq__item-body {
  opacity: 0;
  display: none;
  transition: all 0.3s ease 0s;
}

.faq__item-body__active {
  opacity: 1;
  display: block;
  width: calc(100% - 50px);
}

@media screen and (max-width: 930px) {
  .faq__body {
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .faq__body {
    padding: 20px 0;
  }
}

/* ---------------------------------------------------------------------------- */
.footer {
  background: #181818;
}

.footer__body {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  font-weight: 200;
}

.footer__logo {
  color: #ffffff;
}

.footer__menu {
  display: flex;
}

.footer__item {
  margin-left: 20px;
}
.footer__item {
  font-size: 14px;
}

.footer__link {
  text-align: center;
  color: #ffffff;
}

.footer__link:hover {
  color: #cccccc;
}

@media screen and (max-width: 930px) {
  .footer__body {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .footer__body {
    font-size: 10px;
  }

  .footer__item {
    margin-left: 10px;
  }
}

/* ---------------------------------------------------------------------------- */
.author {
  background: #f5f5f7;
}

.author__container {
  padding: 40px 0;
}

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

.author__info {
  width: 100px;
}

.author__img {
  width: 100px;
}

.author__name {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.author__text {
  width: calc(90% - 30px);
  padding-bottom: 40px;
}

.author__subtitle {
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 930px) {
  .author__container {
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .author__container {
    padding: 20px 0;
  }

  .author__body {
    margin-top: 20px;
    flex-direction: column;
  }

  .author__text {
    margin-top: 20px;
  }

  .author {
    font-size: 14px;
  }

  .author__subtitle {
    text-align: center;
  }
}

/* ---------------------------------------------------------------------------- */
.about {
  background: #ffffff;
}

.about__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__h3 {
  margin-top: 30px;
  line-height: 1.5;
}

.about__menu {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

.about__item {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #efefef;
}

.about__icon {
  width: 50px;
  height: 50px;
}

.about__title {
  margin-left: 20px;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 930px) {
  .about__body {
    padding: 30px 0;
  }
  .about__menu {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about__body {
    padding: 20px 0;
  }

  .about__menu {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about__item {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------- */
.result {
  background: #f5f5f7;
}

.result-ac {
  background: #ffffff;
}

.result__container {
  padding: 40px 0;
}

.result__menu {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}

.result__menu__screen {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.result__item,
.result__item-ac {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result__item {
  background: #ffffff;
  border: 2px solid #efefef;
}

.result__item-ac {
  background: #f5f5f7;
  border: 2px solid #cccccc;
}

.result__h3 {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.result__icon {
  width: 50px;
  height: 50px;
}

.result__text {
  text-align: center;
  margin-top: 20px;
  font-weight: 300;
  line-height: 1.3;
}

/*--------*/
.result__text__screen {
  text-align: left;
  margin-top: 20px;
  width: 300px;
  font-weight: 300;
  line-height: 1.3;
  word-break: break-word;
}

@media screen and (max-width: 930px) {
  .result__container {
    padding: 30px 0;
  }

  .disadvantages__item,
  .advantages__item {
    margin-top: 10px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .result__container {
    padding: 20px 0;
  }

  .result__menu {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .result__item,
  .result__item-ac {
    padding: 20px;
    margin-top: 0;
    width: 100%;
  }

  .result__text {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------------------- */
.advantages {
  background: #f5f5f7;
}

.disadvantages {
  background: #ffffff;
}

.disadvantages__body,
.advantages__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disadvantages__menu,
.advantages__menu {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.disadvantages__item,
.advantages__item {
  border-radius: 20px;
  padding: 40px;
}

.disadvantages__item-title,
.advantages__item-title {
  display: flex;
  align-items: center;
}

.disadvantages__h3,
.advantages__h3 {
  margin-left: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.disadvantages__item {
  background: #f5f5f7;
  border: 2px solid #cccccc;
}

.advantages__item {
  background: #ffffff;
  border: 2px solid #efefef;
}

@media screen and (max-width: 930px) {
  .disadvantages__body,
  .advantages__body {
    padding: 30px 0;
  }

  .disadvantages__item,
  .advantages__item {
    margin-top: 10px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .disadvantages__body,
  .advantages__body {
    padding: 20px 0;
  }

  .disadvantages__menu,
  .advantages__menu {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .disadvantages__item,
  .advantages__item {
    margin-top: 0;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------- */
.tariff {
  background: #ffffff;
}

.tariff__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariff__subtitle {
  margin-top: 10px;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

.tariff__buttons-menu {
  margin-top: 50px;
  display: flex;
}

.tariff__button-term {
  cursor: pointer;
  font-size: 16px;
  font-weight: 200;
  background: none;
  border-bottom: 2px solid #b3b3b3;
  color: #554f4f;
  padding: 20px 30px;
}

.tariff__button-term:hover {
  color: #181818;
  border-bottom: 2px solid #181818;
}

.tariff__button-term__active {
  color: #036af5;
  border-bottom: 2px solid #036af5;
}

.tariff__menu {
  margin-top: 50px;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.tariff__menu-ac {
  margin-top: 30px;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.tariff__item-ac {
  width: 40%;
  background: #f5f5f7;
  border: 2px solid #efefef;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.tariff__item {
  width: 23%;
  background: #f5f5f7;
  border: 2px solid #efefef;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
  position: relative;
}

.tariff__item:hover,
.tariff__item-ac:hover {
  transform: scale(105%);
}

.tariff__popular__icon__container {
  position: absolute;
  overflow: hidden;
  height: 150px;
  right: 0;
  top: 0;
}

.tariff__popular__icon {
  margin-top: 27px;
  margin-right: -37px;
  height: 25px;
  width: 150px;
  transform: rotate(45deg);
  overflow: hidden;
}

.text__light {
  color: #554f4f;
  margin-top: 10px;
  font-weight: 200;
  text-align: center;
}

.tariff__price {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 600;
}

.tariff__price-ac {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 600;
}

.tariff__capacity-ac {
  text-align: center;
  height: 50%;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 300;
}

.tariff__capacity {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.tariff__desc-menu {
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.tariff__desc-item {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  background: #f5f5f7;
  border: 2px solid #cccccc;
}

.tariff__desc-text {
  text-align: center;
  font-family: 200;
  font-size: 12px;
}

.tariff__button-ac {
  margin-top: 20px;
}

@media screen and (max-width: 930px) {
  .tariff__body {
    padding: 30px 0;
  }

  .tariff__menu {
    margin-top: 30px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tariff__item {
    width: 100%;
  }

  .tariff__desc-menu {
    margin-top: 10px;
  }

  .tariff__button-ac {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tariff__body {
    padding: 20px 0;
  }

  .tariff__menu {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .tariff__menu-ac {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
  }

  .tariff__item-ac {
    margin-top: 20px;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
  }

  .tariff__capacity-ac {
    text-align: center;
    height: 50%;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 300;
  }

  .tariff__desc-menu {
    margin-top: 0;
  }

  .tariff__desc-item {
    margin: 10px 0 5px 5px;
  }

  .tariff__button-term {
    padding: 10px 20px;
  }
}
/* ---------------------------------------------------------------------------- */

.video-reviews {
  background: #ffffff;
}

.video-reviews__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-reviews__menu {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.video-reviews__gradient {
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6475840336134453) 0%,
    rgba(5, 5, 5, 0) 40%,
    rgba(5, 5, 5, 0) 60%,
    rgba(0, 0, 0, 1) 100%
  );
  background-blend-mode: overlay;
  position: absolute;
  z-index: 1;
  align-content: end;
}

.video-reviews__overflow-text {
  padding: 15px 15px 35px 15px;
  color: white;
}

.video-reviews__bottom-text-block {
  margin: 20px 0 20px 0;
  /*display: flex; 
  justify-content: space-between; 
  text-align: end;*/
}

.video-reviews__bottom-common-text {
  font-weight: 600;
  font-size: 14px;
}

.video-reviews__bottom-blue-text {
  color: #036af5;
  font-size: 26px;
  font-weight: 700;
}

.video-reviews__center-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.video-reviews__bottom-gray-text {
  color: #bebebe;
  font-size: 14px;
  text-align: end;
}

.video-reviews__strong-text {
  font-size: 16px;
}

.video-reviews__text {
  font-size: 12px;
}

.video-reviews__item {
  width: 40%;
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  flex-direction: column;
}

.video-reviews__video-card {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  flex-direction: column;
}

.video-reviews__button {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
  border-radius: 6px;
  z-index: -1;
}

.video-review__controls {
  position: absolute;
  align-self: flex-end;
  padding: 10px;
  z-index: 2;
}

.video-reviews__icon {
  height: 50px;
  width: 50px;
  margin-bottom: 20px;
}

.video-review {
  width: 100%;
}

@media screen and (max-width: 930px) {
  .video-reviews__body {
    padding: 30px 0;
  }

  .video-reviews__menu {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .video-reviews__body {
    padding: 20px 0;
  }

  .video-reviews__menu {
    margin-top: 20px;
    align-items: center;
    flex-direction: column;
  }

  .video-reviews__item {
    padding: 10px;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------- */
.services {
  background: #ffffff;
}

.services__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__menu {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.services__item {
  width: 30%;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__icon {
  height: 50px;
  width: 50px;
  margin-bottom: 20px;
}

.text {
  margin-top: 10px;
  font-weight: 300;
  line-height: 1.5;
}
.dd_icon {
  width: 50px;
  height: 50px;
}
.text-gray {
  margin-top: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: #554f4f;
}

@media screen and (max-width: 930px) {
  .services__body {
    padding: 30px 0;
  }

  .services__menu {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .services__body {
    padding: 20px 0;
  }

  .services__menu {
    margin-top: 20px;
    align-items: center;
    flex-direction: column;
  }

  .services__item {
    padding: 10px;
    width: 100%;
  }
}
/* ---------------------------------------------------------------------------- */
.newsletter__body {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #d1e7ff;
  border-radius: 10px;
}

.newsletter__content {
  width: 50%;
}

.newsletter__title {
  font-size: 24px;
  text-align: center;
}

.newsletter__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.newsletter__item {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter__icon {
  height: 50px;
  width: 50px;
  margin-bottom: 10px;
}

.newsletter__image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.newsletter__image img {
  max-width: 50%;
  height: auto;
}

.chat-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 50px auto;
  max-width: 600px;
}

.chat-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.chat__box {
  font-size: 18px;
  color: #333;
  text-align: left;
  background: #d1e7ff;
  padding: 15px;
  border-radius: 10px;
  max-width: 90%;
  margin: 5px 0;
}

.chat__text {
  word-wrap: break-word;
}

.chat__img {
  display: flex;
  max-width: 300px;
}

@media (max-width: 768px) {
  .newsletter__content {
    width: 100%;
  }

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

  .chat-container {
    flex-direction: column;
    max-width: 100%;
  }

  .chat-column {
    width: 100%;
  }

  .chat__box {
    font-size: 16px;
  }
}

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

  .newsletter__icon {
    height: 40px;
    width: 40px;
  }

  .chat__box {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------------------- */
.steps {
  background: #f5f5f7;
}

.steps__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps__body-menu {
  display: flex;
  justify-content: center;
}

.steps__line {
  position: relative;
  left: 27px;
  margin-top: 100px;
  display: flex;
  height: 750px;
  background: #3386f7;
  z-index: 0;
  width: 4px;
}
.steps__line-ta {
  position: relative;
  left: 27px;
  margin-top: 100px;
  display: flex;
  height: 650px;
  background: #3386f7;
  z-index: 0;
  width: 4px;
}
.steps__menu {
  z-index: 1;
  width: 60%;
  margin-top: 30px;
}

.steps__item {
  display: flex;
  margin-top: 50px;
}

.steps__item-body {
  margin-top: 12px;
  margin-left: 30px;
}

.steps__item-icon {
  height: 50px;
  width: 50px;
}

#orders__count,
#orders__total__price {
  white-space: nowrap;
}

@media screen and (max-width: 930px) {
  .steps__line {
    height: 750px;
  }
  .steps__line-ta {
    height: 650px;
  }
}

@media screen and (max-width: 880px) {
  .steps__line {
    height: 770px;
  }
}

@media screen and (max-width: 830px) {
  .steps__line {
    height: 760px;
  }
}

@media screen and (max-width: 767px) {
  .steps__line {
    height: 720px;
  }
}

@media screen and (max-width: 650px) {
  .steps__line {
    height: 750px;
  }
}
@media screen and (max-width: 616px) {
  .steps__line-ta {
    height: 670px;
  }
}
@media screen and (max-width: 500px) {
  .steps__line {
    height: 1000px;
  }
  .steps__line-ta {
    height: 720px;
  }
}

@media screen and (max-width: 420px) {
  .steps__line {
    height: 1100px;
  }
  .steps__line-ta {
    height: 900px;
  }
}

@media screen and (max-width: 375px) {
  .steps__line {
    height: 1200px;
  }
  .steps__line-ta {
    height: 940px;
  }
}

/* ---------------------------------------------------------------------------- */
.request {
  background: #f5f5f7;
}

.request__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.request__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  border: 5px solid #3386f7;
}

.request__subtitle {
  text-align: center;
  margin-top: 30px;
  font-weight: 300;
  line-height: 1.5;
}

.request__form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  width: 100%;
}

.request__form-group {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form__input {
  background: none;
  padding: 10px 0;
  outline: none;
  line-height: 1.5;
  font-size: 16px;
  border-bottom: 1px solid #8c8c8c;
}

.form__button {
  margin-top: 30px;
  font-weight: 300;
  font-size: 16px;
}

@media screen and (max-width: 930px) {
  .request__body {
    padding: 30px 0;
  }

  .request__subtitle {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.5;
  }

  .request__form {
    margin-top: 10px;
  }

  .request__form-group {
    margin-top: 20px;
  }

  .form__button {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .request__body {
    padding: 20px 0;
  }

  .request__text {
    padding: 20px;
  }

  .request__subtitle {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 1.5;
  }

  .request__form {
    margin-top: 0;
  }

  .request__form-group {
    margin-top: 10px;
  }

  .form__button {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------------------- */
.product__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  padding-top: 40px;
}

.product__subtitle {
  padding-top: 40px;
  margin: 0 auto;
  width: 50%;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.product__body {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product__text {
  padding: 30px;
  width: 50%;
}

.product__img {
  padding: 30px;
  width: 50%;
}

.product__tag {
  color: #ff9500;
  font-size: 14px;
  margin-bottom: 10px;
}

.product__link {
  display: flex;
  padding-top: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: #3386f7;
}

.product-analytics {
  background: #f5f5f7;
  padding-top: 20px;
}

.product-consulting {
  background: #ffffff;
}

.product-autprice {
  background: #ffffff;
}

.product-course {
  background: #f5f5f7;
}

@media screen and (max-width: 930px) {
  .product__body {
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .product__body {
    flex-direction: column;
    padding: 20px 0;
  }

  .product__text {
    width: 100%;
  }

  .product__img {
    margin-top: 10px;
    width: 90%;
  }
}

/* ---------------------------------------------------------------------------- */
.error {
  background: #ffffff;
}

.error__body {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error__title {
  font-size: 50px;
  font-weight: 700;
}

.error__menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.error__item {
  padding: 20px 30px;
}

.error__link {
  color: #3386f7;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.legal {
  background: #ffffff;
}

.legal__body {
  padding: 30px 0;
}

.mt-0 {
  margin-top: 0px !important;
}

.product__container {
  padding: 20px 0;
}

#store-position-chart {
  padding: 50px 0;
}

#myChart {
  max-height: 300px !important;
  width: 100% !important;
  margin-top: 20px;
}

/* new main page */

.section__container {
  padding: 0 120px;
}

.text-32 {
  font-family: SFProDisplay, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38.19px;
  text-align: left;
}

.text-24 {
  font-family: SFProDisplay, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.64px;
  text-align: center;
}

.text-22 {
  font-family: SFProDisplay, sans-serif;
  font-size: 22px;
  line-height: 28px;
  text-align: left;
}

.text-20 {
  font-family: SFProDisplay, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 23.87px;
  text-align: left;
}

.text-16 {
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.09px;
  text-align: center;
  text-wrap: balance;
}

.text-paragraph {
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.09px;
  text-align: left;
  text-wrap: balance;
}

.text-italic {
  font-style: italic;
}

.main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #34c759;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  border-radius: 4px;
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: white;
}

.main-button:hover {
  cursor: pointer;
}

.blue-button {
  background-color: #007aff;
}

.button-350 {
  max-width: 350px;
}

@media screen and (max-width: 1536px) {
  .section__container {
    padding: 0 60px;
  }
}

@media screen and (max-width: 1280px) {
  .text-32 {
    font-size: 26px;
    line-height: normal;
  }

  .text-24 {
    font-size: 20px;
  }

  .text-22 {
    font-size: 17px;
    line-height: normal;
  }

  .text-20 {
    font-size: 16px;
  }

  .text-16 {
    font-size: 14px;
  }

  .text-paragraph {
    font-size: 14px;
  }

  .main-button {
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .text-paragraph {
    text-align: center;
  }

  .section__container {
    padding-inline: 16px;
  }

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

  .text-22 {
    text-align: center;
  }
}
/* NEW HEADER */

.header_container {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0px 5px 20px 0px #0000000d;
}

.header__wrapper {
  height: 80px;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}

.header__img {
  z-index: 3;
  height: 32px;
}

.header__img:hover {
  cursor: pointer;
}

.header__tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

.header__tab {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.09px;
  text-align: left;
}

.header__tab:hover,
.header__tab.active {
  color: #007aff;
  border-bottom: 2px solid #007aff;
}

.header__buttons {
  display: flex;
  gap: 16px;
}

.header__login-button {
  padding: 8px 16px;
  border-radius: 4px;
  background: #007aff;
  color: white;
  height: 36px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.header__lang {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #0a84ff26;

  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header__lang:hover {
  cursor: pointer;
}

.header__lang-img {
  width: 50%;
}

.header__menu-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2;
}

.header__menu-burger {
  display: none;
}

@media screen and (max-width: 1280px) {
  .header__menu-container {
    width: 80%;
  }
}

@media screen and (max-width: 1124px) {
  .header__tab {
    font-size: 14px;
  }
  .header__wrapper {
    height: 65px;
    padding: 20px 20px;
  }
}

@media screen and (max-width: 910px) {
  .header__menu-container {
    width: 85%;
  }
}

@media screen and (max-width: 870px) {
  .header_container::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    height: 65px;
    z-index: 1;
    background-color: white;
  }

  .header__menu-burger {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    z-index: 3;
  }

  .header__menu-burger span {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #181818;
    transition: all 0.3s ease 0s;
  }

  .header__menu-burger:before,
  .header__menu-burger:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #181818;
    transition: all 0.3s ease 0s;
  }

  .header__menu-burger:before {
    top: 0;
  }

  .header__menu-burger:after {
    bottom: 0;
  }

  .header__menu-burger.active span {
    transform: scale(0);
  }

  .header__menu-burger.active:before {
    top: 9px;
    transform: rotate(45deg);
  }

  .header__menu-burger.active:after {
    bottom: 9px;
    transform: rotate(-45deg);
  }

  .header__menu-container {
    background: #ffffff;
    position: fixed;
    width: 100%;
    height: 400px;
    top: -400px;
    left: 0;
    padding: 80px 20px 20px 20px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    border-bottom: 2px solid #efefef;
    z-index: 0;
  }

  .header__menu-container {
    flex-direction: column;
  }

  .header__menu-container.active {
    top: 0;
  }

  .header__tabs {
    flex-direction: column;
    width: 100%;
  }

  .header__tab {
    width: 100%;
  }
}

/* START CONTAINER */

.start__container {
  padding-inline: 120px 40px;
  padding-block: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.start__container.mailing {
  padding-inline: 120px 220px;
}

.start__text-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start__content {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 32px;
  align-items: flex-start;
}

.start__button {
  background-color: #34c759;
  max-width: 300px;
}

.start__image__container {
  display: flex;
  width: 50%;
}

.start__image {
  width: 100%;
  object-fit: contain;
}

.kaspi__text {
  background: #f14635;
  padding: 1px 4px;
  color: white;
  font-weight: bold;
}

.start__description {
  background: #f2f2f7;
  padding: 24px;
  border-radius: 4px;
  text-wrap: wrap;
}

@media screen and (max-width: 1536px) {
  .start__container {
    padding-inline: 60px 20px;
    padding-block: 50px;
  }

  .start__container.mailing {
    padding-inline: 60px 120px;
  }

  .start__content {
    gap: 24px;
  }
  .start__description {
    padding: 18px;
  }
}

@media screen and (max-width: 768px) {
  .start__container {
    padding-inline: 32px 16px;
    flex-direction: column-reverse;
    gap: 24px;
  }
  .start__container.mailing {
    padding-inline: 0;
  }

  .start__content {
    width: 100%;
    align-items: center;
  }

  .start__button {
    max-width: 100%;
  }

  .start__description {
    text-align: center;
  }

  .start__image__container {
    width: 100%;
  }
}

/* COMPARISON SECTION */

.comparison__container {
  padding-block: 48px;
  display: flex;
  background: #f8f8fc;
}

.comparison__content {
  width: 50%;
  padding: 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 24px;
}

.comparison__description-text {
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 4px;
}

.comparison__text {
  width: 50%;
}

.comparison__value {
  font-family: SFProDisplay, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.34px;
  text-align: center;
  margin-bottom: 16px;
}

.comparison__graph-container {
  position: relative;
  margin-bottom: 24px;
}

.packman_food {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(125%, -50%);
}

.comparison__description-subtext {
  text-align: center;
  text-wrap: wrap;
}

@media screen and (max-width: 1536px) {
  .comparison__container {
    padding-block: 24px;
  }

  .comparison__content {
    padding: 32px 64px;
  }

  .packman_food {
    transform: translate(100%, -50%);
  }

  .comparison__description {
    padding: 12px;
    gap: 12px;
  }

  .comparison__description-text {
    padding-block: 20px;
  }

  .comparison__graph-container {
    width: 75%;
  }
}

@media screen and (max-width: 1024px) {
  .comparison__text {
    width: 100%;
  }

  .comparison__container {
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .comparison__container {
    flex-direction: column;
    align-items: center;
  }

  .comparison__content {
    width: 100%;
    padding: 12px;
  }

  .comparison__description {
    width: 100%;
  }

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

  .comparison__description-subtext {
    text-align: center;
  }
}

/* TRY NOW SECTION */

.try-now__container {
  padding-block: 50px;
  background: #007aff1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.try-now__label {
  text-align: center;
}

.try-now__description {
  padding: 24px;
  border-radius: 4px;
  background-color: #ffffff;
  width: fit-content;
  text-align: center;
  color: #000000b2;
}

.try-now__doubts-label {
  margin-top: 24px;
  width: 100%;
  max-width: 800px;
}

.video-button__icon {
  height: 20px;
  width: 22px;
  margin-right: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  fill: white;
}

/* BEGGINER SECTION */

.begginer__container {
  background: #f8f8fc;
  padding-block: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.begginer__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.begginer__image-container {
  width: 50%;
}

.begginer__image {
  width: 100%;
  /* box-shadow: 0px 0px 20px 0px #0000001A; */
  box-shadow: 0px 0px 16px 0px rgba(34, 60, 80, 0.2);
}

@media screen and (max-width: 768px) {
  .begginer__container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .begginer__content {
    width: 100%;
    align-items: center;
  }

  .begginer__image-container {
    width: 100%;
  }
}

/* INEGRATION SECTION */

.integration__container {
  padding-block: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.integration__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.integration__content-label {
  text-align: left;
}

.integration__image-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration__image {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .integration__container {
    flex-direction: column;
    gap: 24px;
  }

  .integration__content {
    width: 100%;
    align-items: center;
  }

  .integration__image-container {
    width: 100%;
  }
}

/* PREORDER SECTION */

.preorder__container {
  padding-block: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8fc;
}

.preorder__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.preorder__image-container {
  width: 50%;
}

.preorder__image {
  width: 100%;
  /* box-shadow: 0px 0px 20px 0px #0000001A; */
  box-shadow: 0px 0px 16px 0px rgba(34, 60, 80, 0.2);
}

@media screen and (max-width: 768px) {
  .preorder__container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .preorder__content {
    width: 100%;
    align-items: center;
  }

  .preorder__image-container {
    width: 100%;
  }

  .integration__content-label {
    text-align: center;
  }
}

/* HOW SECTION */

.how__container {
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.how__items-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.how__item {
  background: #f8f8fc;
  border-radius: 8px;
  padding: 24px 48px 32px 48px;
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .how__item {
    width: 100%;
    gap: 12px;
  }

  .how__items-container {
    flex-direction: column;
    gap: 48px;
  }
}

/* RESULTS SECTION */

.results__container {
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.results__global-labels {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.result__charts-container {
  width: 100%;
  display: flex;
  align-items: center;
  height: 400px;
}

.results__colored-container {
  width: 100%;
  background: #f8f8fc;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results_chart-labels {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 20%;
  height: 100%;
  /* border-left: 1px dashed #00000066;
  border-right: 1px dashed #00000066; */
}

.results_chart-labels::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  right: 0;
  background-image: linear-gradient(to bottom, transparent 50%, #00000066 50%);
  background-size: 1px 10px;
}

.results_chart-labels::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, transparent 50%, #00000066 50%);
  background-size: 1px 10px;
}

.results__label-text {
  font-family: SFProDisplay, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 19.09px;
  text-align: center;
}

.results_chart-left__container {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: end;
}

.results_chart-right__container {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: start;
}

#results_chart-left {
  width: 100%;
  height: 100%;
}
#results_chart-right {
  width: 100%;
  height: 100%;
}

.results__chart-line {
  background-image: linear-gradient(to right, transparent 50%, #00000066 50%);
  background-size: 10px 1px;
  height: 1px;
  width: 500%;
  position: relative;
}

.results__stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.results__stat-container {
  display: flex;
  flex-direction: column;
  padding: 24px;
  width: 50%;
  text-wrap: balance;
  gap: 12px;
  background: #f8f8fc;
  border-radius: 16px;
}

.resulte__stat-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.result__stat-hint {
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.09px;
  text-align: right;
  color: #00000066;
  width: 180px;
}

.results__stat-main-text {
  text-align: left;
}

.results__stat-text {
  font-size: 64px;
  font-weight: 600;
  line-height: 76.38px;
  text-align: left;
}

@media screen and (max-width: 1280px) {
  .results__stat-text {
    font-size: 48px;
    line-height: normal;
  }
}

@media screen and (max-width: 768px) {
  .results__stats-container {
    flex-direction: column;
  }

  .results__stat-container {
    width: 100%;
    padding: 12px;
  }
}

/* LOW SALES SECTION */

.low-sales__container {
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background: #f8f8fc;
}

.low-sales__items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.low-sales__item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(50% - 20px);
  border-radius: 8px;
  background-color: white;
}

.low-sales__item-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .low-sales__items-container {
    row-gap: 32px;
  }

  .low-sales__item {
    width: 100%;
    align-items: center;
    padding: 12px;
  }
}

/* INCREASE SECTION */

.increase__container {
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.increase__items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.increase__item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(50% - 20px);
  border-radius: 8px;
  background: #f8f8fc;
}

.increase__item-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .increase__items-container {
    row-gap: 32px;
  }

  .increase__item {
    width: 100%;
    align-items: center;
    padding: 12px;
  }
}

/* TARIFF SECTION */
.tariffs__container {
  background: #f8f8fc;
}
.tariffs__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariffs__buttons-menu {
  position: relative;
  margin-top: 48px;
  display: flex;
  background: #7878801f;
  border-radius: 8px;
  padding: 4px;
}

.tariffs__buttons-menu::before {
  position: absolute;
  content: '';
  background: #8e8e93;
  left: 33.333%;
  top: 50%;
  height: 50%;
  width: 1px;
  transform: translateY(-50%);
  z-index: 0;
}

.tariffs__buttons-menu::after {
  position: absolute;
  content: '';
  background: #8e8e93;
  left: 66.666%;
  top: 50%;
  height: 50%;
  width: 1px;
  transform: translateY(-50%);
  z-index: 0;
}

.tariffs__button-item {
  z-index: 1;
}

.tariffs__button-term {
  cursor: pointer;
  padding: 1px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  width: 200px;
  height: 28px;
  background-color: transparent;
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  z-index: 1;
  line-height: 18px;
  text-align: center;
}

.tariffs__button-term__active {
  background: #ffffff;
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  font-weight: 600;
  z-index: 2;
  outline: 2px solid white;
}

.tariffs__speed {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
}

.tariffs__speed-label {
  white-space: nowrap;
}

.tariffs__switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 26px;
}

.tariffs__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.tariffs__switch-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #d1d1d6;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.tariffs__switch-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2px;
  top: 2px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.tariffs__switch input:checked + .tariffs__switch-slider {
  background: #007aff;
}

.tariffs__switch input:checked + .tariffs__switch-slider::before {
  transform: translateX(22px);
}

.tariffs__menu {
  margin-top: 50px;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tariffs__item {
  position: relative;
  width: calc((100% - 64px) / 5);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.tariffs__item-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tariffs__product-control {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.tariffs__product-label {
  font-family: SFProDisplay, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #00000080;
  text-align: center;
}

.tariffs__product-input {
  width: 100%;
  max-width: 140px;
  height: 36px;
  padding: 8px 12px;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  background: #ffffff;
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #1c1c1e;
  outline: none;
}

.tariffs__product-input:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.12);
}

.tariffs__item-popular-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  text-align: center;
  right: 0;
  top: 0;
  width: 230px;
  height: 30px;
  background-color: #34c759;
  transform: translate(25%, 120%) rotate(45deg);

  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.09px;
  text-align: center;
}

.tariffs__item:hover {
  transform: scale(105%);
  box-shadow: 0px 4px 16px 4px #0000001a;
}

.tariffs__item-best {
  border: 2px solid #34c759;
  box-shadow: 0 8px 28px rgba(52, 199, 89, 0.34);
}

.tariffs__item-best:hover {
  box-shadow: 0 8px 32px rgba(52, 199, 89, 0.44);
}

.tariffs__item-best-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 112px;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
  background: #34c759;
  color: #ffffff;
  font-family: SFProDisplay, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  z-index: 3;
}

.tariffs__item-icon {
  width: 24px;
  height: 24px;
}

.tariffs__features {
  width: 100%;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.tariffs__feature {
  position: relative;
  min-height: 20px;
  padding-left: 26px;
  font-family: SFProDisplay, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #1c1c1e;
  text-align: left;
}

.tariffs__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  color: #00c7d9;
  font-size: 17px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.tariffs__desc-menu {
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tariffs__desc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px #0000001a;
}

.tariffs__desc-item-orange {
  background: #ff9500;
  color: white;
}

.tariffs__desc-text {
  font-family: SFProDisplay, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.09px;
  text-align: center;
}

@media screen and (max-width: 1124px) {
  .tariffs__item {
    width: 48%;
  }

  .tariffs__feature {
    font-size: 13px;
    line-height: 18px;
  }
}

@media screen and (max-width: 768px) {
  .tariffs__buttons-menu {
    width: 100%;
  }

  .tariffs__button-item {
    width: 33%;
  }

  .tariffs__button-term {
    width: 100%;
  }

  .tariffs__item {
    width: 100%;
  }

  .tariffs__features {
    margin-top: 10px;
    padding-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    gap: 6px;
  }

  .tariffs__feature {
    min-height: 19px;
    padding-left: 17px;
    font-size: 11px;
    line-height: 14px;
  }

  .tariffs__feature::before {
    width: 11px;
    height: 14px;
    font-size: 11px;
    line-height: 14px;
  }

  .tariffs__desc-menu {
    gap: 8px;
  }

  .tariffs__desc-item {
    padding: 8px 12px;
  }

  .tariffs__desc-text {
    font-size: 14px;
  }
}

/* REVIEWS SECTION */

.reviews__container {
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.reviews__items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews_item {
  width: calc(50% - 20px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f8f8fc;
  border-radius: 8px;
}

.reviews__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reviews__from {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.32px;
  text-align: left;
}

.reviews__storename {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.32px;
  text-align: left;
  color: #007aff;
}

.reviews__text {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .reviews__container {
    gap: 32px;
  }

  .reviews_item {
    padding: 24px;
    gap: 12px;
    width: 100%;
  }
}

/* FAQ SECTION */

.faq__container {
  background: #f8f8fc;

  padding-block: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__menu {
  margin-top: 40px;
  width: 100%;
}

.faq__item {
  padding: 32px 0;
  border-top: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item-button {
  margin-left: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: none;
}

.faq__item-icon {
  width: 16px;
  height: 16px;
  transform-origin: 50% 50%;
  fill: #181818;
  transition: transform 0.3s;
}

.faq__item-icon__active {
  transform-origin: 50% 50%;
  fill: #181818;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.faq__item-button:hover {
  background: #3386f7;
}

.faq__item-button:hover rect {
  fill: #ffffff;
}

.faq__item-icon__active:hover {
  fill: #ffffff;
}

.faq__item-body {
  opacity: 0;
  display: none;
  transition: all 0.3s ease 0s;
  margin: 0;
  padding: 0;
}

.faq__item-body__active {
  opacity: 1;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 8px;
}

.faq__item-title-text {
  text-align: left;
  flex: 1;
}

.faq__item-answer {
  text-align: left;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 !important;
  padding: 0 !important;
}

.faq__item-body__active .faq__item-answer {
  margin: 0 !important;
  padding: 0 !important;
}

.faq__item-body__active p {
  margin: 0 !important;
  padding: 0 !important;
}

.circle {
  width: 48px;
  height: 48px;
  background-color: rgb(213, 231, 252);
  color: rgb(10, 132, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 930px) {
  .faq__body {
    padding: 30px 0;
  }
}

@media screen and (max-width: 768px) {
  .faq__item-answer {
    text-align: left;
  }

  .faq__item-title-text {
    font-size: 16px;
    text-align: left !important;
    line-height: normal;
  }

  .faq__item {
    padding-block: 12px;
    gap: 12px;
  }

  .faq__body {
    padding: 20px 0;
  }
}

/* FOOTER */

.footer_new {
  background: #181818;
}

.footer_new__container {
  padding-inline: 120px;
}

.footer_new__body {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;

  font-size: 16px;
  font-weight: 400;
  line-height: 19.09px;
  text-align: left;
}

.footer_new__logo {
  color: #ffffff;
}

.footer_new__menu {
  display: flex;
}

.footer_new__item {
  margin-left: 20px;
}

.footer_new__link {
  text-align: center;
  color: #ffffff;
}

.footer_new__link:hover {
  color: #cccccc;
}

@media screen and (max-width: 1280px) {
  .footer_new__container {
    padding-inline: 60px;
  }
  .footer_new__body {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_new__container {
    padding-inline: 16px;
  }
  .footer_new__body {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .footer_new__body {
    flex-direction: column-reverse;
    height: auto;
    gap: 24px;
    padding-block: 10px;
  }
}

.slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  transition: all 0.5s ease;
  opacity: 0.3;
  transform: scale(0.9);
  z-index: 1;
  display: none;
}

.slide.center {
  left: 60%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 2;
  display: flex;
  background-color: white;
  gap: 20px;
  width: 700px;
}

.slide.left {
  left: 0%;
  display: flex;
  background-color: white;
  gap: 20px;
  width: 700px;
  cursor: pointer;
}

.slide.right {
  left: 50%;
  display: flex;
  background-color: white;
  gap: 20px;
  width: 700px;
  cursor: pointer;
}

.title__seller {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 40px;
}

.dwaasdwdawd {
  display: flex;
  justify-content: center;
}

.sub__text {
  font-size: 24px;
  text-align: center !important;
  margin-top: 40px;
  margin-bottom: 40px;
}

.first__slide {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.video-preview {
  position: relative;
  width: 300px;
  height: 300px;
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.85);
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
}

.video-play-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

.slider__video {
  position: relative;
  gap: 20px;
  margin: 0 auto;
  max-width: 1000px;
  min-height: 400px;
}

.video__rek {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.authorVideo {
  display: flex;
  flex-direction: column;
  /* align-self: flex-end; */
  margin-right: 20px;
  font-weight: 600;
}

.authorVideo img {
  width: 60px;
  height: 60px;
}

/* .authorVideoInst {
		align-self: flex-end;
}

.authorVideoInst img {
	width: 40px;
	height: 40px;
	object-fit: cover;
} */

.linkFreeVersi {
  text-align: center;
  margin-bottom: 70px;
}

.linkFreeVersi a {
  font-size: 16px;
  max-width: 300px;
  padding: 14px 20px;
  border-radius: 4px;
  line-height: 22px;
  font-weight: 400;
  background-color: #007aff;
  color: white;
}

.star {
  width: 117px;
  height: 20px;
  align-self: center;
}

.slider__content {
  position: relative;
}

.right-arrow {
  cursor: pointer;
  position: absolute;
  background-color: #007aff !important;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  bottom: -180px;
  right: 0px;
  z-index: 5;
}

.left-arrow {
  cursor: pointer;
  position: absolute;
  background-color: #007aff !important;
  transform: translateY(-50%) scaleX(-1);
  width: 52px;
  height: 52px;
  border-radius: 10px;
  bottom: -210px;
  left: 0px;
  z-index: 5;
}

.first__video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: 800px;
  z-index: 2;
  background-color: #fff;
  border: black;
  border-radius: 20px;
}

.second_video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: 800px;
  bottom: 0px;
  left: 200px;
  z-index: 1;
  opacity: 0.3;
}

.third__video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: 800px;
  bottom: 0px;
  right: 150px;
  z-index: 1;
  opacity: 0.3;
}

.text__under__video {
  line-height: 19.09px;
}

.container__video {
  bottom: 20px;
  left: 10px;
  position: absolute;
  font-weight: 600px;
  font-size: 22px;
  transition: background-color 0.3s ease;
  border-radius: 20px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

.first__slide {
  border-radius: 20px;
  cursor: pointer;
}

.container__video {
  background-color: rgba(255, 255, 255, 0.6);
}

body.modal-open {
  height: 100vh;
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 111999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  padding-top: 100px;
  max-width: 500px;
}

.close {
  position: absolute;
  right: -8%;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.videoModal {
  background-color: #007aff !important;
}

@media (max-width: 767px) {
  .video-preview {
    position: relative;
    width: 300px;
    height: 200px;
  }
  .authorVideo {
    flex-direction: row;
    display: flex;
    align-items: center;
  }

  .close {
    right: 3%;
  }

  #modalVideo {
    width: 300px !important;
    height: 400px !important;
  }

  .linkFreeVersi {
    margin-top: 40px;
  }

  .slide.center {
    width: 325px;
    left: 50%;
    display: inline-block;
  }

  .slide.left {
    width: 325px;
    left: 0%;
    display: inline-block;
    cursor: pointer;
  }

  .slide.right {
    left: 55%;
    width: 325px;
    display: inline-block;
    cursor: pointer;
  }

  .text__under__video {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .authorVideo {
    font-size: 14px;
  }

  .authorVideo img {
    width: 50px;
    height: 50px;
  }

  .first__slide {
    width: 325px;
    height: 200px;
  }

  .title__seller {
    font-size: 26px;
  }

  .right-arrow {
    width: 40px;
    height: 40px;
    bottom: -120px;
  }

  .left-arrow {
    width: 40px;
    height: 40px;
    bottom: -140px;
  }

  .star {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* .slide.center{
	width: 500px;
}

	.text__under__video{
		width: 250px;
	} */

  .slide {
    transition: none;
  }

  .slide.left {
    left: 10%;
  }
  .slide.right {
    left: 10%;
  }

  .close {
    right: 3%;
  }

  #modalVideo {
    width: 300px !important;
    height: 600px !important;
  }

  .text__under__video {
    width: 300px;
  }
  .text__under__video {
    font-size: 14px;
  }

  .title__seller {
    font-size: 26px;
  }

  .right-arrow {
    bottom: -190px;
  }
  .left-arrow {
    bottom: -220px;
  }
}

@media (max-width: 431px) {
  .slide.right {
    left: 5%;
  }
}

#modalVideo {
  width: 560px;
  height: 815px;
}

@media (max-width: 530px) {
  .slide.left {
    display: none;
  }

  .slide.right {
    display: none;
  }
}

@media (max-width: 700px) {
  .slide.right {
    left: 50%;
  }
}

@media (max-width: 650px) {
  .slide.right {
    left: 45%;
  }
}

@media (max-width: 570px) {
  .slide.right {
    left: 40%;
  }
}

/* Instagram footer logo styling */
.footer_new__branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer_new__social-logo {
  display: inline-block;
  line-height: 0;
}

.footer_new__logo-text {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   FOOTER: SINGLE COLUMN ON MOBILE (Centered)
   ============================================ */
/* Remove corruption */

/* MOBILE: Everything in one centered column */
@media (max-width: 767px) {
  .footer_new__body {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 140px !important; /* Taller for column */
  }

  .footer_new__branding {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-direction: row !important;
    text-align: center !important;
  }

  .footer_new__menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .footer_new__link {
    text-align: center !important;
    width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* DESKTOP: Original layout preserved */
@media (min-width: 768px) {
  .footer_new__body {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100px !important;
    padding: 0 16px !important;
    gap: 0 !important;
  }
  .footer_new__menu {
    flex-direction: row !important;
    gap: 24px !important;
  }
  .footer_new__link {
    text-align: center !important;
    width: auto !important;
  }
}

.footer_new__logo-img {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}
/* SaleScout Footer Instagram Update v1.0 */
/* Instagram logo styling - desktop */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
}

/* Mobile adaptation (767px and below) */
@media screen and (max-width: 767px) {
  .footer__body {
    flex-direction: column;
    height: auto;
    padding: 24px 0;
    gap: 16px;
  }

  /* Reorder elements: menu first, logo container last */
  .footer__menu {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer__item {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .footer__item:last-child {
    margin-bottom: 0;
  }

  .footer__logo {
    order: 2;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
  }
}

/* SaleScout Footer Instagram Update v2.0 */
/* Styles for new footer structure with clickable Instagram logo */

.footer__logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__insta-link {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.footer__logo-text {
  color: #ffffff;
  text-decoration: none;
  font-weight: 200;
}

/* Mobile adaptation (767px and below) */
@media screen and (max-width: 767px) {
  .footer__body {
    flex-direction: column;
    height: auto;
    padding: 24px 0;
    gap: 16px;
  }

  .footer__menu {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer__item {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .footer__item:last-child {
    margin-bottom: 0;
  }

  .footer__logo-group {
    order: 2;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    flex-direction: row;
    gap: 6px;
  }
}
.footer__insta-logo {
  width: 80px !important;
  height: 80px !important;
  display: block !important;
  object-fit: contain !important;
  aspect-ratio: 1/1 !important;
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.popup.active {
  display: block;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.popup__content {
  position: relative;
  z-index: 2;
  margin: 5vh auto;
  max-width: 700px;
}

.popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  font-size: 24px;
  cursor: pointer;
}

body.popup-open {
  overflow: hidden;
}

.comparison__container,
.video_container_slider,
.try-now__container,
.begginer__container,
.integration__container,
.preorder__container,
.how__container,
.results__container,
.low-sales__container,
.increase__container,
.tariffs__container,
.reviews__container,
.faq__container {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
