* {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:root {
  --baseColor2: 255, 0, 0;
  --baseColor: 255, 145, 3;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --bgColor: 255, 255, 255;
  --offset: 160rem;
  --fontColor: 0, 0, 0;
  --headerHeight: 200rem;
  --red: 249, 70, 70;
}

a[href*='tel'] {
  white-space: nowrap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

svg,
img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  image-rendering: -o-crisp-edges;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}

body {
  line-height: normal;
}

body.static {
  overflow: hidden;
}

body,
#wrapper {
  background: rgb(var(--bgColor));
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

input[type='checkbox'],
input[type='radio'] {
  margin: 0;
  padding: 0;
}

#wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
}

.inner {
  max-width: 1920rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--offset);
}

#wrapper > * {
  width: 100%;
}

body {
  font-size: 30rem;
}

textarea,
input {
  border: none;
  caret-color: rgb(var(--baseColor));
  padding: 0;
  font-size: 30rem;
  resize: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* * {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
} */

a {
  color: rgb(var(--fontColor));
  text-decoration: none;
}

.textarea__wrapper[placeholder],
input[placeholder] {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.textarea__wrapper::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  text-overflow: ellipsis;
  font-family: 'Futura PT';
  color: rgba(var(--fontColor), 0.64);
  font-size: inherit;
  font-weight: inherit;
}

.textarea__wrapper::-moz-placeholder,
input::-moz-placeholder {
  text-overflow: ellipsis;
  font-family: 'Futura PT';
  color: rgba(var(--fontColor), 0.64);
  font-size: inherit;
  font-weight: inherit;
}

.textarea__wrapper:-ms-input-placeholder,
input:-ms-input-placeholder {
  text-overflow: ellipsis;
  font-family: 'Futura PT';
  color: rgba(var(--fontColor), 0.64);
  font-size: inherit;
  font-weight: inherit;
}

.textarea__wrapper::-ms-input-placeholder,
input::-ms-input-placeholder {
  text-overflow: ellipsis;
  font-family: 'Futura PT';
  color: rgba(var(--fontColor), 0.64);
  font-size: inherit;
  font-weight: inherit;
}

.textarea__wrapper::placeholder,
input::placeholder {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-family: 'Futura PT';
  color: rgba(var(--fontColor), 0.64);
  font-size: inherit;
  font-weight: inherit;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

body,
input,
textarea,
select,
option,
button {
  font-family: 'Futura PT', system-ui;
  color: rgb(var(--fontColor));
  border: none;
}

button {
  padding: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

::-moz-selection {
  background: rgb(var(--baseColor));
  color: rgb(var(--white));
}

::selection {
  background: rgb(var(--baseColor));
  color: rgb(var(--white));
}

ul {
  list-style-type: none;
}

ul li {
  position: relative;
}

ul li:not(:last-child) {
  margin-bottom: 5rem;
}

ul li::before {
  content: '-';
}

.mob_btn {
  position: relative;
  cursor: pointer;
  height: 40rem;
  width: 55rem;
}

.mob_btn p {
  --height: 7rem;
  height: var(--height);
  width: 100%;
  position: absolute;
  left: 0;
  background: rgb(var(--black));
  transition: all 0.25s ease;
}

.mob_btn p:nth-child(1) {
  top: 0;
}
.mob_btn p:nth-child(2) {
  top: calc(50% - var(--height) / 2);
}

.mob_btn p:nth-child(3) {
  top: calc(100% - var(--height));
}

.mob_btn.active p:nth-child(2) {
  opacity: 0;
}

.mob_btn.active p:nth-child(1) {
  transform: rotate(45deg);
}
.mob_btn.active p:nth-child(3) {
  transform: rotate(-45deg);
}
.mob_btn.active p:nth-child(1),
.mob_btn.active p:nth-child(3) {
  top: calc(50% - var(--height) / 2);
}

.squire {
  --squireColor: #c9c9c9;
  background: radial-gradient(
    ellipse at center,
    var(--squireColor) 0%,
    var(--squireColor) 20%,
    transparent 20%
  );
  background-size: 35rem 35rem;
  background-repeat: repeat;
  background-position: center center;
  width: 150rem;
  height: 150rem;
  pointer-events: none;
}

.main {
  background-color: #6ab7cf;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.triangle {
  width: 294rem;
  height: 329rem;
}

.main .triangle {
  position: absolute;
  filter: blur(5px);
  left: 1025rem;
  top: 85rem;
  width: 138rem;
  height: 150rem;
}

.header {
  padding: 70rem 0;
  margin-bottom: 30rem;
}

.header__content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 85rem;
}

.logo {
  font-family: 'Bebas Neue Pro';
  font-weight: bold;
  color: rgb(var(--white));
  font-size: 50rem;
  line-height: 1;
  position: relative;
  text-decoration: none !important;
}

.logo::after {
  content: '';
  position: absolute;
  right: -15rem;
  bottom: 0;
  border-radius: 50%;
  background: #00ff48;
  width: 18rem;
  height: 18rem;
}

.header__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20rem;
}

.header__nav_link {
  color: rgb(var(--white));
  text-decoration: none;
  font-family: 'Futura PT Book';
  font-size: 32rem;
  line-height: 1;
  white-space: nowrap;
}

.header__nav_link:hover {
  text-decoration: underline;
}

.main__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 60rem;
}

