@charset "UTF-8";

@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Regular.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Medium.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Medium.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Semibold.eot");
  src: url("../fonts/Gilroy/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Semibold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Semibold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Semibold.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Bold.eot");
  src: url("../fonts/Gilroy/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Bold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Bold.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Extrabold.eot");
  src: url("../fonts/Gilroy/Gilroy-Extrabold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Extrabold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Extrabold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Extrabold.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Heavy.eot");
  src: url("../fonts/Gilroy/Gilroy-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Heavy.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Heavy.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Heavy.svg#Gilroy") format("svg");
}

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: 1300px;
  --transition: 0.3s ease;
  --default-font-family: "Gilroy";
  --heading-font-family: "Gilroy";
  --sp: 60px;
  --sp-main: 120px;
  --accent: #FF6C39;
  --primary: #FF6C39;
  --secondary: #DEDEFF;
  --bg: #E7DFCC;
  --text-color: #290F05;
  --fz-default: 16px;
  --h1: 64px;
  --h2: 39px;
  --h3: 32px;
  --h4: 26px;
  --h5: 20px;
  --xl: 24px;
  --l: 22px;
  --m: 19px;
  --s: 14px;
  --xs: 12px;
  --tr: 0.3s ease 0s;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.wrapper {
  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%;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99FF99 !important;
}

.swiper-btn {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47' height='61' viewBox='0 0 47 61' fill='none'%3E%3Ccircle opacity='0.2' cx='30.7928' cy='29.6356' r='16.2069' fill='%23E081F7'/%3E%3Cpath d='M25.4303 37.1099L30.8355 31.7047H9.91821e-05V29.1865H30.8355L25.4303 23.7813L27.2106 22.001L35.6553 30.4456L27.2106 38.8903L25.4303 37.1099Z' fill='%23E081F7'/%3E%3C/svg%3E") center/contain no-repeat;
  width: 47px;
  height: 60px;
  cursor: pointer;
}

h1,
._h1 {
  font-weight: 800;
  font-size: var(--h1);
  line-height: 117%;
}

h2,
._h2 {
  font-weight: 400;
  font-size: var(--h2);
  line-height: 120%;
}

h2 b,
._h2 b {
  font-weight: 700;
}

h3,
._h3 {
  font-weight: 600;
  font-size: var(--h3);
  line-height: 100%;
}

h4,
._h4 {
  font-size: var(--h4);
  line-height: 120%;
  font-weight: 700;
}

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

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

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

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

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

.btn {
  font: normal 700 20px/normal Gilroy;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: var(--primary);
  width: 100%;
  height: 64px;
  color: #FFF;
}

.subm {
  cursor: pointer;
  border: none;
  margin: 10px 0 16px;
}

.form {
  max-width: 620px;
  position: relative;
  background: #FFF;
  box-shadow: 0px 4.224px 42.243px 0px rgba(68, 51, 104, 0.15);
  width: 100%;
  text-align: center;
  padding: 32px;
  border-radius: 8px;
  margin-top: 16px;
}

.form__title {
  margin-bottom: 36px;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 60px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  display: block;
}

.form .input::-moz-placeholder {
  font: 16px Gilroy;
  color: rgba(43, 41, 50, 0.7);
}

.form .input::placeholder {
  font: 16px Gilroy;
  color: rgba(43, 41, 50, 0.7);
}

.form .input__wrap {
  display: block;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
}

.form .input__wrap.focused .input__label {
  transform: translate(0, -25px);
  font-size: 10px;
}

.form .input__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  display: block;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease;
  color: rgba(43, 41, 50, 0.7);
}

.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;
}

.form__total {
  font-size: var(--s);
}

.form__total b {
  font-weight: 700;
}

.form__agree {
  font-size: var(--s);
  color: rgba(0, 0, 0, 0.8);
  margin-top: 12px;
}

.form__agree a {
  text-decoration: underline;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header::before {
  background: var(--bg);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

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

.header__logo {
  position: relative;
  background: url(../img/logo.svg) 50%/contain no-repeat;
  flex-shrink: 0;
  aspect-ratio: 96/40;
  width: 96px;
  display: block;
}

.header__menu {
  position: relative;
  display: flex;
  gap: 48px;
}

.header__menu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  transition: color var(--tr);
}

.header__menu li a:hover {
  color: var(--accent);
}

.header__btn {
  height: 50px;
  width: 207px;
  font-size: 14px;
  z-index: 1;
  border: none;
}

.header__btn:before {
  width: 100%;
  height: 100%;
}

.header__social {
  display: none;
}

.burger {
  position: relative;
  z-index: 110;
  display: none;
  height: 17px;
  width: 25px;
  cursor: pointer;
}

.burger._active span {
  background: #fff;
}

.burger span {
  background: var(--text-color);
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
}

.burger span:nth-child(1) {
  top: 0%;
  transform: rotate(0deg);
  transition: transform var(--tr), top var(--trd);
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity var(--trd);
}

.burger span:nth-child(3) {
  top: 100%;
  transform: rotate(0deg) translateY(-100%);
  transition: transform var(--tr), top var(--trd);
}

.burger._active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: top var(--tr), transform var(--trd);
}

