@charset "UTF-8";

@font-face {
  font-family: Benzin;
  font-display: swap;
  src: url("../fonts/Benzin-Semibold.woff2") format("woff2"), url("../fonts/Benzin-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

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

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

@font-face {
  font-family: "Fixel Text";
  font-display: swap;
  src: url("../fonts/FixelText-BoldItalic.woff2") format("woff2"), url("../fonts/FixelText-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Fixel Text";
  font-display: swap;
  src: url("../fonts/FixelText-SemiBold.woff2") format("woff2"), url("../fonts/FixelText-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Fixel Text";
  font-display: swap;
  src: url("../fonts/FixelText-Medium.woff2") format("woff2"), url("../fonts/FixelText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Fixel Text";
  font-display: swap;
  src: url("../fonts/FixelText-MediumItalic.woff2") format("woff2"), url("../fonts/FixelText-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Fixel Text";
  font-display: swap;
  src: url("../fonts/FixelText-Regular.woff2") format("woff2"), url("../fonts/FixelText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Fixel Text";
  font-display: swap;
  src: url("../fonts/FixelText-RegularItalic.woff2") format("woff2"), url("../fonts/FixelText-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

:root {
  --container-width: 1260px;
  --transition: .3s ease;
  --default-font-family: "Fixel Text";
  --heading-font-family: "Benzin";
  --sp: 50px;
  --primary: #0071E3;
  --secondary: #1C1C1E;
  --grey-100: #F5F5F7;
  --grey-200: #D2D2D7;
  --grey-300: #4B4B4B;
  --white: #FFFFFF;
  --black: #1C1C1E;
  --red: #FF3F3F;
  --green: #00E067;
  --fz-default: 16px;
  --h1: 60px;
  --h2: 40px;
  --h3: 25px;
  --h4: 21px;
  --h5: 18px;
  --h6: 14px;
  --xl: 24px;
  --l: 23px;
  --m: 18px;
  --s: 16px;
  --xs: 14px;
  --xxs: 10px;
}

body {
  font: 400 var(--s)/140% var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--white);
  min-width: 360px;
  color: var(--secondary);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  padding-top: 96px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

[class*=__container] [class*=__container] {
  padding: 0;
}

form input.error {
  border-bottom: 1px solid var(--red) !important;
}

form input.not_error {
  border-bottom: 1px solid var(--green) !important;
}

a,
svg path {
  transition: var(--transition);
}

._e {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

._e ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}

._e strong,
._e b {
  font-weight: 700;
}

._e em {
  font-style: italic;
}

h1,
._h1 {
  font: 600 var(--h1)/120% var(--heading-font-family);
}

h2,
._h2 {
  font: 600 var(--h2)/120% var(--heading-font-family);
}

h3,
._h3 {
  font: 600 var(--h3)/140% var(--heading-font-family);
}

h4,
._h4 {
  font: 500 var(--h4)/120% var(--heading-font-family);
}

h5,
._h5 {
  font: 500 var(--h5)/120% var(--heading-font-family);
}

h6,
._h6 {
  font: 700 var(--h6)/140% var(--heading-font-family);
}

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

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._primary {
  color: var(--primary);
}

._secondary {
  color: var(--secondary);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 55px;
  border-radius: 100px;
  background: var(--primary, #0071E3);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.btn:hover {
  background: #1385F5;
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.subm {
  cursor: pointer;
  border: none;
  font-family: "Fixel Text";
}

.form {
  max-width: 460px;
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.form .input {
  font: 500 16px/1 "Fixel Text";
  background: transparent;
  width: 100%;
  height: 70px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--grey-200, #D2D2D7);
  display: block;
}

.form .input--textarea {
  min-height: 120%;
  min-height: 100px;
  resize: none;
  font-family: "Fixel Text";
  font-weight: 400;
  padding-top: 8px;
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form .input::-moz-placeholder {
  color: var(--grey-300, #4B4B4B);
}

.form .input:-ms-input-placeholder {
  color: var(--grey-300, #4B4B4B);
}

.form .input::placeholder {
  color: var(--grey-300, #4B4B4B);
}

.form__button {
  margin-right: auto;
  border: none;
  margin-top: 32px;
}

.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form__agree-checkbox {
  cursor: pointer;
}

.form__agree-checkbox input {
  display: none;
  z-index: -1;
}

.form__agree-checkbox span {
  display: block;
}

.form__agree-checkbox span:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='1.5' stroke='%23D2D2D7'/%3E%3C/svg%3E") 50%/contain no-repeat;
}

.form__agree-checkbox input:checked + span:before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='1.5' stroke='%23D2D2D7'/%3E%3Cpath d='M15.4392 5.64288L7.74207 13.34L4.24339 9.8413' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") 50%/contain no-repeat;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.header {
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--white);
  z-index: 100;
  transition: var(--transition);
}

.header.black {
  background: var(--secondary);
}

.header.black .header__menu li:before {
  background: var(--white);
}

.header.black a {
  color: var(--white);
}

.header.black .header__logo {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22190%22%20height%3D%2232%22%20viewBox%3D%220%200%20190%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M79.9353%2031.8578L90.0163%200.142578H98.9644L88.8834%2031.8578H79.9353Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M130.045%2031.8578L140.126%200.142578H149.075L138.994%2031.8578H130.045Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M24.7507%208.24485V0.142578H16.822C8.06412%200.142578%200.964355%207.24234%200.964355%2016.0002V31.8578H9.27818V8.24485H24.7507Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M109.181%2031.8578V0.142578H100.867V31.8578H109.181Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M79.9354%2031.8578L69.8544%200.142578H60.9062L70.9872%2031.8578H79.9354Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M130.045%2031.8578L119.964%200.142578H111.016L121.097%2031.8578H130.045Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M59.0033%200.142578H27.2881V31.8578H59.0033V20.4403H53.6675C51.9352%2024.5404%2047.8766%2027.4176%2043.1457%2027.4176C38.2939%2027.4176%2034.1487%2024.3911%2032.4954%2020.1231H44.0971V12.5115H32.2712C33.7453%207.91216%2038.0567%204.5827%2043.1457%204.5827C48.117%204.5827%2052.3459%207.75993%2053.9136%2012.1943H59.0033V0.142578Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M182.692%200.142578H150.977V31.8578H182.692V20.4403H177.357C175.624%2024.5404%20171.566%2027.4176%20166.835%2027.4176C161.983%2027.4176%20157.838%2024.3911%20156.185%2020.1231H167.786V12.5115H155.96C157.434%207.91216%20161.746%204.5827%20166.835%204.5827C171.806%204.5827%20176.035%207.75993%20177.603%2012.1943H182.692V0.142578Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M186.816%204.26555C187.867%204.26555%20188.718%203.41368%20188.718%202.36264C188.718%201.3116%20187.867%200.45973%20186.816%200.45973C185.764%200.45973%20184.913%201.3116%20184.913%202.36264C184.913%203.41368%20185.764%204.26555%20186.816%204.26555ZM186.816%204.5827C188.042%204.5827%20189.036%203.58875%20189.036%202.36264C189.036%201.13653%20188.042%200.142578%20186.816%200.142578C185.589%200.142578%20184.595%201.13653%20184.595%202.36264C184.595%203.58875%20185.589%204.5827%20186.816%204.5827Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M187.853%203.63097H187.396L186.86%202.70678H186.367V3.63097H185.95V1.09375H186.965C187.192%201.09375%20187.384%201.17335%20187.541%201.33288C187.701%201.48765%20187.781%201.67985%20187.781%201.90915C187.781%202.07121%20187.733%202.21964%20187.639%202.35506C187.547%202.48795%20187.427%202.58468%20187.277%202.64494L187.853%203.63097ZM186.965%201.48511H186.367V2.3335H186.965C187.076%202.3335%20187.17%202.29227%20187.248%202.21013C187.325%202.12798%20187.364%202.02776%20187.364%201.90915C187.364%201.79085%20187.325%201.69063%20187.248%201.60849C187.17%201.52635%20187.076%201.48511%20186.965%201.48511Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
}

.header.black .header__burger {
  background: var(--secondary);
}

.header.black .header__burger span {
  background: var(--white);
}

.header.active .header__contacts,
.header.active .header__menu {
  transform: none;
}

.header.active .header__burger {
  position: relative;
}

.header.active .header__burger span:nth-child(1) {
  transform: translate(0px, 7px) rotate(45deg);
}

.header.active .header__burger span:nth-child(2) {
  transform: translate(0px, -7px) rotate(-45deg);
}

.header.active .header__burger span:nth-child(3) {
  display: none;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22190%22%20height%3D%2232%22%20viewBox%3D%220%200%20190%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M79.9353%2031.8576L90.0163%200.142395H98.9644L88.8834%2031.8576H79.9353Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M130.045%2031.8576L140.126%200.142395H149.075L138.994%2031.8576H130.045Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M24.7507%208.24467V0.142395H16.822C8.06412%200.142395%200.964355%207.24216%200.964355%2016V31.8576H9.27818V8.24467H24.7507Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M109.181%2031.8576V0.142395H100.867V31.8576H109.181Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M79.9354%2031.8576L69.8544%200.142395H60.9062L70.9872%2031.8576H79.9354Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M130.045%2031.8576L119.964%200.142395H111.016L121.097%2031.8576H130.045Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M59.0033%200.142395H27.2881V31.8576H59.0033V20.4401H53.6675C51.9352%2024.5403%2047.8766%2027.4175%2043.1457%2027.4175C38.2939%2027.4175%2034.1487%2024.3909%2032.4954%2020.123H44.0971V12.5113H32.2712C33.7453%207.91198%2038.0567%204.58252%2043.1457%204.58252C48.117%204.58252%2052.3459%207.75975%2053.9136%2012.1942H59.0033V0.142395Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M182.692%200.142395H150.977V31.8576H182.692V20.4401H177.357C175.624%2024.5403%20171.566%2027.4175%20166.835%2027.4175C161.983%2027.4175%20157.838%2024.3909%20156.185%2020.123H167.786V12.5113H155.96C157.434%207.91198%20161.746%204.58252%20166.835%204.58252C171.806%204.58252%20176.035%207.75975%20177.603%2012.1942H182.692V0.142395Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M186.816%204.26537C187.867%204.26537%20188.718%203.4135%20188.718%202.36246C188.718%201.31142%20187.867%200.459547%20186.816%200.459547C185.764%200.459547%20184.913%201.31142%20184.913%202.36246C184.913%203.4135%20185.764%204.26537%20186.816%204.26537ZM186.816%204.58252C188.042%204.58252%20189.036%203.58857%20189.036%202.36246C189.036%201.13635%20188.042%200.142395%20186.816%200.142395C185.589%200.142395%20184.595%201.13635%20184.595%202.36246C184.595%203.58857%20185.589%204.58252%20186.816%204.58252Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M187.853%203.63109H187.396L186.86%202.70691H186.367V3.63109H185.95V1.09387H186.965C187.192%201.09387%20187.384%201.17348%20187.541%201.333C187.701%201.48777%20187.781%201.67997%20187.781%201.90927C187.781%202.07133%20187.733%202.21976%20187.639%202.35519C187.547%202.48807%20187.427%202.58481%20187.277%202.64506L187.853%203.63109ZM186.965%201.48524H186.367V2.33362H186.965C187.076%202.33362%20187.17%202.29239%20187.248%202.21025C187.325%202.12811%20187.364%202.02788%20187.364%201.90927C187.364%201.79097%20187.325%201.69075%20187.248%201.60861C187.17%201.52647%20187.076%201.48524%20186.965%201.48524Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  aspect-ratio: 190/32;
  width: 190px;
  display: block;
  z-index: 20;
  transition: var(--transition);
}

.header__menu {
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.header__menu li {
  overflow: hidden;
  position: relative;
}

.header__menu li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary);
  transition: var(--transition);
  transform: translateX(-110%);
}

.header__menu li:hover:before {
  transform: translateX(0);
}

.header__contacts {
  display: flex;
  flex-flow: column;
}

.header__phone {
  font-size: var(--xl);
  line-height: 140%;
  font-weight: 600;
}

.header__phone:hover {
  color: var(--primary);
}

.header__email:hover {
  color: var(--primary);
}

.header__burger {
  display: none;
  width: 32px;
  height: 32px;
  background: var(--white);
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 8px;
  cursor: pointer;
  z-index: 20;
}

.header__burger span {
  height: 2px;
  background: var(--secondary);
  transition: 0.3s ease;
}

.section404 {
  padding: var(--sp) 0;
  text-align: center;
}

.section404__container {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.section404__inner {
  min-height: 550px;
  border-radius: 20px;
  background: var(--grey-100, #F5F5F7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 32px;
}

.section404__code {
  font-size: 100px;
  font-weight: 700;
  height: 180px;
  width: 100%;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22645%22%20height%3D%22179%22%20viewBox%3D%220%200%20645%20179%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M127.386%20151.908H0V108.851L127.386%200H183.571V108.851H209V151.908H183.571V179H127.386V151.908ZM127.386%20108.851V48.3784L58.365%20108.851H127.386Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20d%3D%22M563.386%20151.908H436V108.851L563.386%200H619.571V108.851H645V151.908H619.571V179H563.386V151.908ZM563.386%20108.851V48.3784L494.365%20108.851H563.386Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M412%20179L233%20179L233%200L412%20-1.56487e-05L412%2064.44L381.885%2064.44C372.108%2041.2989%20349.201%2025.06%20322.5%2025.06C295.117%2025.06%20271.721%2042.142%20262.39%2066.23L327.87%2066.23L327.87%20109.19L261.124%20109.19C269.444%20135.149%20293.778%20153.94%20322.5%20153.94C350.558%20153.94%20374.426%20136.008%20383.274%20110.98L412%20110.98L412%20179Z%22%20fill%3D%22%231C1C1E%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
}

.section404__text {
  margin-top: 12px;
  max-width: 430px;
}

.hero {
  padding-bottom: var(--sp);
  text-align: center;
}

.hero--success .hero__subtitle {
  max-width: 450px;
}

.hero__inner {
  padding: 32px 200px;
  border-radius: 20px;
  background: var(--grey-100, #F5F5F7);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 24px;
}

.hero__title {
  max-width: 800px;
}

.hero__subtitle {
  max-width: 400px;
}

.hero__button {
  margin-top: 8px;
  position: relative;
  z-index: 10;
}

.hero__decor {
  position: absolute;
}

.hero__decor--iphone {
  left: -220px;
  top: -78px;
  aspect-ratio: 384/672;
  width: 384px;
  z-index: 3;
}

.hero__decor--iwatch {
  aspect-ratio: 1/1;
  width: 270px;
  left: -30px;
  bottom: 70px;
  z-index: 2;
}

.hero__decor--airpods {
  aspect-ratio: 209/196;
  width: 209px;
  left: 130px;
  bottom: 76px;
  z-index: 1;
}

.hero__decor--macbook {
  aspect-ratio: 620/595;
  width: 620px;
  bottom: 37px;
  right: -170px;
  z-index: 1;
}

.hero__decor-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero__decor-image--iphone {
  background: url(../img/iphone.webp) 50%/contain no-repeat;
  transform: rotate(52.292deg);
}

.hero__decor-image--iwatch {
  background: url(../img/iwatch.webp) 50%/contain no-repeat;
  transform: rotate(-16.679deg);
}

.hero__decor-image--airpods {
  background: url(../img/airpods.webp) 50%/contain no-repeat;
  transform: rotate(24.56deg);
}

.hero__decor-image--macbook {
  background: url(../img/macbook.webp) 50%/contain no-repeat;
  transform: rotate(-2.209deg);
}

.repair {
  padding: var(--sp) 0;
}

.repair__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.repair .item {
  border-radius: 20px;
  background: var(--grey-100, #F5F5F7);
  padding: 32px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.repair .item__title {
  font-size: 18px;
}

.repair .item__image {
  width: 253px;
  aspect-ratio: 252/232;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

.advantages {
  padding: var(--sp) 0;
}

.advantages__container {
  display: flex;
  flex-flow: column;
  gap: 64px;
}

.advantages__title {
  text-align: center;
}

.advantages__items {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 50px;
}

.advantages .item {
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.advantages .item__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.advantages .item__title {
  font-size: var(--l);
  line-height: 120%;
  font-weight: 500;
}

.advantages .item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--secondary, #1C1C1E);
}

.advantages .item__text strong,
.advantages .item__text b {
  font-weight: 700;
}

.prepare {
  padding: var(--sp) 0;
}

.prepare__container {
  display: flex;
  gap: 64px;
}

.prepare__content {
  width: 100%;
  max-width: 715px;
  display: flex;
  flex-flow: column;
  gap: 64px;
}

.prepare__image {
  flex: 1;
  border-radius: 20px;
  background: 50%/cover no-repeat;
}

.prepare .item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #D2D2D7;
}

.prepare .item:first-child {
  padding-top: 0;
}

.prepare .item:last-child {
  padding-bottom: 0;
  border: none;
}

.prepare .item__number {
  font: 500 var(--h4)/1 var(--heading-font-family);
  border-radius: 36px;
  background: var(--grey-100, #F5F5F7);
  width: 85px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  vertical-align: middle;
}

.prepare .item__text {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
  margin-left: auto;
}

.prepare__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.prepare__text {
  max-width: 300px;
  width: 100%;
  font-weight: 500;
}

.stages {
  padding: var(--sp) 0;
}

.stages__title {
  text-align: center;
}

.stages__items {
  --columns: 4;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 20px;
}

.stages .item {
  padding: 24px;
  border-radius: 10px;
  background: var(--grey-100, #F5F5F7);
}

.stages .item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--secondary, #1C1C1E);
  width: 60px;
  height: 60px;
}

.stages .item__title {
  font-size: var(--l);
  line-height: 120%;
  font-weight: 500;
  margin: 16px 0 8px;
}

.faq {
  padding: var(--sp) 0;
}

.faq__title {
  text-align: center;
}

.faq__items {
  margin-top: 64px;
  display: flex;
  gap: 20px;
}

.faq__column {
  width: 100%;
}

.faq .item {
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-200, #D2D2D7);
}

.faq .item.active .item__answer {
  max-height: 1000px;
  margin-top: 8px;
}

.faq .item.active .item__question:after {
  transform: rotate(45deg);
}

.faq .item__question {
  font: 500 var(--h4)/120% var(--heading-font-family);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq .item__question:after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary, #1C1C1E) url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10L18 10' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10 2V18' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") 50% no-repeat;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq .item__answer {
  transition: 0.3s ease;
  max-height: 0;
  overflow: hidden;
  max-width: 505px;
  font-size: var(--m);
  line-height: 140%;
}

.contacts {
  padding: var(--sp) 0 calc(var(--sp) * 2);
}

.contacts__container {
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.contacts__inner {
  border-radius: 20px;
  background: var(--grey-100, #F5F5F7);
  padding: 64px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contacts__content {
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.contacts__map {
  height: 525px;
  position: relative;
}

.contacts__map-frame {
  position: absolute;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.contacts__subtitle {
  max-width: 400px;
}

.contacts__social {
  margin-top: auto;
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.contacts__social-links {
  display: flex;
  gap: 14px;
}

.contacts__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
}

.contacts__social-link:hover path {
  fill: var(--primary);
}

.contacts__social-link path {
  fill: var(--secondary);
}

.single-page__wrap {
  padding: var(--sp) 0;
}

.footer {
  margin-top: auto;
  padding: 64px 0 32px;
  background: var(--secondary);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer__container {
  display: flex;
  align-items: flex-start;
  flex-flow: wrap;
  gap: 109px;
}

.footer__logo {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22190%22%20height%3D%2232%22%20viewBox%3D%220%200%20190%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M79.9353%2031.8578L90.0163%200.142578H98.9644L88.8834%2031.8578H79.9353Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M130.045%2031.8578L140.126%200.142578H149.075L138.994%2031.8578H130.045Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M24.7507%208.24485V0.142578H16.822C8.06412%200.142578%200.964355%207.24234%200.964355%2016.0002V31.8578H9.27818V8.24485H24.7507Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M109.181%2031.8578V0.142578H100.867V31.8578H109.181Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M79.9354%2031.8578L69.8544%200.142578H60.9062L70.9872%2031.8578H79.9354Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M130.045%2031.8578L119.964%200.142578H111.016L121.097%2031.8578H130.045Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M59.0033%200.142578H27.2881V31.8578H59.0033V20.4403H53.6675C51.9352%2024.5404%2047.8766%2027.4176%2043.1457%2027.4176C38.2939%2027.4176%2034.1487%2024.3911%2032.4954%2020.1231H44.0971V12.5115H32.2712C33.7453%207.91216%2038.0567%204.5827%2043.1457%204.5827C48.117%204.5827%2052.3459%207.75993%2053.9136%2012.1943H59.0033V0.142578Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M182.692%200.142578H150.977V31.8578H182.692V20.4403H177.357C175.624%2024.5404%20171.566%2027.4176%20166.835%2027.4176C161.983%2027.4176%20157.838%2024.3911%20156.185%2020.1231H167.786V12.5115H155.96C157.434%207.91216%20161.746%204.5827%20166.835%204.5827C171.806%204.5827%20176.035%207.75993%20177.603%2012.1943H182.692V0.142578Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M186.816%204.26555C187.867%204.26555%20188.718%203.41368%20188.718%202.36264C188.718%201.3116%20187.867%200.45973%20186.816%200.45973C185.764%200.45973%20184.913%201.3116%20184.913%202.36264C184.913%203.41368%20185.764%204.26555%20186.816%204.26555ZM186.816%204.5827C188.042%204.5827%20189.036%203.58875%20189.036%202.36264C189.036%201.13653%20188.042%200.142578%20186.816%200.142578C185.589%200.142578%20184.595%201.13653%20184.595%202.36264C184.595%203.58875%20185.589%204.5827%20186.816%204.5827Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M187.853%203.63097H187.396L186.86%202.70678H186.367V3.63097H185.95V1.09375H186.965C187.192%201.09375%20187.384%201.17335%20187.541%201.33288C187.701%201.48765%20187.781%201.67985%20187.781%201.90915C187.781%202.07121%20187.733%202.21964%20187.639%202.35506C187.547%202.48795%20187.427%202.58468%20187.277%202.64494L187.853%203.63097ZM186.965%201.48511H186.367V2.3335H186.965C187.076%202.3335%20187.17%202.29227%20187.248%202.21013C187.325%202.12798%20187.364%202.02776%20187.364%201.90915C187.364%201.79085%20187.325%201.69063%20187.248%201.60849C187.17%201.52635%20187.076%201.48511%20186.965%201.48511Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  aspect-ratio: 190/32;
  width: 190px;
  display: block;
  margin-right: auto;
}

.footer__menu {
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.footer__menu a {
  display: inline-flex;
}

.footer__menu li {
  overflow: hidden;
  position: relative;
  margin-right: auto;
}

.footer__menu li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
  transform: translateX(-110%);
}

.footer__menu li:hover:before {
  transform: translateX(0);
}

.footer__contacts {
  display: flex;
  flex-flow: column;
  gap: 12px;
}

.footer__social {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
}

.footer__social-link:hover path {
  fill: var(--primary);
}

.footer__info {
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.footer__phone {
  font-size: var(--xl);
  line-height: 140%;
  font-weight: 600;
}

.footer__phone:hover {
  color: var(--primary);
}

.footer__email:hover {
  color: var(--primary);
}

.footer__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey-300, #4B4B4B);
}

.footer__bottom a {
  color: var(--grey-300, #4B4B4B);
}

.footer__docs a:hover {
  color: var(--white);
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: "";
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --sp: 32px;
    --xl: 20px;
    --l: 19px;
    --s: 14px;
    --h1: 24px;
    --h2: 22px;
    --h3: 20px;
    --h4: 18px;
    --h5: 16px;
  }

  .wrapper {
    padding-top: 52px;
  }

  .form {
    max-width: 360px;
    gap: 16px;
  }

  .form .input {
    line-height: 1;
    height: 50px;
  }

  .form__button {
    margin-top: 16px;
  }

  .header {
    padding: 10px 0;
  }

  .header__menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 32px;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    transform: translateX(100%);
  }

  .header__contacts {
    transition: var(--transition);
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin-left: auto;
  }

  .header__burger {
    display: flex;
  }

  .section404__code {
    height: 120px;
  }

  .hero__inner {
    padding: 64px 64px 200px;
    min-height: 400px;
  }

  .hero__title {
    max-width: 400px;
  }

  .hero__decor--iphone {
    width: 300px;
    left: -150px;
    top: 30px;
  }

  .hero__decor--iwatch {
    width: 200px;
    left: 50px;
    bottom: 20px;
  }

  .hero__decor--airpods {
    width: 160px;
    left: 150px;
    bottom: 0;
  }

  .hero__decor--macbook {
    width: 360px;
    bottom: 0;
    right: 0;
  }

  .repair__container {
    gap: 16px;
  }

  .repair .item {
    height: 236px;
    padding: 16px;
  }

  .repair .item__image {
    width: 150px;
  }

  .advantages__container {
    gap: 32px;
  }

  .advantages__items {
    gap: 20px;
  }

  .advantages .item {
    gap: 8px;
  }

  .advantages .item__icon {
    width: 48px;
    height: 48px;
  }

  .prepare__container {
    gap: 20px;
  }

  .prepare__content {
    gap: 32px;
    max-width: 360px;
  }

  .prepare .item {
    gap: 8px;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .prepare .item__number {
    height: 40px;
    width: 60px;
  }

  .prepare .item__title {
    width: calc(100% - 76px);
  }

  .prepare .item__text {
    margin: 0;
    max-width: 100%;
  }

  .prepare__footer {
    flex-direction: column-reverse;
  }

  .stages__items {
    --columns: 2;
    margin-top: 32px;
  }

  .stages .item {
    padding: 16px;
  }

  .faq__items {
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
  }

  .faq .item {
    padding: 24px 0;
  }

  .faq .item__question {
    gap: 8px;
  }

  .faq .item__question:after {
    width: 40px;
    height: 40px;
  }

  .contacts__inner {
    padding: 24px;
  }

  .contacts__content {
    gap: 16px;
  }

  .footer__container {
    gap: 32px;
    justify-content: space-between;
  }

  .footer__logo {
    width: 120px;
    margin: 0;
  }

  .footer__menu {
    gap: 16px;
  }

  .footer__info {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
  }

  [class*=__container] {
    flex-direction: column;
  }

  .form__button {
    width: 100%;
  }

  .header__container {
    flex-direction: row;
  }

  .header__contacts {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 10;
    gap: 8px;
    flex-direction: column;
    transform: translateY(200%);
  }

  .section404__code {
    height: 80px;
  }

  .hero__inner {
    padding: 16px 16px 300px;
  }

  .hero__decor--iphone {
    top: auto;
    width: 200px;
    bottom: 10px;
    left: -100px;
  }

  .hero__decor--iwatch {
    width: 150px;
    left: 0;
  }

  .hero__decor--airpods {
    width: 100px;
    left: 100px;
  }

  .hero__decor--macbook {
    width: 300px;
    bottom: 80px;
    right: -100px;
  }

  .repair__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
  }

  .repair .item {
    height: 174px;
  }

  .repair .item__image {
    width: 100px;
  }

  .prepare__content {
    text-align: center;
    gap: 20px;
  }

  .prepare__image {
    height: 340px;
    width: 100%;
    flex: auto;
    order: -1;
  }

  .prepare .item {
    text-align: center;
    justify-content: center;
  }

  .prepare .item__title {
    width: 100%;
  }

  .stages__items {
    --columns: 1;
    gap: 16px;
  }

  .stages .item {
    text-align: center;
  }

  .stages .item__icon {
    margin: 0 auto;
  }

  .contacts__inner {
    flex-direction: column;
  }

  .contacts__map-frame {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }

  .footer {
    text-align: center;
  }

  .footer__container {
    justify-content: center;
    align-items: center;
  }

  .footer__menu li {
    margin: 0;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    display: flex;
    flex-flow: column;
    gap: 16px;
  }
}