.main__content_left {
  align-self: flex-start;
}
.main__content_right {
  /* margin-top: -150rem; */
}
h1 {
  color: rgb(var(--white));
  font-family: 'Futura PT';
  font-weight: 900;
  text-transform: uppercase;
  font-size: 61rem;
  line-height: 115%;
  margin-bottom: 30rem;
}

h2 {
  font-family: 'Futura PT Book';
  color: rgb(var(--white));
  font-size: 42rem;
  line-height: 112%;
}

.doc {
  width: 588rem;
  height: 598rem;
}

.doc__description {
  position: relative;
  z-index: 2;
}

.doc__description_content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -160rem;
}

.doc__description_block {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 220rem;
  height: 130rem;
  padding: 20rem 50rem 20rem 65rem;
  background: rgba(var(--white), 0.3);
  box-shadow: 8rem 8rem 32rem rgba(var(--black), 0.1);
  backdrop-filter: blur(15px);
}

.doc__description_block_name {
  line-height: 1;
  font-size: 23rem;
  font-weight: bold;
  color: rgb(var(--black));
  margin-bottom: 15rem;
  text-transform: uppercase;
}

.doc__description_block_desc {
  line-height: 1;
  font-size: 23rem;
  color: rgb(var(--black));
}

.doc__description_block_icon {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  height: 75rem;
  width: 72rem;
  background: #02fcd0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doc__description_block_icon img {
  width: 41rem;
  height: 43rem;
}

.doc__description_content .squire {
  margin-right: auto;
  width: 105rem;
  height: 105rem;
  background: radial-gradient(
    ellipse at center,
    var(--squireColor) 0%,
    var(--squireColor) 15%,
    transparent 15%
  );
  background-size: 22rem 22rem;
  transform: translate(-100%, -60%);
}

.nnew {
  position: relative;
  z-index: 5;
  padding-bottom: 255rem;
}

.nnew .triangle2 {
  width: 320rem;
  height: 289rem;
  top: -120rem;
  right: 90rem;
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.nnew .squire {
  position: absolute;
  z-index: 2;
  right: 25rem;
  top: 120rem;
  background: radial-gradient(
    ellipse at center,
    var(--squireColor) 0%,
    var(--squireColor) 15%,
    transparent 15%
  );
  width: 170rem;
  height: 170rem;
  background-size: 30rem 30rem;
}

.nnew__time_tag {
  font-weight: 350;
  color: #25a790;
  font-size: 25rem;
  line-height: 1;
  border-radius: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  min-width: 340rem;
  height: 50rem;
  padding: 5rem 15rem;
  border: 1rem solid currentColor;
  width: max-content;
  text-align: center;
  margin-bottom: 55rem;
}

.nnew__text {
  max-width: 1320rem;
  line-height: 160%;
  font-size: 30rem;
  color: rgb(var(--black));
  font-weight: 350;
}

.nnew__soc {
  position: absolute;
  left: 0;
  top: -90rem;
}

.nnew__soc a {
  width: 60rem;
  height: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nnew__soc a:not(:last-child) {
  margin-bottom: 7rem;
}

.icon_f_block {
  background: #006cff;
}

.icon_f {
  width: 17rem;
  height: 31rem;
  transform: translateX(-2rem);
}

.icon_t_block {
  background: #00aeff;
}

.icon_t {
  width: 33rem;
  height: 29rem;
}

.icon_tg_block {
  background: #00ccff;
}

.icon_tg {
  width: 36rem;
  height: 32rem;
  transform: translateX(-3rem) translateY(0rem);
}

.icon_y_block {
  background: #ff0404;
}

.icon_y {
  width: 33rem;
  height: 29rem;
  transform: translateX(-1rem);
}

.icon_i_block {
  background: #ff00ba;
}

.icon_i {
  width: 31rem;
  height: 31rem;
  transform: translateX(-1.5rem);
}

.icon_w_block {
  background: #00ff84;
}

.icon_w {
  width: 35rem;
  height: 35rem;
}

.simp {
  padding-bottom: 50rem;
}

.simp__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60rem;
}

.simp_img {
  width: 724rem;
  height: 699rem;
}

.simp__title {
  color: #4b9e92;
  font-size: 35rem;
  line-height: 1;
  font-family: 'Futura PT Book';
  margin-bottom: 15rem;
  letter-spacing: 5rem;
}

.simp__content_item {
  font-weight: 900;
  font-size: 60rem;
  line-height: 100%;
  position: relative;
  margin-bottom: 60rem;
}

.simp__content_item::before {
  content: attr(data-num);
  width: 113rem;
  height: 113rem;
  background: #8cffee;
  font-size: 53rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  left: -150rem;
  top: 11rem;
}

.simp {
  position: relative;
}

.simp .squire {
  position: absolute;
  left: -35rem;
  bottom: 165rem;
  z-index: 5;
  background: radial-gradient(
    ellipse at center,
    var(--squireColor) 0%,
    var(--squireColor) 20%,
    transparent 20%
  );
  width: 135rem;
  height: 135rem;
  background-size: 25rem 25rem;
}
.simp .triangle {
  position: absolute;
  right: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
  z-index: 5;
}
.simp__content_text {
  font-weight: 350;
  font-size: 30rem;
  line-height: 150%;
}

.how {
  padding: 100rem 0;
  position: relative;
}
.how__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 130rem;
}