.burger._active span:nth-child(2) {
  top: 50%;
  opacity: 0;
  transition: opacity var(--tr);
}

.burger._active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: top var(--tr), transform var(--trd);
}

.header.active .header__social {
  transform: translateY(0);
}

.early {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.early__container {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 16px;
}

.early__logo {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2282%22%20height%3D%2234%22%20viewBox%3D%220%200%2082%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_39_108)%22%3E%0A%3Cpath%20d%3D%22M74.5719%2019.2051H50.556C46.4525%2019.2051%2043.126%2022.5543%2043.126%2026.6859C43.126%2030.8174%2046.4525%2034.1666%2050.556%2034.1666H74.5719C78.6754%2034.1666%2082.002%2030.8174%2082.002%2026.6859C82.002%2022.5543%2078.6754%2019.2051%2074.5719%2019.2051Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M7.7385%200C9.88006%200%2011.7678%200.79014%2013.1441%202.11294V6.19139C12.4862%203.80132%2010.3876%202.13456%207.7385%202.13456C4.5369%202.13456%202.12008%204.56787%202.12008%207.79133C2.12008%2011.0148%204.5369%2013.4481%207.7385%2013.4481C10.1768%2013.4481%2012.1485%2012.0388%2012.9548%209.94751H5.61842V7.81295H13.1461V13.4697C11.7678%2014.7925%209.88006%2015.5827%207.74045%2015.5827C3.32849%2015.5827%200%2012.2314%200%207.79133C0%203.35121%203.32849%200%207.7385%200Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M15.0535%200.320374H26.5031V2.45493H17.1736V6.72404H26.5031V8.8586H17.1736V13.1277H26.5031V15.2623H15.0535V0.320374Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M28.4104%200.320374H32.8634L39.5203%2015.2623V0.320374H41.6404V15.2623H37.1875L30.5305%200.320374V15.2623H28.4104V0.320374Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M43.126%2013.1277H48.5316V2.45493H43.126V0.320374H56.0593V2.45493H50.6536V13.1277H56.0593V15.2623H43.126V13.1277Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M57.1194%208.26108V0.320374H59.2395V8.30432C59.2395%2011.3352%2061.4864%2013.5562%2064.4967%2013.5562C67.507%2013.5562%2069.8399%2011.3371%2069.8399%208.30432V0.320374H71.96V8.26108C71.96%2012.4673%2068.653%2015.6908%2064.4967%2015.6908C60.3405%2015.6908%2057.1174%2012.4457%2057.1174%208.26108H57.1194Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M72.9146%2014.2166V10.3091C73.1273%2012.1449%2074.9702%2013.3616%2076.7096%2013.3616C77.961%2013.3616%2079.2748%2012.6579%2079.2748%2011.2487C79.2748%208.23945%2072.9146%209.07087%2072.9146%204.39686C72.9146%201.6864%2075.0132%200.0845032%2077.5783%200.0845032C78.7653%200.0845032%2079.9327%200.448125%2080.8854%201.1734V5.10248C80.694%203.37282%2079.2943%202.22102%2077.5998%202.22102C76.3485%202.22102%2075.0346%202.81854%2075.0346%204.27106C75.0346%207.41%2081.3949%206.81052%2081.3949%2011.3155C81.3949%2014.0043%2079.2319%2015.5001%2076.7311%2015.5001C75.3743%2015.5001%2073.9961%2015.0736%2072.9146%2014.2186V14.2166Z%22%20fill%3D%22%23290F05%22%2F%3E%0A%3Cpath%20d%3D%22M47.9419%2027.6014V27.5405H48.7833V27.6014C48.7833%2028.0437%2049.3455%2028.2559%2050.4856%2028.2559C51.4949%2028.2559%2052.0298%2028.0614%2052.0298%2027.6899V27.6289C52.0298%2027.3381%2051.7409%2027.2142%2050.9151%2027.1258L49.9058%2027.0196C48.6603%2026.8879%2048.1078%2026.5341%2048.1078%2025.8266V25.7381C48.1078%2024.9264%2048.9844%2024.4389%2050.4583%2024.4389C51.9322%2024.4389%2052.879%2024.9696%2052.879%2025.8521V25.913H52.0454V25.8521C52.0454%2025.4276%2051.5007%2025.1976%2050.4231%2025.1976C49.5017%2025.1976%2048.9766%2025.3922%2048.9766%2025.7185V25.7794C48.9766%2026.0703%2049.2401%2026.2118%2049.9156%2026.2747L50.9424%2026.371C52.3109%2026.5027%2052.8985%2026.8742%2052.8985%2027.6073V27.6958C52.8985%2028.5174%2051.9771%2029.0205%2050.468%2029.0205C48.959%2029.0205%2047.9419%2028.482%2047.9419%2027.5995V27.6014Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M59.2588%2026.6564V26.7979C59.2588%2028.1502%2058.2495%2029.0229%2056.6702%2029.0229C56.0201%2029.0229%2055.4501%2028.8204%2055.0304%2028.4391V30.4184H54.189V24.5454H54.9698L55.005%2025.0486C55.4345%2024.6594%2056.0221%2024.4393%2056.6722%2024.4393C58.2515%2024.4393%2059.2608%2025.3041%2059.2608%2026.6564H59.2588ZM58.3901%2026.6564C58.3901%2025.7562%2057.7322%2025.2176%2056.6624%2025.2176C55.9694%2025.2176%2055.3544%2025.483%2055.0304%2025.9056V27.5487C55.3544%2027.9733%2055.9694%2028.2465%2056.6624%2028.2465C57.7322%2028.2465%2058.3901%2027.6981%2058.3901%2026.7979V26.6564Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M65.9079%2028.1659V28.9167H65.3281C64.7483%2028.9167%2064.354%2028.6868%2064.2056%2028.272C63.741%2028.785%2063.0909%2029.0229%2062.2046%2029.0229C60.9494%2029.0229%2060.2485%2028.5629%2060.2485%2027.7414C60.2485%2027.0436%2060.7834%2026.6014%2061.8005%2026.4952L64.1432%2026.2476C64.108%2025.5852%2063.5907%2025.2412%2062.6263%2025.2412C61.6619%2025.2412%2061.1095%2025.5852%2061.1095%2026.1159V26.1513H60.2759V26.1159C60.2759%2025.1095%2061.2149%2024.4373%2062.6361%2024.4373C64.0573%2024.4373%2064.9787%2025.1351%2064.9787%2026.3183V27.6785C64.9787%2027.9871%2065.172%2028.1639%2065.5234%2028.1639H65.9099L65.9079%2028.1659ZM64.1451%2027.4072V26.9394L61.9879%2027.1694C61.373%2027.2303%2061.0841%2027.417%2061.0841%2027.7433C61.0841%2028.0971%2061.4608%2028.274%2062.189%2028.274C63.1358%2028.274%2063.8386%2027.9556%2064.1451%2027.4092V27.4072Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M66.3647%2026.8234V26.6642C66.3647%2025.2962%2067.3643%2024.4393%2068.9534%2024.4393C70.3921%2024.4393%2071.4444%2025.2255%2071.4444%2026.3203V26.3557H70.5756V26.3203C70.5756%2025.6756%2069.9002%2025.2157%2068.9534%2025.2157C67.8738%2025.2157%2067.2335%2025.7542%2067.2335%2026.6721V26.8136C67.2335%2027.706%2067.8738%2028.2445%2068.9534%2028.2445C69.9099%2028.2445%2070.5756%2027.7846%2070.5756%2027.1497V27.1143H71.4444V27.1497C71.4444%2028.2543%2070.4273%2029.0229%2068.9534%2029.0229C67.374%2029.0229%2066.3647%2028.1659%2066.3647%2026.8234Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M77.305%2027.0102H73.1195C73.1722%2027.7787%2073.8047%2028.2465%2074.8042%2028.2465C75.7334%2028.2465%2076.3562%2027.9025%2076.4011%2027.3895H77.305C77.2093%2028.4135%2076.2781%2029.0229%2074.8042%2029.0229C73.2346%2029.0229%2072.2429%2028.1757%2072.2429%2026.8333V26.6485C72.2429%2025.2962%2073.2346%2024.4412%2074.8042%2024.4412C76.3738%2024.4412%2077.305%2025.2628%2077.305%2026.6131V27.0102ZM73.137%2026.3045H76.4089C76.3035%2025.6245%2075.7159%2025.2176%2074.8042%2025.2176C73.8925%2025.2176%2073.26%2025.6245%2073.137%2026.3045Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_39_108%22%3E%0A%3Crect%20width%3D%2282%22%20height%3D%2233.935%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A') 50%/contain no-repeat;
  flex-shrink: 0;
  aspect-ratio: 82/33.94;
  width: 82px;
}

