@charset "UTF-8";

@font-face {
  font-family: Arimo;
  font-display: swap;
  src: url("../fonts/Arimo-Bold.b4808115905e.woff2") format("woff2"), url("../fonts/Arimo-Bold.091985813539.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Arimo;
  font-display: swap;
  src: url("../fonts/Arimo.5b1cf280ba77.woff2") format("woff2"), url("../fonts/Arimo.9246f7d24db1.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Officinaserifextraboldc;
  font-display: swap;
  src: url("../fonts/Officinaserifextraboldc.e681e149c811.woff2") format("woff2"), url("../fonts/Officinaserifextraboldc.56015c8d4c00.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #1f2229;
  line-height: 1;
  font-family: "Arimo";
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Arimo";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ibg--top {
  -o-object-position: top;
  object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
  object-position: left;
}

.ibg--right {
  -o-object-position: right;
  object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.d-none {
  display: none !important;
}

div {
  -webkit-tap-highlight-color: transparent;
}

.section {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section-title {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 40px;
  background-color: #ff59a3;
  color: #1f2229;
  padding: 30px 52px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: background 0.2s ease-out 0s, color 0.2s ease-out 0s;
  -o-transition: background 0.2s ease-out 0s, color 0.2s ease-out 0s;
  transition: background 0.2s ease-out 0s, color 0.2s ease-out 0s;
}

.btn img,
.btn svg {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.loading-btn-blue {
  position: relative;
  background: transparent !important;
  cursor: default !important;
  color: transparent !important;
}

.loading-btn-blue * {
  opacity: 0 !important;
  visibility: hidden !important;
}

.loading-btn-blue:before {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  background-image: url("../img/icons/preloader--blue.svg");
  background-position: center;
  background-size: contain;
  -webkit-animation: around 1s linear infinite;
  animation: around 1s linear infinite;
}

@-webkit-keyframes around {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes around {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.t2-order-v1__form-wrapper .suggestions-nowrap {
  white-space: nowrap;
}

.t2-order-v1__form-wrapper .suggestions-input {
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.t2-order-v1__form-wrapper .suggestions-input::-ms-clear {
  display: none;
}

.t2-order-v1__form-wrapper .suggestions-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-text-size-adjust: 100%;
  margin-top: 8px;
}

.t2-order-v1__form-wrapper .suggestions-suggestions {
  border: none;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  left: 0;
  min-width: 100%;
  position: absolute;
  z-index: 100;
  -webkit-text-size-adjust: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12), 0px 0px 40px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12), 0px 0px 40px rgba(0, 0, 0, 0.06);
  border-radius: 32px;
}

.t2-order-v1__form-wrapper .suggestions-suggestions strong {
  font-weight: 400;
  color: #0055a5;
}

.t2-order-v1__form-wrapper .suggestions-suggestions.suggestions-mobile {
  border-style: none;
}

.t2-order-v1__form-wrapper .suggestions-suggestions.suggestions-mobile .suggestions-suggestion {
  border-bottom: none;
}

.t2-order-v1__form-wrapper .suggestions-suggestion {
  padding: 19px 36px 20px;
  overflow: hidden;
  font-size: 16px;
  line-height: 16px;
  border-top: 1px solid #eeeeee;
}

.t2-order-v1__form-wrapper .suggestions-suggestion:hover {
  background: #f8f8f8;
}

.t2-order-v1__form-wrapper .suggestions-selected {
  background: #f0f0f0;
}

.t2-order-v1__form-wrapper .suggestions-selected:hover {
  background: #f0f0f0;
}

.t2-order-v1__form-wrapper .suggestions-hint {
  padding: 20px 36px;
  white-space: nowrap;
  overflow: hidden;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 14px;
}

.t2-order-v1__form-wrapper .suggestions-subtext {
  color: #8b8b8b;
}

.t2-order-v1__form-wrapper .suggestions-subtext_inline {
  display: inline-block;
  min-width: 6em;
  vertical-align: bottom;
  margin: 0 0.5em 0 0;
}

.t2-order-v1__form-wrapper .suggestions-subtext-delimiter {
  display: inline-block;
  width: 2px;
}

.t2-order-v1__form-wrapper .suggestions-subtext_label {
  margin: 0 0 0 0.25em;
  border-radius: 3px;
  padding: 0 3px;
  background: #f5f5f5;
  font-size: 85%;
}

.t2-order-v1__form-wrapper .suggestions-value[data-suggestion-status=LIQUIDATED] {
  position: relative;
}

.t2-order-v1__form-wrapper .suggestions-value[data-suggestion-status=LIQUIDATED]:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  content: "";
}

.t2-order-v1__form-wrapper .suggestions-promo {
  font-size: 85%;
  display: none;
  color: #8b8b8b;
  padding: 4px;
  text-align: center;
}

.t2-order-v1__form-wrapper .suggestions-promo a {
  color: #777;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  line-height: 20px;
  text-decoration: none;
}

.t2-order-v1__form-wrapper .suggestions-promo a:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.t2-order-v1__form-wrapper .suggestions-promo svg {
  height: 20px;
  vertical-align: bottom;
}

.t2-header-v1 {
  background-color: #fff;
  padding: 20px 0;
}

.t2-header-v1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-header-v1__logo {
  width: 57px;
  height: 40px;
  position: relative;
  z-index: 5;
}

.t2-header-v1__logo img,
.t2-header-v1__logo svg {
  width: 100%;
  height: 100%;
}

.t2-header-v1__right {
  margin-left: auto;
}

.t2-header-v1__phone-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-header-v1__phone-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.t2-header-v1__phone-icon img,
.t2-header-v1__phone-icon svg {
  width: 20px;
  height: 20px;
}

.t2-header-v1__phone-text {
  font-size: 14px;
  line-height: 14px;
  color: #8b8b8b;
  margin-bottom: 6px;
}

.t2-header-v1__phone {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}

.t2-header-v1__lk-btn {
  margin-left: 60px;
  background-color: #f2f2f2;
  padding: 13px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

.icon-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
  padding-left: 3.5px;
  padding-right: 3.5px;
  position: relative;
  z-index: 100;
  margin-left: 16px;
}

.icon-menu span {
  width: 21px;
  height: 2px;
  background-color: #000;
  position: relative;
  border-radius: 2px;
}

.icon-menu span:before,
.icon-menu span:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  border-radius: 2px;
  -webkit-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}

.icon-menu span:before {
  bottom: 6px;
}

.icon-menu span:after {
  top: 6px;
}

.menu-open .icon-menu span {
  background-color: transparent;
}

.menu-open .icon-menu span::before {
  bottom: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-open .icon-menu span::after {
  top: 0;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menu-open .t2-header-v1__phone-wrapper {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.t2-hero-v1 {
  background-color: #1f2229;
  padding: 91px 0 90px;
}

.t2-hero-v1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-hero-v1__left {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 630px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-hero-v1__title {
  font-size: 60px;
  line-height: 64px;
  font-weight: 700;
  color: #fff;
}

.t2-hero-v1__title span {
  display: inline-block;
  position: relative;
  color: #1f2229;
}

.t2-hero-v1__title span:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff59a3;
  position: absolute;
  top: -4px;
  left: -16px;
  z-index: -1;
  padding: 2px 16.5px;
  border-radius: 16px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.t2-hero-v1__details {
  background-color: #fff;
  padding: 40px;
  border-radius: 44px;
  margin-top: 40px;
}

.t2-hero-v1__param-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 16px;
}

.t2-hero-v1__param-row:first-child {
  margin-top: 0;
}

.t2-hero-v1__param-name {
  font-size: 24px;
  line-height: 24px;
  margin-right: 20px;
  width: 100%;
  max-width: 131px;
}

.t2-hero-v1__param-progress {
  margin-right: 20px;
  width: 43.639%;
  height: 16px;
  border-radius: 8px;
  background-color: #f2f2f2;
  position: relative;
}

.t2-hero-v1__param-progress span {
  display: inline-block;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  -webkit-transition: width 0.4s ease-out;
  -o-transition: width 0.4s ease-out;
  transition: width 0.4s ease-out;
  top: 0;
  left: 0;
}

.t2-hero-v1__param-progress.progress-100 span {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ff511a), color-stop(50%, #ffce1a), to(#00b956));
  background: -o-linear-gradient(left, #ff511a 0%, #ffce1a 50%, #00b956 100%);
  background: linear-gradient(90deg, #ff511a 0%, #ffce1a 50%, #00b956 100%);
}

.width-0 .t2-hero-v1__param-progress.progress-100 span {
  width: 0%;
}

.t2-hero-v1__param-progress.progress-70 span {
  width: 70%;
  background: -webkit-gradient(linear, left top, right top, from(#28e17e), to(#00b956)), #00b956;
  background: -o-linear-gradient(left, #28e17e 0%, #00b956 100%), #00b956;
  background: linear-gradient(90deg, #28e17e 0%, #00b956 100%), #00b956;
}

.width-0 .t2-hero-v1__param-progress.progress-70 span {
  width: 0%;
}

.t2-hero-v1__param-count {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  width: 100%;
  max-width: 120px;
}

.t2-hero-v1__simcards-wrapper {
  margin-top: 32px;
  background-color: #f2f2f2;
  border-radius: 30px;
  padding: 18px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.t2-hero-v1__simcard-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-hero-v1__simcard-icon img,
.t2-hero-v1__simcard-icon svg {
  width: 100%;
  height: 100%;
}

.t2-hero-v1__simcard-text {
  font-size: 20px;
  line-height: 20px;
}

.t2-hero-v1__simcard-text strong {
  font-weight: 700;
  color: #ff59a3;
  display: inline-block;
}

.t2-hero-v1__order-btn {
  margin-top: 20px;
  width: 100%;
  background-color: #1f2229;
  color: #fff;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.t2-hero-v1__indicators {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 16px;
  max-width: 630px;
}

.t2-hero-v1__indicator {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 18px 26px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #505050;
  text-align: center;
}

.t2-hero-v1__indicator img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.t2-hero-v1__right {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 572px;
  margin-bottom: 33px;
  position: relative;
  padding-bottom: 43.75%;
}

.t2-hero-v1__img-wrapper {
  position: absolute;
  bottom: -52px;
  right: -320px;
}

.t2-hero-v1__price-old {
  position: absolute;
  right: 208px;
  bottom: 220px;
  z-index: 2;
  width: 236px;
  height: 80px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 40px;
  color: #8b8b8b;
  font-size: 56px;
  line-height: 56px;
}

.t2-hero-v1__price-old span {
  display: inline-block;
  position: relative;
}

.t2-hero-v1__price-old span:before {
  content: "";
  width: calc(100% + 16px);
  border-radius: 2px;
  height: 4px;
  background-color: #8b8b8b;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -8px;
}

.t2-hero-v1__price {
  position: absolute;
  bottom: 100px;
  right: -60px;
  width: 318px;
  height: 80px;
  background-color: #ff59a3;
  border-radius: 40px;
  color: #1f2229;
  font-size: 56px;
  line-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t2-hero-v1__mobile-img {
  display: none;
}

.t2-terms-v1__title {
  text-align: center;
}

.t2-terms-v1__wrapper {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-terms-v1__item {
  width: calc(33.3333333333% - 14.6666666667px);
  background-color: #f2f2f2;
  border-radius: 44px;
  padding: 40px;
}

.t2-terms-v1__item-body {
  width: 100%;
}

.t2-terms-v1__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t2-terms-v1__item-icon img,
.t2-terms-v1__item-icon svg {
  width: 40px;
  height: 40px;
}

.t2-terms-v1__item-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 20px;
}

.t2-terms-v1__item-progress {
  width: 100%;
  height: 16px;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
}

.t2-terms-v1__item-progress span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-block;
  height: 100%;
  border-radius: 8px;
}

.t2-terms-v1__item-progress.progress-100 span {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ff511a), color-stop(50%, #ffce1a), to(#00b956));
  background: -o-linear-gradient(left, #ff511a 0%, #ffce1a 50%, #00b956 100%);
  background: linear-gradient(90deg, #ff511a 0%, #ffce1a 50%, #00b956 100%);
}

.t2-terms-v1__item-progress.progress-70 span {
  width: 70%;
  background: -webkit-gradient(linear, left top, right top, from(#28e17e), to(#00b956));
  background: -o-linear-gradient(left, #28e17e 0%, #00b956 100%);
  background: linear-gradient(90deg, #28e17e 0%, #00b956 100%);
}

.t2-terms-v1__item-info {
  margin-top: 20px;
  font-size: 28px;
  line-height: 28px;
}

.t2-devices-v1 {
  margin-top: 60px;
}

.t2-devices-v1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.t2-devices-v1__left {
  width: 100%;
  max-width: 344px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-devices-v1__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  max-width: 275px;
}

.t2-devices-v1__items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 844px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.t2-devices-v1__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 196px;
  flex: 1 1 196px;
  height: 196px;
  border-radius: 36px;
  border: 1px solid #dddddd;
  padding: 28px;
  position: relative;
  text-align: left;
}

.t2-devices-v1__item img {
  position: absolute;
  right: 28px;
  bottom: 28px;
}

.t2-devices-v1__item:nth-child(1) img {
  width: 110px;
  height: 66px;
}

.t2-devices-v1__item:nth-child(2) img {
  width: 85px;
  height: 100px;
}

.t2-devices-v1__item:nth-child(3) img {
  width: 68px;
  height: 90px;
}

.t2-devices-v1__item:nth-child(4) img {
  width: 83px;
  height: 90px;
}

.t2-devices-v1__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}

.t2-devices-v1__order-btn {
  position: absolute;
  left: 0;
  bottom: 0;
}

.t2-delivery-v1 {
  background-color: #f0f1f3;
}

.t2-delivery-v1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.t2-delivery-v1__left {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: 100%;
  max-width: 412px;
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}

.t2-delivery-v1__title span {
  display: inline-block;
  position: relative;
  color: #fff;
}

.t2-delivery-v1__title span:before {
  content: "";
  width: 450px;
  height: 64px;
  background-color: #0055a5;
  border-radius: 16px;
  position: absolute;
  z-index: -1;
  bottom: -5px;
  left: -20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.t2-delivery-v1__text {
  font-size: 24px;
  line-height: 32px;
  margin-top: 32px;
}

.t2-delivery-v1__right {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: 100%;
  max-width: 630px;
  border-radius: 44px;
  overflow: hidden;
  margin-left: 60px;
}

.t2-delivery-v1__right img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.t2-delivery-v1__order-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.t2-order-v1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-order-v1__left {
  width: calc(50% - 10px);
  border: 1px solid #dddddd;
  border-radius: 44px;
  padding-bottom: 60px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.t2-order-v1__left-title {
  padding: 60px 60px 40px 60px;
}

.t2-order-v1__order-params {
  background-color: #f0f1f3;
  padding: 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-order-v1__order-param {
  width: 100%;
  max-width: 156px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
}

.t2-order-v1__order-param-icon {
  width: 68px;
  height: 68px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.t2-order-v1__order-param-icon img,
.t2-order-v1__order-param-icon svg {
  width: 32px;
  height: 32px;
}

.t2-order-v1__order-param-title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.t2-order-v1__order-param-text {
  margin-top: 12px;
  font-size: 24px;
  line-height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-order-v1__order-table {
  padding: 60px 60px 41px;
}

.t2-order-v1__order-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
}

.t2-order-v1__order-table-row:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.t2-order-v1__order-table-row:last-child .t2-order-v1__order-table-name {
  font-weight: 700;
}

.t2-order-v1__order-table-row:last-child .t2-order-v1__order-table-num {
  background-color: #1f2229;
  color: #fff;
  border-color: #1f2229;
}

.t2-order-v1__order-table-name {
  font-size: 24px;
  line-height: 24px;
}

.t2-order-v1__order-table-name .hide {
  display: none;
}

.t2-order-v1__order-table-num {
  border: 1px solid #eeeeee;
  padding: 7px 12px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.t2-order-v1__desctop-simcards-wrapper {
  background-color: #f0f1f3;
  border-radius: 30px;
  width: 100%;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.t2-order-v1__simcard-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-order-v1__simcard-icon img,
.t2-order-v1__simcard-icon svg {
  width: 100%;
  height: 100%;
}

.t2-order-v1__simcard-text {
  font-size: 20px;
  line-height: 20px;
}

.t2-order-v1__simcard-text strong {
  font-weight: 700;
  color: #ff59a3;
  display: inline-block;
}

.t2-order-v1__right {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: calc(50% - 10px);
  background-color: #f0f1f3;
  padding: 60px;
  border-radius: 44px;
}

.t2-order-v1__right-title {
  margin-bottom: 32px;
  white-space: nowrap;
}

.t2-order-v1__right-subtitle {
  font-size: 24px;
  line-height: 32px;
}

.t2-order-v1__right-mobile-title {
  display: none;
}

.t2-order-v1__form-wrapper {
  margin-top: 40px;
}

.t2-order-v1__form-row {
  margin-top: 20px;
}

.t2-order-v1__form-row:first-child {
  margin-top: 0;
}

.t2-order-v1__input-wrapper {
  position: relative;
}

.t2-order-v1__form-input {
  width: 100%;
  height: 80px;
  border-radius: 40px;
  padding-left: 34px;
  padding-top: 20px;
  font-size: 20px;
  line-height: 20px;
  border: 2px solid transparent;
  -webkit-transition: border 0.2s ease-out;
  -o-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  outline: none;
}

.t2-order-v1__form-input:focus {
  border-color: #1f2229;
}

.t2-order-v1__form-input:focus::-webkit-input-placeholder {
  opacity: 1;
}

.t2-order-v1__form-input:focus::-moz-placeholder {
  opacity: 1;
}

.t2-order-v1__form-input:focus:-ms-input-placeholder {
  opacity: 1;
}

.t2-order-v1__form-input:focus::-ms-input-placeholder {
  opacity: 1;
}

.t2-order-v1__form-input:focus::placeholder {
  opacity: 1;
}

.t2-order-v1__form-input::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.t2-order-v1__form-input::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.t2-order-v1__form-input:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.t2-order-v1__form-input::-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.t2-order-v1__form-input::placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.t2-order-v1__input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: absolute;
  left: 36px;
  top: 30px;
  pointer-events: none;
}

.input--focus .t2-order-v1__input-placeholder {
  font-size: 14px;
  line-height: 14px;
  top: 19px;
}

.input--hasValue .t2-order-v1__input-placeholder {
  font-size: 14px;
  line-height: 14px;
  top: 19px;
}

.t2-order-v1__form-address-info {
  border: 1px solid rgba(0, 85, 165, 0.3);
  padding: 19px 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #0055a5;
  font-size: 16px;
  line-height: 16px;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: none;
}

.t2-order-v1__form-address-info svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.t2-order-v1__form-address-info.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.t2-order-v1__form-submit {
  width: 100%;
  margin-top: 40px;
}

.t2-order-v1__mobile-simcards-wrapper {
  display: none;
}

.t2-order-v1__form-agree {
  margin-top: 32px;
  font-size: 14px;
  line-height: 22px;
  color: #8b8b8b;
  text-align: center;
}

.t2-order-v1__form-agree a {
  display: inline-block;
  color: #0055a5;
  position: relative;
}

.t2-order-v1__form-agree a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  background-color: rgba(0, 85, 165, 0.3);
}

.t2-activation-v1 {
  background-color: #f0f1f3;
  padding-bottom: 120px;
  padding-top: 120px;
}

.t2-activation-v1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-activation-v1__left {
  width: 100%;
  max-width: 528px;
}

.t2-activation-v1__right {
  position: relative;
  width: 100%;
  max-width: 412px;
}

.t2-activation-v1__title {
  font-size: 52px;
  line-height: 56px;
  font-weight: 700;
}

.t2-activation-v1__img-mobile-wrapper {
  display: none;
}

.t2-activation-v1__img {
  width: 412px;
  height: 598px;
}

.t2-activation-v1__sim-img {
  width: 130px;
  height: 212px;
  position: absolute;
  right: -65px;
  top: 105px;
  z-index: 2;
}

.t2-activation-v1__sim-img img {
  width: 100%;
  height: 100%;
}

.t2-activation-v1__law {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  padding: 40px;
  border-radius: 44px;
  font-size: 16px;
  line-height: 24px;
  bottom: 112px;
  left: -218px;
  width: 382px;
}

.t2-activation-v1__law br {
  display: none;
}

.main-bee-v3 .t2-activation-v1__law {
  border-radius: 44px;
}

.t2-activation-v1__info {
  margin-top: 40px;
}

.t2-activation-v1__info-text p {
  font-size: 20px;
  line-height: 28px;
  margin-top: 24px;
}

.t2-activation-v1__info-text p span {
  display: inline-block;
}

.t2-activation-v1__info-text p a {
  color: #ff59a3;
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.t2-activation-v1__info-text p a:before {
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.t2-activation-v1__info-text p:nth-child(3) a:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 50, 67, 0.3);
}

.t2-activation-v1__info-text p:first-of-type {
  margin-top: 0;
}

.t2-activation-v1__info-text p:last-of-type {
  margin-top: 32px;
}

.t2-activation-v1__info-text p:last-of-type a {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.04em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
}

.t2-activation-v1__info-text p:last-of-type a:first-of-type {
  margin-top: 0;
}

.t2-activation-v1__info-text p:last-of-type a svg {
  width: 14px;
  height: 14px;
  margin-left: 8px;
}

.t2-activation-v1__info-text p strong {
  font-weight: 700;
  color: #ff59a3;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.t2-activation-v1__info-text.hide p {
  display: none;
}

.t2-activation-v1__info-text.hide p:first-of-type {
  display: block;
}

.t2-activation-v1__info-text.hide p:last-of-type {
  margin-top: 20px;
}

.t2-activation-v1__info-more-btn {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  color: #ff59a3;
  cursor: pointer;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.t2-activation-v1__info-more-btn svg {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.t2-activation-v1__icon-block-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 24px;
}

.t2-activation-v1__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 20px;
  background-color: #fff;
}

.t2-activation-v1__icon img,
.t2-activation-v1__icon svg {
  width: 20px;
  height: 20px;
}

.t2-activation-v1__text {
  color: #8b8b8b;
  font-size: 16px;
  line-height: 24px;
  max-width: 223px;
}

.t2-activation-v1__order-wrapper {
  margin-top: 40px;
}

.footer {
  padding-top: 80px;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__logo {
  margin-right: auto;
  width: 73px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__col {
  margin-left: 160px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer__col-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 40px;
  color: #000;
}

.footer__col-list {
  padding-left: 0;
  list-style: none;
}

.footer__col-list li {
  color: #8b8b8b;
  font-size: 16px;
  line-height: 16px;
  margin-top: 24px;
}

.footer__col-list li:first-of-type {
  margin-top: 0;
}

.footer-t2 .footer__col-list li {
  color: #8f9399;
}

.footer__col-list a {
  -webkit-transition: color 0.2s ease-out 0s;
  -o-transition: color 0.2s ease-out 0s;
  transition: color 0.2s ease-out 0s;
}

.footer-bottom {
  margin-top: 80px;
  padding: 39px 0 40px;
  border-top: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #8b8b8b;
  font-size: 16px;
  line-height: 16px;
  position: relative;
}

.footer-t2 .footer-bottom {
  color: #8f9399;
}

.footer__place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer__place-icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.footer__place-icon img,
.footer__place-icon svg {
  width: 100%;
  height: 100%;
}

.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__policy a {
  margin-right: 146px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: color 0.2s ease-out 0s;
  -o-transition: color 0.2s ease-out 0s;
  transition: color 0.2s ease-out 0s;
}

.col-first {
  margin-left: 125px;
}

.footer-law {
  max-width: 340px;
  margin-top: 32px;
}

.footer-law__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #000;
}

.footer-law__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #8b8b8b;
}

.footer-law__text br {
  display: none;
}

.footer-t2 .footer-law__text {
  color: #8f9399;
}

.footer-law__about {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 12px;
  color: #ff3243;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.footer-t2 .footer-law__about {
  color: #ff59a3;
}

.footer-law__about svg {
  width: 12px;
  height: 12px;
  margin-left: 8px;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.footer__up {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #eeeeee;
  color: #8b8b8b;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  position: absolute;
  right: 0;
  bottom: 28px;
}

.footer-t2 .footer__up {
  color: #8f9399;
  border: 1px solid #f0f1f3;
}

.footer__up img,
.footer__up svg {
  width: 16px;
  height: 16px;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.t2-hero-inet1 {
  background-color: #1f2229;
  padding: 91px 0 90px;
}

.t2-hero-inet__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-hero-inet__title {
  font-size: 60px;
  line-height: 64px;
  font-weight: 700;
  color: #fff;
}

.t2-hero-inet__title span {
  display: inline-block;
  position: relative;
  color: #1f2229;
}

.t2-hero-inet__title span:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff59a3;
  position: absolute;
  top: -4px;
  left: -16px;
  z-index: -1;
  padding: 2px 16.5px;
  border-radius: 16px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.t2-hero-inet__left {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 736px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-hero-inet__details {
  background-color: #fff;
  padding: 40px;
  border-radius: 44px;
  margin-top: 40px;
  max-width: 630px;
}

.t2-hero-inet__params-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-hero-inet__param {
  width: 100%;
  max-width: 156px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.t2-hero-inet__param-icon {
  width: 68px;
  height: 68px;
  background-color: #f0f1f3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t2-hero-inet__param-icon svg,
.t2-hero-inet__param-icon img {
  width: 32px;
  height: 32px;
}

.t2-hero-inet__param-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-top: 16px;
  color: #1f2229;
}

.t2-hero-inet__param-text {
  font-size: 20px;
  line-height: 20px;
  margin-top: 8px;
  color: #1f2229;
}

.t2-hero-inet__simcards-wrapper {
  margin-top: 32px;
  background-color: #f0f1f3;
  border-radius: 30px;
  padding: 18px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.t2-hero-inet__simcard-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.t2-hero-inet__simcard-icon img,
.t2-hero-inet__simcard-icon svg {
  width: 100%;
  height: 100%;
}

.t2-hero-inet__simcard-text {
  font-size: 20px;
  line-height: 20px;
}

.t2-hero-inet__simcard-text strong {
  font-weight: 700;
  color: #ff59a3;
  display: inline-block;
}

.t2-hero-inet__order-btn {
  margin-top: 20px;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.t2-terms-inet__title {
  text-align: center;
}

.t2-terms-inet__wrapper {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.t2-terms-inet__item {
  width: calc(33.3333333333% - 14.6666666667px);
  background-color: #f0f1f3;
  border-radius: 44px;
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
}

.t2-terms-inet__item-body {
  width: 100%;
}

.t2-terms-inet__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t2-terms-inet__item-icon img,
.t2-terms-inet__item-icon svg {
  width: 40px;
  height: 40px;
}

.t2-terms-inet__item-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 12px;
}

.t2-terms-inet__item-info {
  font-size: 28px;
  line-height: 28px;
}

.order-t2 {
  height: 100vh;
  overflow: auto;
  background-color: #f0f1f3;
}

.order-t2__wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0;
}

.order-t2__container {
  width: 100%;
}

.order-t2__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 52px;
  color: #1f2229;
  text-align: center;
}

.order-t2__form-wrapper {
  background-color: #fff;
  padding: 60px;
  margin-top: 60px;
  border-radius: 44px;
  width: 100%;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.order-t2__form-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #1f2229;
  margin-bottom: 40px;
}

.order-t2__form-title span {
  display: inline-block;
}

.order-t2__input-wrapper {
  position: relative;
  width: 100%;
}

.order-t2__input {
  width: 100%;
  border: 2px solid #eeeeee;
  height: 80px;
  padding-left: 34px;
  border-radius: 40px;
  -webkit-transition: border 0.2s ease-out;
  -o-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  font-size: 20px;
  line-height: 20px;
  color: #1f2229;
  outline: none;
}

.order-t2__input:focus {
  border-color: #1f2229;
}

.order-t2__input::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.order-t2__input::-moz-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.order-t2__input:-ms-input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.order-t2__input::-ms-input-placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.order-t2__input::placeholder {
  font-size: 20px;
  line-height: 20px;
  color: #8b8b8b;
}

.error .order-t2__input {
  border-color: #ff59a3;
}

.order-t2__input-error {
  border: 4px solid #fff;
  background-color: #ff59a3;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  border-radius: 16px;
  padding: 5px 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 32px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}

.error .order-t2__input-error {
  opacity: 1;
}

.order-t2__submit {
  background-color: #ff59a3;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 40px;
  height: 80px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

.order-t2__form-agree {
  margin-top: 32px;
  font-size: 14px;
  line-height: 22px;
  color: #8b8b8b;
  text-align: center;
}

.order-t2__form-agree a {
  display: inline-block;
  color: #0055a5;
  position: relative;
}

.order-t2__form-agree a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  background-color: rgba(0, 85, 165, 0.3);
}

.order-t2__controls-wrapper {
  border-bottom: 1px solid #eeeeee;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

.order-t2__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
}

.order-t2__controls-title {
  color: #8b8b8b;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.order-t2__controls-title svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.order-t2__controls-title.open img,
.order-t2__controls-title.open svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.no-sms {
  cursor: pointer;
}

.send-code {
  margin-left: auto;
}

.send-code__text {
  cursor: pointer;
}

.send-code__text.no-active {
  pointer-events: none !important;
}

.change-number {
  margin-left: 55px;
}

.order-t2__nosms-text {
  background-color: #f8f8f8;
  border-radius: 36px;
  margin-top: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-align: center;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 40px;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.order-t2__nosms-text.open {
  height: 152px;
  opacity: 1;
  padding: 40px;
}

.no-sms-mobile {
  display: none;
}

.t2-thanks-v1 {
  height: 100vh;
  overflow: auto;
  background-color: #f0f1f3;
}

.t2-thanks-v1__wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 44px 0;
}

.t2-thanks-v1__container {
  width: 100%;
}

.t2-thanks-v1__block {
  width: 100%;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #039be5;
  border-radius: 44px;
  padding: 58px;
  background-color: #fff;
  text-align: center;
}

.t2-thanks-v1__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.t2-thanks-v1__img img {
  width: 100%;
  height: 100%;
}

.t2-thanks-v1__title {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  margin-top: 40px;
}

.t2-thanks-v1__title span {
  color: #039be5;
}

.t2-thanks-v1__info {
  border: 1px solid #039be5;
  border-radius: 16px;
  padding: 11px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}

.t2-thanks-v1__info svg,
.t2-thanks-v1__info img {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.t2-thanks-v1__info-desc {
  color: #039be5;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.t2-thanks-v1__info-mobile {
  display: none;
}

.t2-thanks-v1__text {
  margin-top: 24px;
  font-size: 20px;
  line-height: 28px;
}

.t2-thanks-v1__btn {
  margin-top: 32px;
  background-color: #039be5;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  border-radius: 40px;
  color: #fff;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

.t2-thanks-v1__btn img,
.t2-thanks-v1__btn svg {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.t2-thanks-v1__attention {
  color: #8b8b8b;
  font-size: 14px;
  line-height: 14px;
  margin-top: 24px;
}

body::after {
  content: "";
  background-color: rgba(255, 89, 163, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 16px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  opacity: 1;
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  background-color: #fff;
}

.lock .popup__content {
  visibility: visible;
}

.order-popup__content {
  width: 100%;
  max-width: 630px;
  border-radius: 44px;
  background-color: #1f2229;
  padding: 60px;
  position: relative;
}

.order-popup__close {
  width: 24px;
  height: 24px;
  color: #51545b;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  position: absolute;
  top: 46px;
  right: 46px;
  z-index: 10;
  cursor: pointer;
}

.order-popup__close svg {
  width: 100%;
  height: 100%;
}

.order-popup__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 56px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
}

.order-popup__title span {
  color: #1f2229;
  display: inline-block;
  position: relative;
}

.order-popup__title span:before {
  content: "";
  width: calc(100% + 32px);
  height: calc(100% + 4px);
  position: absolute;
  left: -16px;
  top: -3px;
  background-color: #ff59a3;
  border-radius: 16px;
  z-index: -1;
}

.order-popup__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.order-popup__info {
  font-size: 24px;
  line-height: 32px;
  margin-top: 370px;
  text-align: center;
  color: #fff;
}

.order-popup__order-btn {
  margin-top: 26px;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.order-popup__simcards-wrapper {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order-popup__simcard-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.order-popup__simcard-icon img,
.order-popup__simcard-icon svg {
  width: 100%;
  height: 100%;
}

.order-popup__simcard-text {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}

.order-popup__simcard-text strong {
  font-weight: 700;
  color: #ff59a3;
  display: inline-block;
}

@media (min-width: 577px) {
  .icon-menu {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .t2-order-v1__form-wrapper .suggestions-promo {
    position: absolute;
    top: 0;
    right: 0;
    text-align: left;
  }
}

@media (max-width: 1380px) {
  .t2-hero-v1__price {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .t2-hero-v1__img-wrapper {
    height: 100%;
    bottom: 100px;
    right: -120px;
  }

  .t2-hero-v1__img-wrapper img {
    height: 100%;
  }

  .t2-hero-v1__price-old {
    bottom: 200px;
    right: 0;
  }

  .t2-hero-v1__price {
    bottom: 300px;
  }

  .t2-terms-v1__item {
    padding: 32px;
  }

  .t2-activation-v1__img {
    margin-top: 0;
  }

  .t2-activation-v1__law {
    left: -120px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__logo {
    margin-right: 0;
  }

  .footer__col {
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 60px;
  }

  .footer__policy a {
    margin-right: 0;
  }

  .footer__policy {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .col-first {
    margin-left: 0;
  }

  .footer__up {
    display: none;
  }

  .t2-terms-inet__item {
    padding: 32px;
  }
}

@media (max-width: 1099px) {
  .t2-order-v1__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t2-order-v1__left {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .t2-order-v1__right {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .t2-hero-v1__left {
    max-width: 100%;
  }

  .t2-hero-v1__title {
    text-align: center;
  }

  .t2-hero-v1__details {
    margin-top: 0;
  }

  .t2-hero-v1__indicators {
    max-width: 100%;
  }

  .t2-hero-v1__right {
    display: none;
  }

  .t2-hero-v1__img-wrapper {
    width: 480px;
    height: 380px;
    right: 50%;
    bottom: 0;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .t2-hero-v1__img-wrapper img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .t2-hero-v1__price-old {
    width: 131px;
    height: 44px;
    font-size: 32px;
    line-height: 32px;
    bottom: 192px;
    right: 52%;
    border-radius: 22px;
  }

  .t2-hero-v1__price-old span {
    display: inline-block;
    position: relative;
  }

  .t2-hero-v1__price-old span:before {
    content: "";
    width: calc(100% + 8px);
    border-radius: 1px;
    height: 2px;
    left: -4px;
  }

  .t2-hero-v1__price {
    width: 178px;
    height: 44px;
    border-radius: 22px;
    font-size: 32px;
    line-height: 32px;
    bottom: 113px;
    right: 35%;
  }

  .t2-hero-v1__mobile-img {
    display: block;
    position: relative;
    height: 380px;
  }

  .t2-terms-v1__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t2-terms-v1__item {
    width: 100%;
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .t2-terms-v1__item:first-child {
    margin-top: 0;
  }

  .t2-terms-v1__item-icon {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .t2-devices-v1__wrapper {
    display: block;
    text-align: center;
  }

  .t2-devices-v1__left {
    max-width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .t2-devices-v1__title {
    max-width: 100%;
  }

  .t2-devices-v1__items-wrapper {
    max-width: 100%;
    margin-top: 28px;
  }

  .t2-devices-v1__order-btn {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .t2-delivery-v1__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t2-delivery-v1__left {
    max-width: 100%;
    padding-bottom: 0;
    text-align: center;
    margin-bottom: 28px;
  }

  .t2-delivery-v1__title span {
    margin-right: 20px;
  }

  .t2-delivery-v1__right {
    margin-left: auto;
    margin-right: auto;
  }

  .t2-delivery-v1__order-wrapper {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .t2-order-v1__left {
    width: 85%;
  }

  .t2-order-v1__right {
    width: 85%;
  }

  .t2-activation-v1__left {
    max-width: 100%;
  }

  .t2-activation-v1__right {
    display: none;
  }

  .t2-activation-v1__img-mobile-wrapper {
    display: block;
    position: relative;
    margin: 40px auto 0;
    width: 412px;
    height: 598px;
  }

  .t2-activation-v1__img img {
    width: 100%;
    height: 100%;
  }

  .t2-activation-v1__sim-img {
    right: -108px;
    top: -56px;
  }

  .t2-activation-v1__order-wrapper {
    text-align: center;
  }

  .footer__col {
    margin-left: 20px;
  }

  .col-first {
    margin-left: 20px;
  }

  .t2-hero-inet__title {
    text-align: center;
  }

  .t2-hero-inet__left {
    max-width: 100%;
  }

  .t2-hero-inet__details {
    margin-top: 0;
    max-width: 100%;
  }

  .t2-terms-inet__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t2-terms-inet__item {
    width: 100%;
    margin-top: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .t2-terms-inet__item:first-child {
    margin-top: 0;
  }

  .t2-terms-inet__item-icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
}

@media (max-width: 799px) {
  .footer {
    padding-top: 40px;
  }

  .footer-bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 31px 0 32px;
  }

  .footer__place {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__policy a {
    margin-top: 24px;
  }

  .footer__policy a:first-of-type {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__policy a:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer__policy a:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-title {
    font-size: 28px;
    line-height: 32px;
  }

  .btn {
    padding: 18px 52px;
    font-size: 16px;
    line-height: 16px;
    border-radius: 26px;
  }

  .btn img,
  .btn svg {
    width: 16px;
    height: 16px;
    margin-right: 16px;
  }

  .t2-order-v1__form-wrapper .suggestions-wrapper {
    margin-top: 4px;
  }

  .t2-order-v1__form-wrapper .suggestions-suggestions {
    border-radius: 24px;
  }

  .t2-order-v1__form-wrapper .suggestions-suggestion {
    padding: 11px 24px 12px;
    font-size: 14px;
    line-height: 18px;
  }

  .t2-order-v1__form-wrapper .suggestions-hint {
    padding: 11px 24px 12px;
    font-size: 12px;
    line-height: 12px;
  }

  .t2-header-v1 {
    padding: 12px 0;
  }

  .t2-header-v1__logo {
    width: 40px;
    height: 28px;
  }

  .t2-header-v1__phone-icon {
    display: none;
  }

  .t2-header-v1__phone-text {
    display: none;
  }

  .t2-header-v1__phone {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-header-v1__lk-btn {
    padding: 8px 16px;
    font-size: 12px;
    line-height: 12px;
    border-radius: 26px;
    margin-left: 32px;
  }

  .t2-hero-v1 {
    padding: 34px 0 32px;
  }

  .t2-hero-v1__title {
    font-size: 28px;
    line-height: 32px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .t2-hero-v1__title span:before {
    top: -2px;
    left: -10px;
    padding: 2px 10px;
    border-radius: 10px;
  }

  .t2-hero-v1__details {
    padding: 24px;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .t2-hero-v1__params-block {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .t2-hero-v1__param-row {
    margin-top: 12px;
  }

  .t2-hero-v1__param-name {
    font-size: 14px;
    line-height: 14px;
    max-width: 77px;
    margin-right: 8px;
  }

  .t2-hero-v1__param-progress {
    width: 100%;
    height: 10px;
    margin-right: 9px;
    border-radius: 5px;
  }

  .t2-hero-v1__param-progress span {
    border-radius: 5px;
  }

  .t2-hero-v1__param-count {
    font-size: 14px;
    line-height: 14px;
    max-width: 70px;
    text-align: right;
  }

  .t2-hero-v1__simcards-wrapper {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    padding: 0;
    background-color: transparent;
    margin-top: 12px;
  }

  .t2-hero-v1__simcard-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .t2-hero-v1__simcard-text {
    font-size: 12px;
    line-height: 12px;
  }

  .t2-hero-v1__order-btn {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .t2-hero-v1__indicators {
    margin-top: 16px;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .t2-hero-v1__indicator {
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 14px;
  }

  .t2-hero-v1__indicator img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .t2-hero-v1__img-wrapper {
    height: 266px;
    -webkit-transform: translateX(calc(50% - 3px));
    -ms-transform: translateX(calc(50% - 3px));
    transform: translateX(calc(50% - 3px));
  }

  .t2-hero-v1__price-old {
    bottom: 128px;
    right: 51%;
  }

  .t2-hero-v1__price {
    bottom: 60px;
  }

  .t2-hero-v1__mobile-img {
    height: 264px;
  }

  .t2-terms-v1__wrapper {
    margin-top: 32px;
  }

  .t2-terms-v1__item {
    padding: 24px;
    border-radius: 24px;
  }

  .t2-terms-v1__item-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .t2-terms-v1__item-icon img,
  .t2-terms-v1__item-icon svg {
    width: 28px;
    height: 28px;
  }

  .t2-terms-v1__item-title {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 20px;
  }

  .t2-terms-v1__item-progress {
    border-radius: 4px;
    height: 8px;
  }

  .t2-terms-v1__item-progress span {
    border-radius: 4px;
  }

  .t2-terms-v1__item-info {
    margin-top: 6px;
    font-size: 16px;
    line-height: 20px;
  }

  .t2-devices-v1 {
    margin-top: 40px;
  }

  .t2-devices-v1__title {
    font-size: 20px;
    line-height: 24px;
  }

  .t2-devices-v1__items-wrapper {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 16px;
  }

  .t2-devices-v1__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 156px;
    flex: 1 1 156px;
    height: 156px;
    border-radius: 24px;
    padding: 20px;
  }

  .t2-devices-v1__item img {
    right: 20px;
    bottom: 20px;
  }

  .t2-devices-v1__item:nth-child(1) img {
    width: 80px;
    height: 48px;
  }

  .t2-devices-v1__item:nth-child(2) img {
    width: 69px;
    height: 83px;
  }

  .t2-devices-v1__item:nth-child(3) img {
    width: 57px;
    height: 77px;
  }

  .t2-devices-v1__item:nth-child(4) img {
    width: 71px;
    height: 77px;
  }

  .t2-devices-v1__item-title {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-delivery-v1__title span {
    margin-right: 10px;
  }

  .t2-delivery-v1__title span:before {
    width: 245px;
    height: 36px;
    border-radius: 10px;
    left: -13px;
    bottom: -2px;
  }

  .t2-delivery-v1__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .t2-delivery-v1__right {
    border-radius: 24px;
    width: 328px;
    height: 248px;
  }

  .t2-order-v1__wrapper {
    border: 1px solid #dddddd;
    border-radius: 24px;
  }

  .t2-order-v1__left {
    border: none;
    width: 100%;
    padding-bottom: 0;
  }

  .t2-order-v1__left-title {
    padding: 23px 24px 24px;
  }

  .t2-order-v1__order-params {
    padding: 24px;
  }

  .t2-order-v1__order-param {
    max-width: 86px;
  }

  .t2-order-v1__order-param-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .t2-order-v1__order-param-icon img,
  .t2-order-v1__order-param-icon svg {
    width: 20px;
    height: 20px;
  }

  .t2-order-v1__order-param-title {
    font-size: 14px;
    line-height: 14px;
  }

  .t2-order-v1__order-param-text {
    font-size: 14px;
    line-height: 14px;
    margin-top: 8px;
  }

  .t2-order-v1__order-table {
    padding: 24px;
  }

  .t2-order-v1__order-table-row {
    margin-top: 8px;
    padding-top: 8px;
  }

  .t2-order-v1__order-table-row:nth-child(2) {
    display: none;
  }

  .t2-order-v1__order-table-row:last-child {
    display: none;
  }

  .t2-order-v1__order-table-name {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__order-table-name .hide {
    display: inline;
  }

  .t2-order-v1__order-table-num {
    font-size: 16px;
    line-height: 16px;
    padding: 3px 7px;
    border-radius: 6px;
  }

  .t2-order-v1__desctop-simcards-wrapper {
    display: none;
  }

  .t2-order-v1__simcard-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .t2-order-v1__simcard-text {
    font-size: 12px;
    line-height: 12px;
  }

  .t2-order-v1__right {
    width: 100%;
    padding: 0 24px 23px;
    margin-top: 0;
    background-color: #fff;
  }

  .t2-order-v1__right-title {
    display: none;
  }

  .t2-order-v1__right-subtitle {
    display: none;
  }

  .t2-order-v1__right-mobile-title {
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
  }

  .t2-order-v1__form-wrapper {
    margin-top: 20px;
  }

  .t2-order-v1__form-row {
    margin-top: 12px;
  }

  .t2-order-v1__form-input {
    background-color: #f2f2f2;
    height: 52px;
    border-radius: 26px;
    padding-top: 16px;
    padding-left: 22px;
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__form-input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__form-input::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__form-input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__form-input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__form-input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .t2-order-v1__input-placeholder {
    font-size: 16px;
    line-height: 16px;
    left: 24px;
    top: 18px;
  }

  .input--focus .t2-order-v1__input-placeholder {
    font-size: 12px;
    line-height: 12px;
    top: 10px;
  }

  .input--hasValue .t2-order-v1__input-placeholder {
    font-size: 12px;
    line-height: 12px;
    top: 10px;
  }

  .t2-order-v1__form-address-info {
    margin-top: 12px;
    padding: 15px 19px;
    font-size: 14px;
    line-height: 20px;
  }

  .t2-order-v1__form-address-info svg {
    width: 14px;
    height: 14px;
    margin-top: 2px;
  }

  .t2-order-v1__form-submit {
    margin-top: 20px;
  }

  .t2-order-v1__mobile-simcards-wrapper {
    width: 100%;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 16px;
  }

  .t2-order-v1__form-agree {
    margin-top: 16px;
    font-size: 10px;
    line-height: 16px;
  }

  .t2-activation-v1 {
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .t2-activation-v1__title {
    font-size: 28px;
    line-height: 32px;
  }

  .t2-activation-v1__img-mobile-wrapper {
    width: 100%;
    max-width: 220px;
    height: 320px;
    margin: 28px auto 0;
  }

  .t2-activation-v1__img {
    width: 220px;
    height: 320px;
  }

  .t2-activation-v1__sim-img {
    width: 74px;
    height: 120px;
    right: -54px;
    top: -28px;
  }

  .main-bee-v3 .t2-activation-v1__law {
    border-radius: 24px;
  }

  .t2-activation-v1__law {
    border-radius: 24px;
    width: 304px;
    padding: 24px;
    font-size: 14px;
    line-height: 22px;
    left: 24px;
    bottom: 24px;
  }

  .t2-activation-v1__law br {
    display: block;
  }

  .t2-activation-v1__info {
    margin-top: 28px;
  }

  .t2-activation-v1__info-text p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }

  .t2-activation-v1__info-text p:last-of-type {
    margin-top: 20px;
  }

  .t2-activation-v1__info-text p:last-of-type a {
    font-size: 14px;
    line-height: 18px;
    margin-top: 16px;
  }

  .t2-activation-v1__icon-block-wrapper {
    margin-top: 20px;
  }

  .t2-activation-v1__icon {
    width: 36px;
    height: 36px;
    margin-right: 16px;
  }

  .t2-activation-v1__icon img,
  .t2-activation-v1__icon svg {
    width: 14px;
    height: 14px;
  }

  .t2-activation-v1__text {
    font-size: 14px;
    line-height: 20px;
  }

  .t2-activation-v1__order-wrapper {
    margin-top: 28px;
  }

  .footer-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__col {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }

  .footer__col-title {
    margin-bottom: 28px;
  }

  .footer__place-icon {
    margin-right: 0;
  }

  .footer__place-name {
    width: 100%;
    text-align: center;
    line-height: 24px;
    margin-top: 16px;
  }

  .footer__place-name span {
    display: block;
  }

  .col-first {
    margin-left: 0px;
  }

  .footer__left {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-law {
    text-align: center;
    margin-top: 20px;
  }

  .t2-hero-inet1 {
    padding: 34px 0 32px;
  }

  .t2-hero-inet__title {
    font-size: 26px;
    line-height: 30px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .t2-hero-inet__title span:before {
    top: -2px;
    left: -10px;
    padding: 2px 10px;
    border-radius: 10px;
  }

  .t2-hero-inet__details {
    padding: 24px;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .t2-hero-inet__param {
    max-width: 90px;
  }

  .t2-hero-inet__param-icon {
    width: 44px;
    height: 44px;
  }

  .t2-hero-inet__param-icon svg,
  .t2-hero-inet__param-icon img {
    width: 20px;
    height: 20px;
  }

  .t2-hero-inet__param-name {
    font-size: 14px;
    line-height: 14px;
    margin-top: 12px;
  }

  .t2-hero-inet__param-text {
    font-size: 14px;
    line-height: 14px;
  }

  .t2-hero-inet__simcards-wrapper {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    padding: 0;
    background-color: transparent;
    margin-top: 12px;
  }

  .t2-hero-inet__simcard-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .t2-hero-inet__simcard-text {
    font-size: 12px;
    line-height: 12px;
  }

  .t2-hero-inet__order-btn {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 16px;
  }

  .t2-terms-inet__wrapper {
    margin-top: 32px;
  }

  .t2-terms-inet__item {
    padding: 24px;
    border-radius: 24px;
  }

  .t2-terms-inet__item-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .t2-terms-inet__item-icon img,
  .t2-terms-inet__item-icon svg {
    width: 28px;
    height: 28px;
  }

  .t2-terms-inet__item-title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 20px;
  }

  .t2-terms-inet__item-info {
    font-size: 20px;
    line-height: 20px;
  }

  .order-t2__title {
    font-size: 28px;
    line-height: 28px;
  }

  .order-t2__form-wrapper {
    margin-top: 32px;
    padding: 24px;
    border-radius: 24px;
    max-width: 480px;
  }

  .order-t2__form-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .order-t2__input {
    border-radius: 26px;
    height: 52px;
    padding-left: 22px;
    font-size: 16px;
    line-height: 16px;
  }

  .order-t2__input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .order-t2__input::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .order-t2__input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .order-t2__input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .order-t2__input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .order-t2__input-error {
    font-size: 12px;
    line-height: 12px;
    border: 2px solid #fff;
    padding: 4px 10px;
    left: 22px;
  }

  .order-t2__submit {
    margin-top: 20px;
    border-radius: 26px;
    font-size: 16px;
    line-height: 16px;
    height: 52px;
  }

  .order-t2__form-agree {
    margin-top: 16px;
    font-size: 10px;
    line-height: 16px;
  }

  .order-t2__controls-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .order-t2__controls {
    margin-bottom: 20px;
  }

  .order-t2__controls-title {
    font-size: 14px;
    line-height: 14px;
  }

  .no-sms {
    display: none;
  }

  .change-number {
    margin-left: 0;
  }

  .order-t2__nosms-text {
    position: absolute;
  }

  .order-t2__nosms-text.mobile {
    position: relative;
    background-color: #fff;
    border-radius: 24px;
    z-index: 1;
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
    padding: 0 24px;
  }

  .order-t2__nosms-text.mobile.open {
    height: 136px;
    opacity: 1;
    padding: 24px;
  }

  .no-sms-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32px;
  }

  .t2-thanks-v1 {
    height: auto;
  }

  .t2-thanks-v1__wrapper {
    min-height: auto;
  }

  .t2-thanks-v1__block {
    max-width: 480px;
    padding: 38px 22px;
    border-radius: 28px;
  }

  .t2-thanks-v1__img {
    width: 140px;
    height: 140px;
  }

  .t2-thanks-v1__title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 20px;
  }

  .t2-thanks-v1__info {
    padding: 8px 12px 8px 13px;
    margin-top: 12px;
  }

  .t2-thanks-v1__info svg,
  .t2-thanks-v1__info img {
    width: 14px;
    height: 14px;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .t2-thanks-v1__info-desc {
    display: none;
  }

  .t2-thanks-v1__info-mobile {
    display: block;
    color: #039be5;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
  }

  .t2-thanks-v1__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .t2-thanks-v1__btn {
    height: 52px;
    margin-top: 20px;
    border-radius: 26px;
  }

  .t2-thanks-v1__btn .hide {
    display: none;
  }

  .t2-thanks-v1__btn img,
  .t2-thanks-v1__btn svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }

  .t2-thanks-v1__attention {
    display: none;
  }

  .order-popup__content {
    max-width: 480px;
    border-radius: 24px;
    padding: 26px 24px 24px;
  }

  .order-popup__close {
    top: 24px;
    right: 24px;
  }

  .order-popup__title {
    font-size: 28px;
    line-height: 32px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .order-popup__title span:before {
    content: "";
    width: calc(100% + 20px);
    left: -10px;
    top: -2px;
    border-radius: 10px;
  }

  .order-popup__img {
    -webkit-transform: translate(-50%, 24px);
    -ms-transform: translate(-50%, 24px);
    transform: translate(-50%, 24px);
  }

  .order-popup__info {
    margin-top: 256px;
    font-size: 16px;
    line-height: 24px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .order-popup__order-btn {
    margin-top: 16px;
  }

  .order-popup__simcards-wrapper {
    margin-top: 12px;
  }

  .order-popup__simcard-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .order-popup__simcard-text {
    font-size: 12px;
    line-height: 12px;
  }
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
  }

  .t2-header-v1__phone-wrapper {
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.4s ease-out;
    transition: -webkit-transform 0.4s ease-out;
    -o-transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .t2-header-v1__phone-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
  }

  .t2-header-v1__phone-icon img,
  .t2-header-v1__phone-icon svg {
    width: 40px;
    height: 40px;
  }

  .t2-header-v1__phone-text {
    display: block;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .t2-header-v1__phone {
    font-size: 32px;
    line-height: 32px;
  }

  .t2-hero-v1__indicator {
    width: 156px;
  }

  .t2-hero-v1__price {
    right: 8%;
  }

  .t2-delivery-v1 {
    padding: 54px 0 52px;
  }

  .t2-delivery-v1__text br {
    display: none;
  }

  .t2-activation-v1__img-mobile-wrapper {
    margin: 44px auto 0 0;
  }

  .t2-terms-inet__item {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .t2-hero-v1__indicator-stars {
    display: none;
  }
}

@media (max-width: 425px) {
  .t2-hero-v1__simcard-text .hide {
    display: none;
  }

  .t2-hero-inet__simcard-text .hide {
    display: none;
  }
}

@media (max-width: 400px) {
  .t2-activation-v1__info-text p:last-of-type a:first-of-type svg {
    position: absolute;
    bottom: 2px;
    left: 154px;
  }
}

@media (max-width: 359px) {
  .btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .t2-order-v1__form-agree br {
    display: none;
  }

  .t2-activation-v1__law {
    width: 280px;
    left: 16px;
    bottom: 16px;
  }

  .t2-hero-inet__param-name {
    font-size: 12px;
    line-height: 12px;
  }

  .t2-hero-inet__param-text {
    font-size: 12px;
    line-height: 12px;
  }

  .order-t2__form-title br {
    display: none;
  }

  .order-t2__form-agree br {
    display: none;
  }

  .t2-thanks-v1__info {
    padding: 8px 10px;
  }

  .t2-thanks-v1__info-mobile {
    font-size: 11px;
    line-height: 11px;
  }
}

@media (any-hover: hover) {
  .btn:hover {
    background-color: #1f2229;
    color: #fff;
  }

  .t2-header-v1__lk-btn:hover {
    background-color: #e5e5e5;
  }

  .t2-hero-v1__order-btn:hover {
    background-color: #ffce1a;
    color: #1f2229;
  }

  .t2-order-v1__form-agree a:hover:before {
    opacity: 0;
  }

  .t2-activation-v1__info-text p a:hover:before {
    opacity: 0;
  }

  .t2-activation-v1__info-text p:last-of-type a:hover {
    color: #1f2229;
  }

  .t2-activation-v1__info-text p:last-of-type a:hover strong {
    color: #1f2229;
  }

  .t2-activation-v1__info-more-btn:hover {
    color: #1f2229;
  }

  .footer__col-list a:hover {
    color: #000;
  }

  .footer__policy a:hover {
    color: #000;
  }

  .footer-law__about:hover {
    color: #000;
  }

  .footer__up:hover {
    color: #fff;
    background-color: #8b8b8b;
  }

  .footer-t2 .footer__up:hover {
    color: #8f9399;
    color: #fff;
  }

  .order-t2__submit:hover {
    background-color: #1f2229;
    color: #fff;
  }

  .order-t2__form-agree a:hover:before {
    opacity: 0;
  }

  .no-sms:hover {
    color: #1f2229;
  }

  .send-code__text:hover {
    color: #1f2229;
  }

  .change-number:hover {
    color: #1f2229;
  }

  .t2-thanks-v1__btn:hover {
    background-color: #0087d1;
  }

  .order-popup__close:hover {
    color: #fff;
  }

  .order-popup__order-btn:hover {
    background-color: #fff !important;
    color: #1f2229 !important;
  }
}