@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf");
  font-weight: 100 900;
}
@font-face {
  font-family: "Roboto-Flex";
  src: url("../fonts/RobotoFlex.ttf");
  font-weight: 100 900;
}
button {
  border: none;
  font-family: "Roboto-Flex", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
button:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.primary {
  color: #222222;
  background-color: #65D46E;
  padding: 8px 0;
  min-width: 172px;
  box-shadow: 0 4px 14px 2px rgba(101, 212, 110, 0.4);
  border-radius: 12px;
}
.primary.huge {
  padding: 15px 0;
  min-width: 224px;
  font-size: 24px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .primary.huge {
    padding: 8px 0;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }
}
.primary.w-full {
  width: 100%;
}

.transparent {
  background: transparent;
  padding: 8px 16px;
  color: #fff;
}

.title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 72px;
  color: #fff;
  line-height: 80px;
}
.title span {
  color: #65D46E;
}
.title.bold {
  font-weight: 600;
}
@media only screen and (max-width: 1280px) {
  .title {
    font-size: 48px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .title {
    font-size: 24px;
    line-height: 36px;
  }
}

.page-title {
  color: #65D46E;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}
@media only screen and (max-width: 1280px) {
  .page-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .page-title {
    font-size: 20px;
    line-height: 32px;
  }
}

.section-title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
}
.section-title span {
  color: #65D46E;
}
@media only screen and (max-width: 1280px) {
  .section-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.subtitle {
  font-size: 40px;
  line-height: 52px;
  font-weight: 500;
}
.subtitle span {
  color: #65D46E;
}
@media only screen and (max-width: 1280px) {
  .subtitle {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .subtitle {
    font-size: 24px;
    line-height: 32px;
  }
}

.card-title {
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
}
.card-title span {
  color: #000;
}
@media only screen and (max-width: 1280px) {
  .card-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .card-title {
    font-size: 18px;
    line-height: 24px;
  }
}

p {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 36px;
}
@media only screen and (max-width: 1280px) {
  p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 20px;
  }
}

a, label, span, h2 {
  font-family: "Inter", sans-serif;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .form {
    gap: 16px;
  }
}
.form__row {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .form__row {
    flex-direction: column;
    gap: 16px;
  }
}
.form__col {
  flex: 1;
}
.form label {
  display: inline-block;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .form label {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
.form input {
  box-sizing: border-box;
  background-color: #111412;
  color: #fff;
  border: 1px solid #438749;
  padding: 19px 24px;
  font-size: 18px;
  line-height: 22px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .form input {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 24px;
  }
}
.form input::placeholder {
  color: #5C5E5D;
}
.form input[type=radio], .form input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.form__radio label, .form__checkbox label {
  position: relative;
  font-size: 18px;
  line-height: 22px;
  padding-left: 50px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .form__radio label, .form__checkbox label {
    font-size: 16px;
  }
}
.form__radio label::before, .form__checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #111412;
  border: 1px solid #438749;
  border-radius: 50%;
}
.form__radio label::after, .form__checkbox label::after {
  content: " ";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 11px;
  display: block;
  z-index: 1;
  -ms-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.3s ease;
  -ms-transform: scale(0) translateY(-50%) rotateZ(45deg);
  -webkit-transform: scale(0) translateY(-50%) rotateZ(45deg);
  transform: scale(0) translateY(-50%) rotateZ(45deg);
  opacity: 0;
  margin-top: -3px;
  border-right: 2px solid #438749;
  border-bottom: 2px solid #438749;
}
.form__radio input[type=radio]:checked + label::after, .form__radio input[type=checkbox]:checked + label::after, .form__checkbox input[type=radio]:checked + label::after, .form__checkbox input[type=checkbox]:checked + label::after {
  -ms-transform: scale(1) translateY(-50%) rotateZ(45deg);
  -webkit-transform: scale(1) translateY(-50%) rotateZ(45deg);
  transform: scale(1) translateY(-50%) rotateZ(45deg);
  opacity: 1;
}
.form__checkbox {
  flex: 1;
  min-width: 50%;
}
.form__checkbox label::before {
  border-radius: 5px;
}
.form__block {
  width: fit-content;
}
.form__list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .form__list {
    flex-direction: column;
  }
}
.form__tip {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  color: #808080;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .form__tip {
    font-size: 13px;
    line-height: 16px;
    margin-top: 8px;
  }
}
.form__phone {
  position: relative;
}
.form__phone .phone-code {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  gap: 16px;
  cursor: pointer;
}
.form__phone .phone-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 24px;
  font-size: 16px;
  line-height: 24px;
  background-color: #111412;
  border: 1px solid #438749;
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 8px;
}
.form__phone .phone-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 85px;
  overflow-y: scroll;
  padding: 0 4px;
}
.form__phone .phone-list ul::-webkit-scrollbar {
  width: 4px;
}
.form__phone .phone-list ul::-webkit-scrollbar-track {
  background: #5C5E5D;
}
.form__phone .phone-list ul::-webkit-scrollbar-thumb {
  background-color: #438749;
  border-radius: 20px;
}
.form__phone .phone-list li {
  cursor: pointer;
  transition: all 0.3s;
}
.form__phone .phone-list li:hover {
  color: #5C5E5D;
}
.form__phone .phone-list.open {
  display: block;
}