.how_img {
  width: 709rem;
  height: 665rem;
}

.how_img_wrapper {
  position: relative;
}
.how_img_wrapper_plus {
  position: absolute;
  width: 110rem;
  height: 110rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: #8cffee;
}
.how_plus {
  width: 62rem;
  height: 62rem;
}

.how__title {
  font-size: 74rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 60rem;
}

.how__text {
  font-size: 30rem;
  line-height: 160%;
  font-weight: 350;
}

.how__text p + p {
  margin-top: 55rem;
}

.how .squire {
  position: absolute;
  left: -50rem;
  bottom: 100rem;
}

.how .triangle {
  position: absolute;
  width: 144rem;
  right: 30rem;
  bottom: -15rem;
  height: auto;
}

.split__content {
  background: rgb(var(--white));
  font-size: 25rem;
  line-height: 160%;
  font-family: 'Futura PT Book';
  font-weight: 600;
  font-style: italic;
  padding: 50rem 85rem;
  box-shadow: 0 0 35rem rgba(var(--black), 0.13);
  letter-spacing: 2.5rem;
}

.split_empty .triangle {
  position: absolute;
  left: -100rem;
  bottom: 0;
  height: auto;
  width: 210rem;
  transform: rotate(-22deg);
}
.split_empty {
  position: relative;
  padding: 60rem 0;
  font-size: 30rem;
  line-height: 160%;
  font-weight: 350;
}
.int .squire {
  right: 136rem;
  top: 245rem;
  width: 100rem;
  position: absolute;
}
.int {
  position: relative;
}
.int__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 70rem;
}
.int_img {
  width: 758rem;
}

.int__content_right {
  position: relative;
  margin-right: 100rem;
}
.int__content_right_desc {
  color: rgb(var(--white));
  font-size: 28rem;
  background: rgb(var(--black));
  font-family: 'Futura PT Demi';
  line-height: 1;
  padding: 30rem 40rem;
  position: absolute;
  bottom: -55rem;
  right: -55rem;
}

.int__text {
  font-size: 30rem;
  line-height: 160%;
  font-weight: 350;
}

.int_btn {
  display: block;
  font-weight: 900;
  font-size: 22rem;
  line-height: 1;
  color: #212528;
  background: #6aff9f;
  border-radius: 50rem;
  height: 75rem;
  min-width: 600rem;
  width: max-content;
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  text-transform: uppercase;
  margin-top: 50rem;
  box-shadow: 0 4rem 35rem rgba(255, 206, 11, 0.15);
}

.form {
  padding: 150rem 0;
  position: relative;
}

.form__content_wrapper {
  box-shadow: 0 0 46rem rgba(var(--black), 0.13);
  padding: 90rem 190rem 50rem 100rem;
  background: rgb(var(--white));
}

.form__title {
  font-size: 75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30rem;
}

.form__desc {
  font-size: 30rem;
  line-height: 150%;
  font-weight: 350;
  margin-bottom: 80rem;
  letter-spacing: 2.5rem;
}
.form__content_left {
  flex-grow: 1;
}
.form__desc .product {
  display: none;
}

