@import url(./reset.css);
@import url(./reset1.css);
@import url(./header.css);
@import url(./hero.css);
@import url(./bonus-section.css);
@import url(./steps-section.css);
@import url(./benefits-section.css);
@import url(./users-section.css);
@import url(./reviews-section.css);
@import url(./faq-section.css);
@import url(./privecy.css);
@import url(./terms.css);
@import url(./delete-form.css);
@import url(./cookies.css);
@import url(./footer.css);
@import url(./last_page/hero-last.css);
@import url(./last_page/what-is-it.css);
@import url(./last_page/modal.css);
@import url(./last_page/get-for-busines.css);
@import url(./last_page//platform-users.css);
@import url(./last_page/products-b2b.css);
@import url(./last_page/partners.css);
@import url(./last_page/use-cases.css);
@import url(./last_page/involve.css);
@import url(./last_page/raiting-reviews.css);
@import url(./last_page/video-section.css);
@import url(./last_page/last-page-footer.css);
@import url(./last_page/follow-us.css);

@font-face {
  font-family: 'InterTight';
  src: url('../fonts/InterTight-Bold.woff2') format('woff2');
  font-weight: 700;
  /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('../fonts/InterTight-LightItalic.woff2') format('woff2');
  font-weight: 300;
  /* Light */
  font-style: italic;
}

@font-face {
  font-family: 'InterTight';
  src: url('../fonts/InterTight-Medium.woff2') format('woff2');
  font-weight: 500;
  /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('../fonts/InterTight-Regular.woff2') format('woff2');
  font-weight: 400;
  /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('../fonts/InterTight-SemiBold.woff2') format('woff2');
  font-weight: 600;
  /* SemiBold */
  font-style: normal;
}

:root {
  --bd-color: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5));
  --color-dark: #000000;
  --color-title: #1F2024;
  --color-primery: #252432;


  --gradient-collor: linear-gradient(rgba(137, 237, 227, 0.5), rgba(0, 176, 159, 0.5));


  --border-radius: 40px;

  --box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  --font-family-base: "InterTight", sans-serif;


  --container-width: 1300px;
  --container-padding-x: 90px;

  --transition-duration: 0.2s;
}

html,
body {
  height: 100%;
  min-height: 100vh;

}

body {
  font-family: var(--font-family-base);
  color: var(--color-primery);
  font-size: 18px;
  font-weight: 400;

  background-image: linear-gradient(175deg, rgba(231, 247, 250, 1) 0%, rgba(174, 246, 240, 0.2) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;


}


.container--wide {

  padding-top: 48px;
}

.container--slider {

  margin-inline: auto;

}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);

}

.section--margin-bottom {
  margin-bottom: 96px;
}

.section--padding-top {
  padding-top: 96px;
}


