* {
  outline: none;
  margin: 0;
  padding: 0; }

html {
  font-family: sans-serif;
  touch-action: manipulation;
  box-sizing: border-box; }

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0; }

[data-src],
[data-srcset] {
  min-width: 1px;
  min-height: 1px;
  opacity: 0;
  transition: opacity 1s; }

[data-background-image] {
  opacity: 0;
  transition: opacity 1s; }

[data-loaded="true"] {
  opacity: 1 !important; }

img {
  border: 0;
  max-width: 100%;
  vertical-align: bottom; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input,
button,
textarea,
select {
  font-family: var(--font-family);
  resize: none;
  font-size: var(--font-size);
  font-weight: 400; }

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

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }


@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

.container {
  max-width: 1176px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-site);
  padding-right: var(--gutter-site); }
  .container-middle {
    max-width: 1056px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .container-slim {
    max-width: 944px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
.column {
  padding-left: var(--gutter);
  padding-right: var(--gutter); }

.columns {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  display: flex;
  flex-wrap: wrap; }

.col-1 {
  width: 8.33333%; }

.col-2 {
  width: 16.66667%; }

.col-3 {
  width: 25.0%; }

.col-4 {
  width: 33.33333%; }

.col-5 {
  width: 41.66667%; }

.col-6 {
  width: 50.0%; }

.col-7 {
  width: 58.33333%; }

.col-8 {
  width: 66.66667%; }

.col-9 {
  width: 75.0%; }

.col-10 {
  width: 83.33333%; }

.col-11 {
  width: 91.66667%; }

.col-12 {
  width: 100.0%; }

.col-2-5 {
  width: 20%; }

svg:not(:root) {
  overflow: hidden; }

.center {
  text-align: center; }

.nowrap {
  white-space: nowrap; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 202px;
  height: 56px;
  padding: 0 20px;
  border-radius: 4px;
  background-color: var(--color-red);
  box-shadow: 0px 10px 20px rgba(109, 21, 21, 0.2);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap; }
  .btn:active, .btn:hover {
    box-shadow: none;
    transform: translateY(1px); }
  .btn svg {
    margin-right: 10px; }
  .btn--orange {
    background-color: var(--color-orange);
    box-shadow: 0 10px 20px rgba(109, 21, 21, 0.2); }
  .btn--full {
    width: 100%; }

.input {
  width: 100%;
  height: 56px;
  display: block;
  background-color: #F1F1F4;
  border-radius: 4px;
  border: none;
  padding: 0 20px;
  font-size: 18px;
  transition: .2s; }
  .input:focus {
    box-shadow: 0 0 0 2px var(--color-blue); }
  .input.error {
    box-shadow: 0 0 0 2px var(--color-red); }
  .input-group {
    margin-bottom: 8px; }
  .input.textarea {
    height: 120px;
    padding-top: 10px; }

.checkbox {
  position: absolute;
  opacity: 0; }
  .checkbox:checked + .checkbox-label:before {
    background: #fff url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.13818 3.33878L3.99058 6.10937L9.13818 1.10938' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E%0A") 50% 50% no-repeat; }
  .checkbox-label {
    display: block;
    position: relative;
    padding-left: 27px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer; }
    .checkbox-label:before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 4px;
      background-color: #fff;
      left: 0;
      top: 1px; }
    .checkbox-label a {
      color: inherit;
      text-decoration: underline; }

.select {
  appearance: none;
  -webkit-appearance: none; }

:root {
  --gutter-site: 20px;
  --gutter: 12px;
  --color-text: #fff;
  --color-black: #000;
  --color-blue: #3777FF;
  --color-orange: #FF6600;
  --color-red: #FF2E00;
  --color-yellow: #F6C916;
  --font-size: 18px;
  --line-height: 22px;
  --font-family: 'Gilroy', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }

html {
  scroll-behavior: smooth; }

body {
  height: 100vh;
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--font-family);
  color: var(--color-text);
  font-weight: 500;
  cursor: default;
  background: #FFA51F;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

a {
  color: var(--color-red);
  text-decoration: none;
  outline: none; }
  a:hover {
    text-decoration: none; }

.wrapper {
  min-width: 320px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

.wrap {
  background: url('../img/bg-hero.png') no-repeat 80% 120px;
  flex: 1 0 auto;
  position: relative;
  z-index: 2; }

.footer {
  flex: 0 0 auto;
  position: relative;
  background-color: var(--color-black);
  padding: 48px 0 52px; }
  .footer-content {
    position: relative; }

.header {
  position: relative;
  padding: 40px 0;
  align-items: center; }
  .header-phone {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .header-phone {
        font-size: 20px; } }

.head {
  text-align: center;
  margin-bottom: 100px;
  position: relative; }
  .head-claim {
    width: 337px;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(7deg); }
  @media (max-width: 767px) {
    .head-claim {
      width: 150px; } }

@media (max-width: 767px) {
  .logotype {
    width: 150px; } }

.showcase-section {
  position: relative;
  padding-bottom: 200px; }

.showcase-section .btn {
  margin: 36px 0;
}

.showcase-title {
  font-weight: 700;
  position: relative; }

.showcase-claim {
  width: 337px;
  position: absolute;
  right: 30%;
  top: calc(100% + 10px);
  transform: rotate(7deg); }
  @media (max-width: 767px) {
    .showcase-claim {
      width: 150px; } }
.showcase-hashtag {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;}
.showcase-phone {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700; }
.showcase-phone a {
  text-decoration: none;
  font-size: 80px;
  line-height: 100px;
  font-weight: 600;
  color: var(--white);
  display: block; }
.showcase-phone a:hover {
  color: var(--color-yellow); }

.title {
  font-weight: 700;
  font-size: 72px;
  line-height: 76px;
  margin-bottom: 50px;
  color: var(--color-red); }
  @media (max-width: 1023px) {
    .title {
      font-size: 48px;
      line-height: 56px; } }
  @media (max-width: 499px) {
    .title {
      font-size: 36px;
      line-height: 36px; } }
  .title--min {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 24px; }
    @media (max-width: 1023px) {
      .title--min {
        font-size: 34px;
        line-height: 40px; } }
    @media (max-width: 499px) {
      .title--min {
        font-size: 30px;
        line-height: 36px; } }

.main-title {
  text-align: center; }

.price-card {
  position: relative;
  max-width: 336px;
  margin: 0 auto 24px;
  background-color: #fff;
  border-radius: 24px;
  color: var(--color-black);
  padding: 35px 60px 48px;
  min-height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s; }
  @media (max-width: 1175px) {
    .price-card {
      padding-right: 40px;
      padding-left: 40px; } }
  .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(65, 118, 251, 0.3); }
  .price-card__title {
    color: var(--color-red);
    font-weight: bold;
    margin-bottom: 20px; }
  .price-card__cost {
    position: relative;
    width: fit-content; }
  .price-card__label {
    background: url(../img/label.svg) no-repeat;
    width: 101px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    right: -5px;
    bottom: 20px;
    transform: rotate(-12deg); }
    .price-card__label span {
      font-size: 18px;
      margin-left: 3px; }
  .price-card__label-eco {
    background: url(../img/label-eco.svg) no-repeat;
    text-transform: uppercase;
    width: 130px;
    height: 130px;
    right: -40px;
    bottom: -65px; }
  .price-card__label-delivery {
    background: url(../img/label-delivery.svg) no-repeat;
    text-transform: uppercase;
    width: 141px;
    height: 47px;
    right: -35px;
    bottom: 0; }
  .price-card__value {
    font-weight: bold;
    font-size: 94px;
    line-height: 80px;
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px; }
    .price-card__value span {
      font-size: 30px;
      line-height: 30px; }
  .price-card__image {
    text-align: center;
    position: relative;
    margin: 20px 60px 20px -60px; }
    .price-card__image img {
      max-width: none; }
  .price-card__text {
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 95px; }
  .price-card__info {
    flex-grow: 1;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 20px; }
    .price-card__info a {
      color: var(--color-orange);
      font-weight: 600; }

.price-information {
  display: flex;
  align-items: center;
  margin: 35px 0 95px; }
  .price-information__icon {
    flex-shrink: 0; }

.advantages {
  position: relative;
  margin-bottom: 32px;
  border-radius: 32px;
  padding: 40px 80px;
  min-height: 452px;
  background-color: var(--color-yellow);
  color: var(--color-black); }
.advantages .title {
  color: var(--color-black); }
  @media (min-width: 1024px) {
    .advantages {
      display: flex;
      justify-content: space-between;
      align-items: center; } }
  @media (max-width: 499px) {
    .advantages {
      padding: 40px; } }
  .advantages:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #fff; }
  @media (min-width: 1024px) {
    .advantages-aside {
      width: 50%;
      padding: 0 20px;
      text-align: center; }
    .advantages-content {
      width: 50%;
      padding: 0 20px; } }
  .advantages-text ul li {
    padding-left: 22px;
    background: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5L5.5 9L13.5 1' stroke='%23FF6600' stroke-width='2.5'/%3E%3C/svg%3E") 0 5px no-repeat; }
    .advantages-text ul li:not(:first-child) {
      margin-top: 16px; }
  @media (max-width: 1023px) {
    .advantages-image {
      text-align: center;
      margin-bottom: 24px; } }

.social {
  display: flex;
  justify-content: center; }
  .social-link {
    width: 48px;
    height: 48px;
    margin: 0 8px;
    background: #1F1A1A;
    border-radius: 8px;
    display: flex;
    transition: background-color .2s; }
    .social-link img {
      margin: auto; }
    .social-link.fb:hover {
      background-color: #1877F2; }
    .social-link.im:hover {
      background-color: #E4405F; }
    .social-link.vk:hover {
      background-color: #4C75A3; }
    .social-link.ok:hover {
      background-color: #EE8208; }
    .social-link.tw:hover {
      background-color: #1DA1F2; }
    .social-link.yt:hover {
      background-color: #CD201F; }

.copyright {
  text-align: center;
  color: #A9A9A9;
  font-size: 14px;
  line-height: 16px;
  margin-top: 48px; }

.shop-container {
  background: #1F1A1A;
  padding: 72px 0 96px;
}
.shop-container .title {
  color: var(--white);
}
.shop {
  background: var(--color-black) url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 16C28 20.9828 22.4826 26.3104 20.6119 27.9736C20.2581 28.2882 19.7419 28.2882 19.3881 27.9736C17.5174 26.3104 12 20.9828 12 16C12 11.5817 15.5817 8 20 8C24.4183 8 28 11.5817 28 16Z' stroke='white' stroke-width='2'/%3E%3Cpath d='M13 26H11.5352C11.2008 26 10.8886 26.1671 10.7031 26.4453L8.03647 30.4453C7.59343 31.1099 8.06982 32 8.86852 32H20H31.1315C31.9302 32 32.4066 31.1099 31.9635 30.4453L29.2969 26.4453C29.1114 26.1671 28.7992 26 28.4648 26H27' stroke='white' stroke-width='2'/%3E%3Ccircle cx='20' cy='16' r='3' stroke='white' stroke-width='2'/%3E%3C/svg%3E") calc(100% - 16px) 16px no-repeat;
  margin-bottom: 24px;
  border-radius: 24px;
  min-height: 290px;
  padding: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px; }
  .shop b {
    font-size: 18px;
    line-height: 22px;
    display: block;
    color: var(--color-blue); }

.form {
  max-width: 360px;
  margin: 0 auto;
  padding-top: 20px; }
  .form-title {
    font-weight: 600;
    margin-bottom: 8px; }
  .form-confirm {
    margin: 24px 0 12px; }
  .form-section {
    margin-bottom: 75px; }
  .form-content {
    background-color: var(--color-orange);
    border-radius: 24px;
    padding: 64px 30px 88px; }

.devices-section {
  overflow: hidden;
  background: var(--color-black)!important;
  color: #FFF; }
  .devices-section .title {
    color: #FFF; }

.devices-layout {
  display: flex; }
  .devices-layout__content {
    width: 100%;
    max-width: 410px;
    flex-shrink: 0;
    margin-right: 22px; }
  .devices-layout__image {
    margin-top: -100px;
    flex-grow: 1; }
    .devices-layout__image img {
      max-width: none; }

.devices-list {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0; }
  .devices-list li {
    width: 100px;
    flex-shrink: 0;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin: 0 10px 24px; }
    .devices-list li img {
      display: block;
      margin: 0 auto 18px; }

.download {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #656565;
  border-radius: 10px;
  width: 202px;
  height: 60px;
  transition: border-color .2s; }
  .download:hover {
    border-color: var(--color-text); }

.background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1024px;
  background: url(../img/background.png) 50% 0 no-repeat;
  background-size: contain; }
.up {
  position: absolute;
  left: calc(100% - 20px);
  top: 0;
  background-color: #1F1A1A;
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 48px; }
  @media (max-width: 1175px) {
    .up {
      left: auto;
      right: 0;
      top: auto;
      bottom: 0; } }
  @media (max-width: 767px) {
    .up {
      position: static;
      margin: 24px auto 0; } }
  .up::after {
    content: '';
    width: 10px;
    height: 7px;
    background: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.19238 5.5957L5.09618 1.49951L0.999985 5.59571' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat;
    margin-left: 15px; }

@media (max-width: 1175px) {
  .container {
    max-width: 1024px; }
  .lg-col-1 {
    width: 8.33333%; }
  .lg-col-2 {
    width: 16.66667%; }
  .lg-col-3 {
    width: 25.0%; }
  .lg-col-4 {
    width: 33.33333%; }
  .lg-col-5 {
    width: 41.66667%; }
  .lg-col-6 {
    width: 50.0%; }
  .lg-col-7 {
    width: 58.33333%; }
  .lg-col-8 {
    width: 66.66667%; }
  .lg-col-9 {
    width: 75.0%; }
  .lg-col-10 {
    width: 83.33333%; }
  .lg-col-11 {
    width: 91.66667%; }
  .lg-col-12 {
    width: 100.0%; }
  .lg-hidden {
    display: none; } }

@media (max-width: 1023px) {
  .container {
    max-width: 768px; }
  .md-col-1 {
    width: 8.33333%; }
  .md-col-2 {
    width: 16.66667%; }
  .md-col-3 {
    width: 25.0%; }
  .md-col-4 {
    width: 33.33333%; }
  .md-col-5 {
    width: 41.66667%; }
  .md-col-6 {
    width: 50.0%; }
  .md-col-7 {
    width: 58.33333%; }
  .md-col-8 {
    width: 66.66667%; }
  .md-col-9 {
    width: 75.0%; }
  .md-col-10 {
    width: 83.33333%; }
  .md-col-11 {
    width: 91.66667%; }
  .md-col-12 {
    width: 100.0%; }
  .md-hidden {
    display: none; } }

@media (max-width: 767px) {
  .container {
    max-width: 500px; }
  .sm-col-1 {
    width: 8.33333%; }
  .sm-col-2 {
    width: 16.66667%; }
  .sm-col-3 {
    width: 25.0%; }
  .sm-col-4 {
    width: 33.33333%; }
  .sm-col-5 {
    width: 41.66667%; }
  .sm-col-6 {
    width: 50.0%; }
  .sm-col-7 {
    width: 58.33333%; }
  .sm-col-8 {
    width: 66.66667%; }
  .sm-col-9 {
    width: 75.0%; }
  .sm-col-10 {
    width: 83.33333%; }
  .sm-col-11 {
    width: 91.66667%; }
  .sm-col-12 {
    width: 100.0%; }
  .sm-hidden {
    display: none; } }

@media (max-width: 499px) {
  .xs-col-1 {
    width: 8.33333%; }
  .xs-col-2 {
    width: 16.66667%; }
  .xs-col-3 {
    width: 25.0%; }
  .xs-col-4 {
    width: 33.33333%; }
  .xs-col-5 {
    width: 41.66667%; }
  .xs-col-6 {
    width: 50.0%; }
  .xs-col-7 {
    width: 58.33333%; }
  .xs-col-8 {
    width: 66.66667%; }
  .xs-col-9 {
    width: 75.0%; }
  .xs-col-10 {
    width: 83.33333%; }
  .xs-col-11 {
    width: 91.66667%; }
  .xs-col-12 {
    width: 100.0%; }
  .xs-hidden {
    display: none; } }

@media (min-width: 1176px) {
  .lg-visible {
    display: none; }
  .lg-flex {
    display: flex; } }

@media (min-width: 1024px) {
  .md-visible {
    display: none; }
  .md-flex {
    display: flex; } }

@media (min-width: 768px) {
  .sm-visible {
    display: none; }
  .sm-flex {
    display: flex; } }

@media (min-width: 500px) {
  .xs-visible {
    display: none; }
  .xs-flex {
    display: flex; } }

.countdown {
  text-align: right;
  font-size: 22px;
  line-height: 29px;
  color: #fff;
}
.countdown > div {
  display: inline-block;
  margin: 0 6px;
}
.countdown > div > div {
  display: inline-block;
  position: relative;
}
.count {
  position: absolute;
  top: 7px;
  bottom: 0;
  left: 7px;
  right: 0;
  background: url(./../img/countdown.svg);
  background-size: 32px;
  background-repeat: no-repeat;
}

.count.count-1 {
  background-position-y: -68px;
}

.count.count-2 {
  background-position-y: -136px;
}

.count.count-3 {
  background-position-y: -204px;
}

.count.count-4 {
  background-position-y: -272px;
}

.count.count-5 {
  background-position-y: -340px;
}

.count.count-6 {
  background-position-y: -408px;
}

.count.count-7 {
  background-position-y: -476px;
}

.count.count-8 {
  background-position-y: -544px;
}

.count.count-9 {
  background-position-y: -612px;
}

@media (max-width: 499px) {
  .header .column {
    text-align: center; }
  .countdown {
    text-align: center;
    font-size: 18px;
    margin-top: 20px; }
  .countdown > div > div {
    zoom: .65; }
  .showcase-section {
    padding-bottom: 50px;
    text-align: center; }
  .showcase-claim, .head-claim {
    display: none; }
  .showcase-hashtag {
    font-size: 24px;
    line-height: 28px; }
  .showcase-phone {
    font-size: 18px;
    line-height: 22px; }
  .showcase-phone a {
    font-size: 48px;
    line-height: 52px; }
  .wrap {
    background: none; }
  .background {
    width: 200%; }
}
@media (max-width: 1024px) {
  .wrap {
    background: none; }
  .countdown > div > div {
    zoom: .70; }
  .showcase-claim, .head-claim {
    right: 0;
    top: 0; }
  .head-claim {
    zoom: .65;
  }
}