.form__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 130rem;
}

.product {
  width: 516rem;
}

.input__wrapper label {
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  font-size: 24rem;
  color: #212528;
  display: block;
  margin-bottom: 25rem;
  width: max-content;
}

.input__wrapper + .input__wrapper {
  margin-top: 35rem;
}
.form .squires .squire,
.form .triangles .triangle {
  position: absolute;
  pointer-events: none;
}
.form .squires,
.form .triangles {
  z-index: 1 !important;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.form .squires .squire:first-child {
  right: 245rem;
  width: 200rem;
  height: 200rem;
  top: 520rem;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    var(--squireColor) 0%,
    var(--squireColor) 20%,
    transparent 20%
  );
  background-size: 35rem 35rem;
}

.form .squires .squire:last-child {
  top: 750rem;
  left: -50rem;
}

.form .form__content_wrapper > * {
  position: relative;
  z-index: 2;
}

.form .triangles .triangle:first-child {
  right: 77rem;
  top: 265rem;
}

.form .triangles .triangle:last-child {
  left: 0;
  top: auto;
  bottom: 0;
  height: auto;
  width: 200rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

input, select {
  display: block;
  width: 100%;
  background: #e4e4e4;
  height: 55rem;
  padding: 0 30rem;
  -webkit-appearance: none;
  appearance: none;
  font-size: 30rem;
}

.form__end {
  padding: 52rem 0 45rem;
  font-weight: 500;
  font-size: 23rem;
  line-height: 120%;
  letter-spacing: 2.5rem;
}

.btn {
  background: rgb(var(--black));
  color: rgb(var(--white));
  line-height: 1;
  font-weight: 900;
  font-size: 22rem;
  border-radius: 50rem;
  min-width: 370rem;
  height: 75rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 15rem 35rem rgba(var(--black), 0.15);
  letter-spacing: 2rem;
}
.notify:empty {
  display: none !important;
}
.notify {
  font-size: 12rem;
  text-align: center;
  letter-spacing: 2.5rem;
  padding: 10rem 0;
}
.btn__wrapper {
  margin-top: 50rem;
}

.footer {
  background: #2dc69d;
  padding: 110rem 0 80rem;
  margin-top: auto;
}

.footer__content {
  text-align: center;
}
.footer__content * {
  font-size: 14px;
  color: #fff;
}
.footer__content_right a,
.footer__content_right {
  text-align: center;
  color: rgba(var(--white), 0.8);
  line-height: 150%;
}

.footer .logo::after {
  width: 35rem;
  height: 35rem;
}
.footer .logo {
  font-size: 98rem;
}

.cookie {
  position: fixed;
  left: 0;
  bottom: 0;
  background: rgb(var(--black));
  z-index: 1000;
  padding: 55rem 205rem;
}

.cookie__text {
  font-family: 'Futura PT Book';
  color: rgba(var(--white), 0.8);
  letter-spacing: 3.5rem;
  line-height: 110%;
}

.cookie__btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 65rem;
  margin-top: 15rem;
}

.cookie__btns > * {
  cursor: pointer;
  user-select: none;
}

.cookie_btn {
  background: #6aff9f;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--black));
  font-size: 30rem;
  font-weight: 500;
  letter-spacing: 2.5rem;
  text-transform: none;
}

.cookie_btn:hover {
  opacity: 0.9;
}

.cookie_btn:active {
  opacity: 0.7;
}

.decline_btn {
  text-decoration: underline;
  color: rgba(var(--white), 0.55);
  font-size: 30rem;
  width: max-content;
  letter-spacing: 4rem;
}
.decline_btn:hover {
  text-decoration: none;
}

.price__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40rem;
  margin-bottom: 45rem;
}

.price__block_old {
  text-decoration: line-through;
  color: rgba(var(--black), 0.35);
  font-size: 30rem;
  line-height: 1;
}
.price__block_new {
  color: #2dc69d;
  font-size: 60rem;
  line-height: 1;
}
@media (min-height: 900px), (min-width: 1081px) {
}