.early__title {
  max-width: 930px;
  text-align: center;
}

.early__title b {
  font-weight: 700;
}

.early__subtitle {
  max-width: 722px;
  opacity: 0.8;
  text-align: center;
  font-weight: 500;
}

.early__form {
  padding: 32px;
  position: relative;
  z-index: 2;
}

.early__decor {
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
}

.success {
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
  padding-top: 50px;
}

.success__decor {
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
  z-index: -1;
}

.success__sheet {
  background: #FAF7F0;
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 16px;
  min-height: 576px;
  filter: drop-shadow(-4px -8px 34px rgba(0, 0, 0, 0.15));
}

.success__title {
  line-height: 120%;
}

.success__subtitle {
  max-width: 650px;
}

.success__button {
  max-width: 360px;
  font-size: 18px;
  margin-top: 16px;
}

.success__convert {
  position: relative;
  padding-top: 135px;
  width: 100%;
  max-width: 930px;
  padding-bottom: 200px;
  margin: 0 auto;
  transform: translateY(10px);
}

.success__convert-header {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  background: url(../img/convert-header.svg) 50%/contain no-repeat;
  aspect-ratio: 918/347;
  transform: translateX(-50%);
  max-width: calc(100% - 20px);
}

.success__convert-body {
  aspect-ratio: 930/576;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/convert-body.svg) 50%/contain no-repeat;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0px -4.88px 37.576px rgba(0, 0, 0, 0.45));
}