.translatey--section {
  position: relative;
  overflow: hidden;
  transform: translateY(30%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.translatey--section.visible {
  transform: translateY(0);
  opacity: 1;
}

.fade-in-up {
  transform: translateY(30%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.fade-in-up.visible {
  transform: translateY(0);
  opacity: 1;
}

.remuneration {
  display: none;
}

.link {
  color: blue;
}

.section-top-p {
  padding-top: 96px;
}

.p-l-15 {
  padding-left: 15px;
}

@media (max-width: 1160px) {
  .container {
    padding-inline: 20px;
  }

  .container--slider {
    padding-inline: 0;
  }

  .menu-button {
    display: flex;
    position: absolute;

    right: 40px;
    top: 40px;
    padding: 22px 32px;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: -600%;
    right: 0;
    left: 0;

    width: 100%;
    z-index: 1;
    transition: top 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
  }

  .header__menu-list {
    flex-direction: column;
    row-gap: 30px;
    background: #fff;
  }

  .header__menu-link {

    z-index: 1;
  }

  .hero_title-wrapper {
    text-align: center;
  }

  .menu-button {
    display: flex;
  }

  .header__menu.active {
    top: 10px;
    right: -50px;
    display: block;
  }

  .header__menu.active+.menu-button {
    box-shadow: none;
  }

  .line:nth-child(1) {
    transform: translateY(-8px);
  }

  .line:nth-child(2) {
    opacity: 1;
  }

  .line:nth-child(3) {
    transform: translateY(8px);
  }

  .menu-button.active .line:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .menu-button.active .line:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active .line:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .hero-container {
    padding: 24px;


  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;

    align-items: center;
    height: 360px;

  }

  .hero__title {
    font-size: 28px;

  }

  .hero__image-container {
    right: 50%;
    transform: translateX(50%);
    top: 42%;
    bottom: 0;
    width: 252px;
    height: 262px;
  }

  .hero-container::after {
    right: 49%;
    transform: translateX(50%);
    width: 80px;
    height: 80px;
    bottom: -54px;
  }

  .hero__image-container::before {
    bottom: 1px;
    left: 71px;
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='30' viewBox='0 0 20 30'><path d='M0 0 H40 C35 0, 0 0, 0 20 Z' fill='%2377D6CE'/></svg>");
    rotate: 90deg;
    width: 20px;
    height: 30px;

  }

  .hero__image-container::after {

    width: 80px;
    height: 80px;

    right: 80px;
    bottom: -28px;


  }

  .hero-container {
    margin-bottom: 90px;
  }

  .hero__image {

    width: 252px;
  }

  .hero-buttons {
    justify-content: center;
    margin-left: 0;
  }

  .download-btn {

    padding: 8px 0px;
    max-width: 350px;
    width: 100%;
    text-align: center;
  }

  .download-btn img {
    display: inline-block;
  }

}

@media (max-width: 1000px) {
  .footer__wrapper {
    padding-top: 250px;

  }

  .footer__img-wrapper {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__title {
    max-width: 380px;
    width: 100%;
  }

  .footer {

    /* background: linear-gradient(180deg, #5C1E8E 0%,  #5D32F6 100%); */

    border-radius: 15px;
  }

  .footer__content-wrapper {
    margin-right: 0;
  }

  .footer__top {
    margin-bottom: 96px;
    justify-content: center;
  }

  .footer__bootom-wrapper {
    flex-direction: column;
    margin-inline: 0;

  }

  .footer__social-wrapper {
    flex-direction: row;

    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 34px;

  }

  .footer__scan-wrapper {
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center 9px;
    background-size: 80%;
    top: -5%;
    left: 37%;


  }

  .footer__scan-wrapper:after {
    content: '';
    position: absolute;

    background-repeat: no-repeat;
    background-size: cover;
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path d='M0 0 H40 C35 0, 0 0, 0 40 Z' fill='%235C1E90'/></svg>");


    z-index: -1;
    rotate: 190deg;
    width: 30px;
    height: 30px;
    top: 10px;
    left: -17px;

  }

  .footer__scan-wrapper::before {
    content: '';
    position: absolute;


    background-repeat: no-repeat;
    background-size: cover;
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path d='M0 0 H40 C35 0, 0 0, 0 40 Z' fill='%235C1E90'/></svg>");

    z-index: -1;
    rotate: -103deg;
    width: 30px;
    height: 30px;
    top: 10px;
    left: 78px;

  }

  .footer__socials {
    gap: 15px;
  }

  .corner-shape {
    position: absolute;
    width: 30px;
    height: 20px;
    top: 4px;
    left: -23px;
  }

  .corner-shape path {
    fill: none !important;
  }

  .corner-shape svg {
    fill: currentColor;
  }

}

@media (max-width: 760px) {
  .section-top-p {
    padding-top: 56px;
    ;
  }

  .logo__text {

    font-size: 13px;

  }

  .menu-button {
    padding: 22px 22px;
    right: 25px;
    z-index: 100;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: 2%;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: top 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
  }

  .header__menu-list {

    text-align: left;
    row-gap: 0px;
  }

  .title {
    font-size: 22px;
  }

  .text {
    font-size: 16px;
  }

  .text-list {
    padding-left: 0;
    row-gap: 10px;
  }

  .data-table {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 24px;

  }

  .terms__title {
    font-size: 24px;
  }

  .conatiner-footer {
    width: 100%;
    padding-inline: 0;
  }

  .cookie-table strong {
    font-size: 16px;
    font-weight: 600;
  }

  .cookie-table td {
    font-size: 14px;
  }


  .carousel {
    gap: 8px;
  }

  .is-mobile {
    display: flex;
  }

  .carousel-item img {
    width: 86px;
    height: 46px;
  }

  .slider:not(:last-child) {
    margin-bottom: 16px;
  }

  .step__content {
    display: flex;
    flex-direction: column;

    justify-content: center;

  }

  .step__description {
    font-size: 16px;

  }

  .section--margin-bottom {
    margin-bottom: 56px;
  }

  .section--padding-top {
    padding-top: 56px;
  }

  .users__title {
    font-size: 22px;
    color: #1F2024;
  }

  .users::before,
  .users::after {
    width: 100px;
    height: 150px;
  }

  .users::before {

    left: 10%;
  }

  .users::after {

    left: 90%;
  }

  .reviews__item:last-child {
    display: none;
  }

  .remuneration {
    display: block;

  }




  .gradient {
    margin-top: 46px;
    background: radial-gradient(circle at -10% 30%, #D3FF6A, transparent 20%);
  }

  .gradient::after {
    top: 10%;
    left: 80%;
  }

  .gradient::before {
    top: 20%;
    left: 10%;
  }

  .faq {
    padding-bottom: 96px;
  }

  .faq__question {
    font-size: 18px;
  }

  .footer__btn-wrapper {
    /* padding-inline: 24px; */
  }

  .footer__content {
    /* padding-inline: 24px; */

  }

  .footer__wrapper {
    padding-inline: 24px;
  }

  .footer.container {
    padding-inline: 0;
  }

  .footer__scan-wrapper {

    left: 27%;
  }

  .footer__img-wrapper {
    max-width: 280px;

    width: 100%;
  }

  .footer__top {
    margin-bottom: 96px;
  }

  .footer__social-wrapper {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .privecy__title {
    font-size: 22px;
    z-index: 100;
  }

  .menu-button {
    padding: 22px 22px;
    right: 25px;
    z-index: 100;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: 2%;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: top 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
  }

  .header__menu-list {

    text-align: left;
    row-gap: 0px;
  }

  .split-table th,
  .split-table td {
    padding: 8px;
    font-size: 16px;
  }

  .footer__bottom {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: start;
  }

  .faq__question {
    font-size: 18px;
  }

}

@media (max-width: 424px) {
  .hero-content {
    height: 400px;
  }

  .hero__image-container {
    top: 47%;
  }
}

@media (max-width: 400px) {
  .menu-button {
    padding: 22px 22px;
    right: 25px;
    z-index: 100;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: 2%;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: top 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
  }

  .header__menu-list {

    text-align: left;
    row-gap: 0px;
  }

  .steps-bonus {
    font-size: 16px;
  }

  .steps__title-span {
    display: block;
  }

  .steps-button {
    width: 100%;
    padding-inline: 0;
  }

  .data-table th,
  .data-table td {
    padding: 6px;
    font-size: 14px;
  }

  .data-table td:last-child {
    width: 75%;
  }


  .footer__wrapper {
    padding-bottom: 15px;
  }

  .footer__scan-wrapper {

    /* left:20%; */
    left: 23%;

  }

  .footer__img-wrapper {
    top: -5%;
  }

}

@media (max-width: 340px) {
  .hero-content {
    height: 460px;
  }

  .hero__image-container {
    top: 53%;
  }
}

@media (max-width: 307px) {

  .footer__social-wrapper {
    flex-direction: column-reverse;
  }

  .hero__image-container {
    top: 50%;
  }

  .data-table th,
  .data-table td {
    padding: 4px;
  }

}