@media (max-width: 1080px) {
  .price__block {
    margin: 45rem 0;
  }

  .price__block_old {
    font-size: 40rem;
  }
  .price__block_new {
    font-size: 70rem;
  }
  .cookie {
    padding: 72rem 107rem;
  }
  .cookie__btns {
    margin-top: 50rem;
  }
  .footer__content {
    flex-direction: column;
    gap: 80rem;
  }
  .footer .logo {
  }
  .footer__content_right {
    font-size: 52rem;
  }
  .btn__wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .btn__wrapper .btn {
    border-radius: 30rem;
    height: 100rem;
    min-width: 490rem;
    font-size: 30rem;
  }
  .int_btn {
    margin-top: 80rem;
    width: 100%;
    font-size: 32rem;
    border-radius: 30rem;
    height: 115rem;
  }
  .int__text {
    font-size: 50rem;
  }
  .int__content_right_desc {
    font-size: 27rem;
  }
  .int__content_right {
    order: 1;
  }
  .int__content_left {
    order: 2;
  }
  .int_img {
    width: 890rem;
  }
  .int__content {
    gap: 130rem;
    flex-direction: column;
  }
  .split_empty {
    font-size: 50rem;
  }
  .split__content br {
    display: none;
  }
  .split__content {
    padding: 70rem 60rem;
    font-size: 44rem;
  }
  .how {
    padding: 0 0 120rem;
  }
  .how_img_wrapper {
    margin: auto;
  }
  .form__content .product,
  .form .squires,
  .form .triangles {
    display: none !important;
  }
  .form__content_wrapper {
    padding: 80rem 75rem;
  }
  .form__end {
    font-size: 28rem;
    letter-spacing: 1rem;
  }
  .form__title {
    max-width: 630rem;
    margin-bottom: 0;
  }
  .form__content {
    display: block;
  }
  .input__wrapper label {
    font-size: 34rem;
    margin-bottom: 40rem;
  }
  input {
    height: 75rem;
  }
  .form__desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40rem;
    font-size: 34rem;
    margin-bottom: 15rem;
  }
  .form__desc .product {
    width: 352rem;
    display: block;
  }
  .how_img_wrapper_plus {
    display: none;
  }
  .how_img {
    width: 855rem;
    height: auto;
  }
  .how__text {
    font-size: 50rem;
  }
  .how__text br {
    display: none;
  }
  .how__content {
    flex-direction: column;
  }
  .how_img_wrapper {
    order: 2;
  }
  .how__content_right {
    order: 1;
  }
  .simp {
    padding-bottom: 180rem;
  }
  .simp__title {
    padding: 0 155rem;
  }
  .simp__content_item::before {
    position: static;
    transform: translateY(11rem);
  }
  .simp__content_item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 42rem;
    margin-bottom: 80rem;
  }
  .simp_img {
    width: 880rem;
    height: auto;
  }
  .simp__content_text br {
    display: none;
  }
  .simp__content_text {
    font-size: 50rem;
  }
  .simp__content {
    flex-direction: column;
    gap: 100rem;
  }
  :root {
    --offset: 60rem;
  }
  .logo {
    font-size: 72rem;
  }
  .logo::after {
    width: 27rem;
    height: 27rem;
  }
  .header {
  }
  h1 {
    font-size: 70rem;
    margin-bottom: 60rem;
  }
  .header__nav_link {
    font-size: 37rem;
  }
  h2 {
    font-size: 54rem;
  }
  h2 br {
    display: none;
  }
  .doc__description_content {
    margin-top: -200rem;
  }
  .nnew {
    padding-top: 120rem;
    padding-bottom: 170rem;
  }
  .nnew .inner {
    padding: 0 calc(var(--offset) * 2);
  }
  .nnew__time_tag {
    height: 72rem;
    min-width: 500rem;
    font-size: 36rem;
  }
  .nnew__soc {
    top: 260rem;
  }
  .nnew__text {
    line-height: 150%;
    font-size: 48rem;
  }
  .nnew .triangle2 {
    width: 280rem;
    height: 249rem;
    top: -70rem;
    right: -90rem;
  }
  .doc__description_block_icon img {
    width: 53rem;
    height: 57rem;
  }
  .doc__description_block_name {
    font-size: 31rem;
  }
  .doc__description_block_desc {
    font-size: 31rem;
  }
  .doc__description_block {
    height: 170rem;
    padding: 30rem 70rem;
    margin-right: calc(var(--offset) * -1);
  }
  .doc__description_block_icon {
    width: 100rem;
    height: 100rem;
  }
  html {
    font-size: 0.09259259259259259vw;
  }
  .int .squire,
  .split_empty .triangle,
  .how .triangle,
  .how .squire,
  .simp .triangle,
  .simp .squire,
  .nnew .squire,
  .doc__description_content .squire,
  .main .triangle,
  .main__content_right {
    display: none;
  }
  .main {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    padding-bottom: 900rem;
  }
}

@media (min-width: 0px) {
  html {
    font-size: 0.09259259259259259vw;
  }
}

@media (min-width: 1081px) {
  html {
    font-size: 0.052083333333333336vw;
  }
}