.success__convert-footer {
  aspect-ratio: 915/347;
  width: 100%;
  bottom: 6px;
  left: 0;
  left: 50%;
  position: absolute;
  background: url(../img/convert-footer.svg) 50%/contain no-repeat;
  z-index: 20;
  transform: translateX(-50%);
  max-width: 920px;
}

.success__convert-footer-logo {
  margin-top: 60px;
}

.footer {
  margin-top: auto;
  background: #26422B !important;
}

.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,
#modal-video .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

.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: var(--secondary);
  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;
}

.timer-light .countdownHolder .countDays,
.timer-light .countdownHolder .countHours,
.timer-light .countdownHolder .countMinutes,
.timer-light .countdownHolder .countSeconds {
  border-radius: 5px;
  padding: 15px;
}

.timer-light .countdownHolder .textdigit {
  font-size: 10px !important;
  letter-spacing: 0px;
  font-weight: 400;
  color: #01051c;
  margin-top: -3px;
}

.timer-light .countdownHolder .countDiv {
  display: inherit;
  width: 10px;
  height: 1em;
  position: relative;
  margin: 0 3px;
}

.timer-light .countdownHolder .countDiv:before,
.timer-light .countdownHolder .countDiv:after {
  background: var(--secondary);
  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: "";
}

.timer-light .countdownHolder .countDiv:after {
  top: 0.6em;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 56px;
    --h2: 24px;
    --h3: 24px;
    --h4: 24px;
    --l: 16px;
    --m: 18px;
    --s: 12px;
    --xs: 10px;
    --sp-main: 80px;
    --sp: 30px;
    --fz-default: 15px;
  }

  .form {
    padding: 16px;
  }

  .form .input::-moz-placeholder {
    font-size: 12px;
  }

  .form .input::placeholder {
    font-size: 12px;
  }

  .form .input__label {
    font-size: 12px;
  }

  .header__logo {
    width: 68px;
  }

  .header__menu {
    gap: 24px;
  }

  .header__btn {
    height: 40px;
    display: inline-flex;
    width: auto;
  }

  .success__sheet {
    min-height: 460px;
    max-width: 700px;
    padding: 20px 40px;
  }

  .success__convert {
    padding-top: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 460px;
    --sp-main: 60px;
  }

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

  .swiper-btn {
    display: none;
  }

  h1,
  ._h1 {
    line-height: 100%;
  }

  .header {
    padding: 10px 0;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(18, 18, 18, 0.5647058824);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    z-index: 104;
    transition: transform var(--tr);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }

  .header__menu li a {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
  }

  .header__menu._active {
    transform: translateY(0%);
  }

  .header__social {
    display: flex;
    position: fixed;
    bottom: 50px;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 100;
    width: 100%;
    opacity: 1;
    transition: 0.3s ease;
    transform: translateX(-100%);
    z-index: 111;
  }

  .header__social_link {
    margin: 0 10px;
  }

  .burger {
    display: block;
  }

  .success {
    padding-bottom: 60px;
  }

  .success__sheet {
    padding: 10px 20px;
    max-width: 340px;
    min-height: auto;
    padding-bottom: 150px;
  }

  .success__title {
    font-size: 21px;
  }

  .success__button {
    margin-top: 0;
    font-size: 14px;
    max-width: 300px;
  }

  .success__convert {
    max-width: 360px;
    max-height: auto;
    padding-bottom: 66px;
  }

  .success__convert-header {
    display: none;
  }

  .success__convert-footer {
    bottom: 2px;
  }

  .countdownHolder {
    font: 23px/1 Gilroy, sans-serif;
  }
}

@media (max-width: 460px) {
  :root {
    --container-width: 100%;
  }
}