.aside {
  border-radius: 24px;
  background-color: #232323;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .aside {
    flex-direction: column;
    gap: 12px;
    background-color: transparent;
  }
}
.aside__left, .aside__right {
  padding: 80px;
  border-radius: 24px;
}
@media only screen and (max-width: 1280px) {
  .aside__left, .aside__right {
    padding: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .aside__left, .aside__right {
    border-radius: 16px;
    padding: 32px 24px;
  }
}
.aside__left {
  width: 30%;
}
@media only screen and (max-width: 1280px) {
  .aside__left {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .aside__left {
    width: auto;
    background-color: #232323;
  }
}
.aside__right {
  width: 70%;
  background-color: #000;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .aside__right {
    width: auto;
  }
}
.aside__right p {
  margin-bottom: 24px;
}
.aside__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .aside__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.aside__subtitle {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .aside__subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}
.aside p {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .aside p {
    font-size: 16px;
    line-height: 20px;
  }
}
.aside__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside__item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.aside label {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.aside input {
  font-size: 16px;
  line-height: 24px;
  padding: 16px 24px;
}
@media only screen and (max-width: 1280px) {
  .aside .form__row {
    flex-direction: column;
  }
}
.aside__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aside__menu-item {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (max-width: 1280px) {
  .aside__menu-item {
    padding: 12px;
    font-size: 16px;
    line-height: 24px;
  }
}
.aside__menu-item:hover {
  font-weight: 600;
  border-radius: 16px;
  background-color: #111412;
}
.aside__menu-item.active {
  border-radius: 16px;
  background-color: #111412;
  font-weight: 600;
}

.popup {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #000;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-radius: 16px;
  padding: 20px 40px;
  transition: all 0.7s ease;
  opacity: 0;
}
.popup__header {
  font-size: 24px;
  line-height: 32px;
  color: #65D46E;
}
.popup__text {
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
.popup.open {
  opacity: 1;
  top: 10px;
}

.nav {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .nav {
    padding: 14px 0;
  }
}
.nav__burger img {
  width: 24px;
  height: 24px;
}
.nav__mobile.open {
  display: block;
}
.nav__mobile.open {
  display: block;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  z-index: 999;
  width: 100%;
  height: 100%;
  max-width: 100dvw;
  max-height: 100dvh;
}
.nav__container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.nav__menu {
  display: flex;
  justify-content: space-between;
}
.nav__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.nav__logo {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .nav__logo img {
    height: 28px;
  }
}
.nav__list {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .nav__list {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.nav__link {
  position: relative;
}
.nav__link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #fff;
  transition: all 0.3s;
}
.nav__link:hover:after {
  width: 100%;
}
.nav__link.active:after {
  width: 100%;
}
.nav__btns {
  flex: 1;
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .nav__btns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.platform {
  max-width: 100%;
  margin-top: 70px;
  position: relative;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .platform {
    margin-top: 0;
    background-color: #232323;
    padding: 24px;
    border-radius: 24px;
  }
}
.platform__info {
  max-width: 660px;
  position: relative;
  z-index: 10;
}
.platform .title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .platform .title {
    margin-bottom: 72px;
  }
  .platform .title span {
    display: block;
  }
}
.platform p {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .platform p {
    margin-bottom: 72px;
  }
}
.platform__img {
  position: absolute;
  right: -75px;
  top: -50px;
}
@media only screen and (max-width: 767px) {
  .platform__img {
    width: 100%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.4;
  }
}

.payment-methods {
  text-align: center;
  overflow-x: hidden;
}
.payment-methods .title {
  width: 70%;
  margin: 0 auto 24px auto;
}
@media only screen and (max-width: 767px) {
  .payment-methods .title {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.payment-methods p {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .payment-methods p {
    margin-bottom: 20px;
  }
}
.payment-methods__slider {
  overflow-x: hidden;
  white-space: nowrap;
  width: 1015px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .payment-methods__slider {
    width: 100%;
    margin: 0;
    white-space: normal;
  }
}
.payment-methods__imgs {
  display: inline-block;
  width: fit-content;
  animation: 15s slide infinite linear;
}
@media only screen and (max-width: 767px) {
  .payment-methods__imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16.5px;
    flex-wrap: wrap;
    animation: none;
  }
}
.payment-methods__img {
  padding: 14px 16px;
  margin-right: 25px;
  display: inline-block;
  background-color: rgba(245, 247, 255, 0.12);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .payment-methods__img {
    max-height: 40px;
    padding: 8px;
    margin: 0;
    display: flex;
    align-items: center;
  }
}
.payment-methods__img img {
  max-height: 22px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

body {
  background-image: url("");
}

.businesses {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media only screen and (max-width: 767px) {
  .businesses {
    flex-direction: column;
    gap: 20px;
  }
}
.businesses .section-title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .businesses .section-title {
    margin-bottom: 20px;
  }
}
.businesses__card {
  background: linear-gradient(180deg, #65D46E 0%, #111111 100%);
  overflow: hidden;
  width: 526px;
  height: 506px;
  border-radius: 64px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .businesses__card {
    width: 100%;
    height: 284px;
    border-radius: 24px;
  }
}
.businesses__card img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.businesses__text {
  flex: 1;
}

.features__title {
  text-align: center;
}
.features__title .title {
  width: 70%;
  margin: 0 auto 24px auto;
}
@media only screen and (max-width: 767px) {
  .features__title .title {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.features__title p {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .features__title p {
    margin-bottom: 20px;
  }
}
.features__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .features__cards {
    gap: 8px;
    flex-direction: column;
  }
}
.features__card {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .features__card {
    padding: 24px;
  }
}
.features__card img {
  width: 78px;
  height: 78px;
}
@media only screen and (max-width: 767px) {
  .features__card img {
    height: 40px;
    width: 40px;
  }
}
.features__card p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .features__card p {
    font-size: 16px;
    line-height: 20px;
  }
}
.features__card#feature-1 {
  background: linear-gradient(180deg, #4E0C9F 70%, #111111 100%);
}
.features__card#feature-2 {
  background: linear-gradient(180deg, #0C3B9F 70%, #111111 100%);
}
.features__card#feature-3 {
  background: linear-gradient(180deg, #222222 70%, #111111 100%);
}
.features__card#feature-4 {
  color: #000;
  background: linear-gradient(180deg, #65D46E 70%, #111111 100%);
}
.features__card#feature-4 p {
  color: #000;
}

.safety__title {
  text-align: center;
}
.safety__title .title {
  width: 70%;
  margin: 0 auto 24px auto;
}
@media only screen and (max-width: 767px) {
  .safety__title .title {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.safety__title p {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .safety__title p {
    margin-bottom: 20px;
  }
}
.safety__cards {
  display: grid;
  grid-template-columns: 66% 33%;
  grid-template-rows: 425px 228px;
  grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .safety__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.safety__card {
  background-color: #222222;
  border-radius: 40px;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .safety__card {
    padding: 24px;
    border-radius: 24px;
    background-size: auto 95px;
  }
}
.safety__card h3 {
  margin-bottom: 24px;
}
.safety__card p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .safety__card p {
    font-size: 16px;
    line-height: 20px;
  }
}
.safety__card#safety-1 {
  background-image: url("../img/safety/shield.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
.safety__card#safety-1 h3 {
  margin-top: 27px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .safety__card#safety-1 h3 {
    margin-top: 0;
    margin-bottom: 24px;
  }
}
.safety__card#safety-1 p {
  width: 75%;
}
.safety__card#safety-2 {
  background-image: url("../img/safety/smile.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
.safety__card#safety-3 {
  background-image: url("../img/safety/gear.svg");
  background-repeat: no-repeat;
  background-position: top right;
  grid-column: 1/-1;
}
.safety__card#safety-3 p {
  width: 70%;
}

.custom-solutions {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .custom-solutions {
    flex-direction: column;
    gap: 8px;
  }
}
.custom-solutions__main-card {
  flex: 1;
  display: flex;
}
.custom-solutions__main-card__content {
  padding: 80px;
  border-radius: 24px;
  background: linear-gradient(180deg, #65D46E 70%, #111111 100%);
  color: #000;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .custom-solutions__main-card__content {
    padding: 24px 24px 0 24px;
  }
}
.custom-solutions__main-card__content h3 {
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 40px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .custom-solutions__main-card__content h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
    font-weight: 600;
  }
}
.custom-solutions__main-card__content p {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .custom-solutions__main-card__content p {
    margin-bottom: 80px;
  }
}
.custom-solutions__main-card__content div {
  position: relative;
  z-index: 5;
}
.custom-solutions__main-card__content img {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
}
.custom-solutions__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.custom-solutions__card {
  border-radius: 24px;
  background-color: #222222;
  padding: 19px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .custom-solutions__card {
    padding: 20px 24px;
  }
}
.custom-solutions__card__title {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .custom-solutions__card__title {
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .custom-solutions__card__title img {
    width: 40px;
    height: 40px;
  }
}
.custom-solutions__card p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .custom-solutions__card p {
    font-size: 16px;
    line-height: 20px;
  }
}

.pci {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pci {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.pci__text {
  max-width: 670px;
}
.pci__text h2 {
  margin-bottom: 24px;
}

.products h1 {
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .products h1 {
    margin-bottom: 24px;
  }
}
.products__cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .products__cards {
    flex-direction: column;
    gap: 8px;
  }
}
.products__card {
  flex: 1;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, #222222 70%, #111111 100%);
}
@media only screen and (max-width: 767px) {
  .products__card {
    border-radius: 24px;
    padding: 24px;
  }
}
.products__card img {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .products__card img {
    height: 40px;
    width: 40px;
    margin-bottom: 16px;
  }
}
.products__card h3 {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .products__card h3 {
    margin-bottom: 8px;
  }
}
.products__card p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .products__card p {
    font-size: 16px;
    line-height: 20px;
  }
}
.products__card#product-1 {
  background: linear-gradient(180deg, #65D46E 70%, #111111 100%);
  color: #000;
}
.products__card#product-3 {
  background: linear-gradient(180deg, #4E0C9F 70%, #111111 100%);
}
.products__card#product-4 {
  display: flex;
  gap: 35px;
}
@media only screen and (max-width: 767px) {
  .products__card#product-4 {
    flex-direction: column;
    gap: 0;
  }
}
.products__card#product-4 img {
  align-self: start;
}

.supercharge {
  border-radius: 48px;
  background-color: #232323;
  background-image: url("../img/supercharge-bg.png");
  background-repeat: no-repeat;
  padding: 140px 90px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .supercharge {
    padding: 48px 24px;
    border-radius: 10px;
  }
}
.supercharge h3 {
  font-size: 64px;
  line-height: 76px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .supercharge h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.supercharge p {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .supercharge p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 48px;
  }
}

.terms h1 {
  text-align: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1280px) {
  .terms h1 {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .terms h1 {
    margin-bottom: 16px;
  }
}
.terms__card {
  background-color: #000;
  padding: 80px 110px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 48px;
}
@media only screen and (max-width: 1280px) {
  .terms__card {
    padding: 24px 32px;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .terms__card {
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 16px;
  }
}
.terms__block {
  margin-bottom: 16px;
}
.terms__title {
  font-weight: 700;
  margin-bottom: 0;
}
.terms__text {
  font-size: 13px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .terms__text {
    font-size: 11px;
    line-height: 16px;
  }
}

.merchant h1 {
  text-align: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1280px) {
  .merchant h1 {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .merchant h1 {
    margin-bottom: 16px;
  }
}
.merchant__card {
  background-color: #000;
  padding: 80px 110px;
  border-radius: 48px;
}
@media only screen and (max-width: 1280px) {
  .merchant__card {
    padding: 24px 32px;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .merchant__card {
    padding: 16px 24px;
    border-radius: 16px;
  }
}

.contacts h1 {
  text-align: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1280px) {
  .contacts h1 {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts h1 {
    margin-bottom: 16px;
  }
}

.documentation h1 {
  text-align: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1280px) {
  .documentation h1 {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .documentation h1 {
    margin-bottom: 16px;
  }
}
.documentation .aside__left {
  padding: 40px;
  border-radius: 24px;
}
@media only screen and (max-width: 1280px) {
  .documentation .aside__left {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .documentation .aside__left {
    border-radius: 16px;
    padding: 36px 12px;
  }
}
.documentation iframe {
  width: 100%;
  min-height: 78.8vh;
  border: none;
}
.documentation .pdf {
  flex: 1;
}
.documentation .terms__card {
  padding: 0;
}

.footer__menu {
  padding-top: 80px;
  padding-bottom: 44px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
.footer__logo {
  height: 48px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 12px;
  }
}
.footer__slogan {
  font-size: 13px;
  line-height: 16px;
  color: #65D46E;
  margin-bottom: 40px;
  max-width: 336px;
}
@media only screen and (max-width: 767px) {
  .footer__slogan {
    margin-bottom: 24px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.footer__list:last-child {
  margin-right: 125px;
}
@media only screen and (max-width: 1280px) {
  .footer__list:last-child {
    margin-right: 0;
  }
}
.footer__link {
  position: relative;
}
.footer__link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #fff;
  transition: all 0.3s;
}
.footer__link:hover:after {
  width: 100%;
}
.footer__link.active:after {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer__link {
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__info {
  margin-top: 24px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__info {
    margin-top: 20px;
  }
}
.footer__info p {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .footer__info p {
    font-size: 14px;
    line-height: 16px;
  }
}

html, body {
  min-height: 100vh;
  margin: 0;
}

body {
  background-color: #111111;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  max-width: 100dvw;
  overflow-x: hidden;
}

body.hidden {
  overflow: hidden;
}

.page-bg-full {
  background-image: url("../img/page-bg(f).png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .page-bg-full {
    background-image: url("../img/page-bg(m).png");
  }
}

.page-bg-small {
  position: relative;
  background-image: url("../img/page-bg(s).png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .page-bg-small {
    background-image: url("../img/page-bg(m).png");
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

p, h2, h3, h4, ul, h1, button, div, a, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-type: none;
  padding: 0;
}

select, input, textarea {
  border: none;
  outline: none;
  width: 100%;
}
select:active, select:focus, select:visited, input:active, input:focus, input:visited, textarea:active, textarea:focus, textarea:visited {
  border: none;
  outline: none;
}

.container {
  margin: 0 312px;
}
@media only screen and (max-width: 1720px) {
  .container {
    margin: 0 250px;
  }
}
@media only screen and (max-width: 1560px) {
  .container {
    margin: 0 200px;
  }
}
@media only screen and (max-width: 1470px) {
  .container {
    margin: 0 150px;
  }
}
@media only screen and (max-width: 1280px) {
  .container {
    margin: 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    margin: 0 12px;
  }
}

section {
  margin-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  section {
    margin-bottom: 56px;
  }
}

hr {
  border: none;
  background-color: #fff;
  height: 1px;
  width: 100%;
  opacity: 0.2;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media only screen and (min-width: 767px) {
  .hide-desktop {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
