html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
  border-bottom: none;
  /* 1 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  /* 2 */
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  display: table;
  /* 1 */
  box-sizing: border-box;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  /* 2 */
  -webkit-appearance: textfield;
  /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  /* 2 */
  -webkit-appearance: button;
  /* 1 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --text-main: #232e3e;
  --text-secondary: #0661a4;
  --color-accent: #f8a025;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--text-main);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media (max-width: 1279px) {
  .button {
    padding: 12px 24px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .button {
    max-width: 160px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 14px;
  }
}
.button:hover, .button:focus {
  transform: scale(1.025);
}
.button_primary {
  background-image: linear-gradient(0deg, #eb6e59 0%, #fcd051 100%);
  background-clip: padding-box, border-box;
  box-shadow: 0px -5px 9.5px 0 rgba(215, 194, 228, 0.5);
}
.button_secondary {
  position: relative;
  color: #232e3e;
  box-shadow: 0px -5px 9.5px 0 rgba(215, 194, 228, 0.5);
}
.button_secondary::before {
  content: "";
  position: absolute;
  padding: 2px;
  background: linear-gradient(0deg, #eb6e59 0%, #fcd051 100%);
  border-radius: 50px;
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .container {
    max-width: 480px;
  }
}

.page {
  overflow-x: hidden;
  background-image: url("../images/main-bg.jpg");
  background-image: url("../images/main-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.header {
  padding: 24px 0 12px;
  background-color: #f3f7fd;
}
@media (max-width: 767px) {
  .header {
    padding: 40px 0 0;
    background-color: transparent;
  }
}
.header__container {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 56px;
}

.nav__list {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .nav__list {
    display: none;
  }
}
.nav__button {
  padding: 8px 16px;
  font-size: 18px;
  text-align: center;
  color: #232e3e;
  background-color: transparent;
  border: 1px solid #0661a4;
  border-radius: 26px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav__button:hover, .nav__button:focus {
  color: #fff;
  background-color: #0661a4;
}

.logo__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 87px;
}
@media (max-width: 767px) {
  .logo__link {
    width: 63px;
    height: 39px;
  }
}
.logo__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.scroll {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 266px;
  height: 50px;
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  color: #0661a4;
  text-transform: uppercase;
  transform: matrix(0, -1, 1, 0, 0, 0);
}
@media (max-width: 767px) {
  .scroll {
    width: 120px;
    height: 20px;
    font-size: 9px;
    line-height: 10px;
  }
}
.scroll::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-color: contain;
  background-image: url("../images/scroll.png");
  background-image: url("../images/scroll.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .scroll::before {
    width: 20px;
    height: 20px;
  }
}
.scroll_rtl {
  flex-direction: row-reverse;
  text-align: right;
  transform: matrix(0, 1, -1, 0, 0, 0);
}
.scroll_rtl::before {
  transform: rotate(-90deg);
}

.intro {
  position: relative;
  padding: 50px 0 100px;
}
@media (max-width: 767px) {
  .intro {
    padding: 40px 0;
  }
}
.intro::before, .intro::after {
  content: "";
}
.intro::before {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(50% - 870px);
  width: 779px;
  height: 807px;
  background-image: url("../images/intro-man.png");
  background-image: url("../images/intro-man.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1279px) {
  .intro::before {
    top: -35px;
    right: 63%;
    left: initial;
    width: 390px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .intro::before {
    top: -35px;
    left: calc(50% - 230px);
    width: 239px;
    height: 249px;
  }
}
.intro::after {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(50% - 700px);
  width: 271px;
  height: 82px;
  background-image: url("../images/logo-amazon.png");
  background-image: url("../images/logo-amazon.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1279px) {
  .intro::after {
    top: 5px;
    right: 80%;
    left: initial;
    width: 150px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .intro::after {
    top: -5px;
    left: calc(50% - 185px);
    width: 100px;
    height: 30px;
  }
}
.intro__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.intro__header {
  width: 100%;
  max-width: 700px;
  margin-bottom: 32px;
}
@media (max-width: 1279px) {
  .intro__header {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .intro__header {
    max-width: initial;
    margin-bottom: 96px;
  }
}
.intro__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .intro__title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .intro__title {
    max-width: 45%;
    margin-left: auto;
    font-size: 16px;
    line-height: 19px;
  }
}
.intro__content {
  width: 100%;
  max-width: 700px;
}
@media (max-width: 1279px) {
  .intro__content {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .intro__content {
    max-width: initial;
  }
}
.intro__vacancy {
  margin: 0;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .intro__vacancy {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .intro__vacancy {
    margin-bottom: 32px;
    font-size: 25px;
    line-height: 1;
  }
}
.intro__vacancy span {
  display: block;
  margin-bottom: 8px;
  font-size: 27px;
}
@media (max-width: 1279px) {
  .intro__vacancy span {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .intro__vacancy span {
    font-size: 17px;
    line-height: 23px;
  }
}
.intro__actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .intro__actions {
    justify-content: start;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.intro__text {
  margin: 0;
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .intro__text {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .intro__text {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 1439px) {
  .about {
    padding: 0 16px;
  }
}
.about__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  padding: 72px 32px 72px;
}
@media (max-width: 1279px) {
  .about__container {
    padding: 48px 24px 48px;
  }
}
@media (max-width: 767px) {
  .about__container {
    padding: 16px 80px 16px 20px;
  }
}
.about__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px -11px 35px 0 rgba(192, 188, 213, 0.5);
  opacity: 0.6;
}
.about__container::after {
  content: "";
  position: absolute;
  top: -100px;
  left: calc(50% - 570px);
  width: 54%;
  max-width: 732px;
  height: 631px;
  background-image: url("../images/about-bg.png");
  background-image: url("../images/about-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .about__container::after {
    top: -40px;
    right: -5px;
    left: initial;
    max-width: 153px;
  }
}
.about__header {
  position: relative;
  width: 100%;
  max-width: 464px;
  margin-bottom: 32px;
}
.about__title {
  margin: 0;
  margin-left: 64px;
  font-size: 48px;
  font-weight: 400;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .about__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .about__title {
    margin-left: initial;
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }
}
.about__hh {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
}
@media (max-width: 1279px) {
  .about__hh {
    top: 0;
  }
}
@media (max-width: 767px) {
  .about__hh {
    top: -90px;
    right: -80px;
    width: 30px;
    height: 30px;
  }
}
.about__hh img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 464px;
  padding-right: 16px;
}
@media (max-width: 1279px) {
  .about__content {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .about__content {
    font-size: 14px;
    line-height: 16px;
  }
}
.about__content p {
  margin: 0;
}
.about__content p:first-child {
  padding-right: 10%;
}
.about__content p + p {
  margin-top: 32px;
}
.about__scroll {
  position: absolute;
  bottom: 150px;
  left: -70px;
  z-index: 1;
}
@media (max-width: 767px) {
  .about__scroll {
    right: -20px;
    bottom: 70px;
    left: initial;
  }
}

.facts {
  padding: 64px 0 168px;
}
@media (max-width: 767px) {
  .facts {
    padding: 32px 0;
  }
}
.facts__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.facts__container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(50% + 300px);
  display: block;
  width: 425px;
  height: 485px;
  background-image: url("../images/facts-bg.png");
  background-image: url("../images/facts-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .facts__container::before {
    left: 70%;
  }
}
@media (max-width: 767px) {
  .facts__container::before {
    display: none;
  }
}
.facts__header {
  width: 100%;
  max-width: 920px;
  margin-bottom: 72px;
}
@media (max-width: 1279px) {
  .facts__header {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .facts__header {
    margin-bottom: 32px;
  }
}
.facts__title {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .facts__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .facts__title {
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }
}
.facts__content {
  position: relative;
  width: 100%;
  max-width: 920px;
}
.facts__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .facts__list {
    gap: 12px 6px;
  }
}
.facts__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  border-radius: 60px;
}
@media (max-width: 1279px) {
  .facts__item {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .facts__item {
    padding: 16px 12px;
    font-size: 13px;
    line-height: 16px;
    border-radius: 32px;
  }
}
.facts__item:nth-child(1) {
  background-image: linear-gradient(-131deg, rgb(62, 187, 199) 0%, rgb(41, 128, 173) 100%);
  border-bottom-right-radius: 0;
  box-shadow: 0px -11px 30px 0 rgb(192, 188, 213);
}
.facts__item:nth-child(2) {
  background-image: linear-gradient(-131deg, rgb(52, 77, 154) 0%, rgb(62, 187, 199) 100%);
  border-bottom-left-radius: 0;
  box-shadow: 0px -11px 30px 0 rgb(192, 188, 213);
}
.facts__item:nth-child(3) {
  background-image: linear-gradient(-131deg, rgb(62, 187, 199) 0%, rgb(52, 77, 154) 100%);
  border-top-right-radius: 0;
  box-shadow: 0px -11px 30px 0 rgb(192, 188, 213);
}
.facts__item:nth-child(4) {
  background-image: linear-gradient(-131deg, rgb(41, 128, 173) 0%, rgb(62, 187, 199) 100%);
  border-top-left-radius: 0;
  box-shadow: 0px -11px 30px 0 rgb(192, 188, 213);
}

.interesting {
  padding: 0 0 56px;
}
@media (max-width: 767px) {
  .interesting {
    padding: 0 0 32px;
  }
}
.interesting__header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 120px;
}
@media (max-width: 1279px) {
  .interesting__header {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .interesting__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.interesting__title {
  flex: 1;
  margin: 0;
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
  text-align: center;
  color: #0661a4;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .interesting__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .interesting__title {
    font-size: 18px;
    line-height: 20px;
  }
}
.interesting__subtitle {
  max-width: 674px;
  margin: 0;
  padding-right: 80px;
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
  color: #0661a4;
}
@media (max-width: 1279px) {
  .interesting__subtitle {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .interesting__subtitle {
    padding-right: initial;
    padding-left: 50%;
    font-size: 14px;
    line-height: 16px;
  }
}
.interesting__info {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .interesting__info {
    margin-bottom: 32px;
  }
}
.interesting__text {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-align: center;
  color: #232e3e;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .interesting__text {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .interesting__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.interesting-info {
  position: relative;
  padding: 56px 32px 96px;
}
@media (max-width: 1279px) {
  .interesting-info {
    padding: 40px 32px 64px;
  }
}
@media (max-width: 767px) {
  .interesting-info {
    padding: 16px;
  }
}
.interesting-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px -11px 35px 0 rgba(192, 188, 213, 0.5);
  opacity: 0.6;
}
.interesting-info::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -40px;
  width: 290px;
  height: 477px;
  background-image: url("../images/interesting-bg.png");
  background-image: url("../images/interesting-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .interesting-info::after {
    width: 230px;
    height: 355px;
  }
}
@media (max-width: 767px) {
  .interesting-info::after {
    top: -160px;
    left: 0px;
    width: 150px;
    height: 259px;
  }
}
.interesting-info__title {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-bottom: 64px;
  padding-left: 176px;
  font-size: 30px;
  font-weight: 500;
  color: #232e3e;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .interesting-info__title {
    margin-bottom: 40px;
    padding-left: 154px;
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .interesting-info__title {
    margin-bottom: 24px;
    padding-left: 50%;
    font-size: 14px;
    line-height: 18px;
  }
}
.interesting-info__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0;
  padding-right: 88px;
  padding-left: 256px;
  list-style: none;
}
@media (max-width: 1279px) {
  .interesting-info__list {
    gap: 24px;
    padding-left: 200px;
  }
}
@media (max-width: 767px) {
  .interesting-info__list {
    gap: 12px;
    padding-right: initial;
    padding-left: initial;
  }
}
.interesting-info__item {
  position: relative;
  padding-left: 32px;
  font-size: 26px;
  line-height: 38px;
  font-weight: 400;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .interesting-info__item {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .interesting-info__item {
    padding-left: 24px;
    font-size: 14px;
    line-height: 18px;
  }
}
.interesting-info__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: linear-gradient(-180deg, rgb(232, 205, 87) 0%, rgb(248, 160, 37) 100%);
  border-radius: 50%;
}
@media (max-width: 1279px) {
  .interesting-info__item::before {
    top: 8px;
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .interesting-info__item::before {
    top: 4px;
    width: 10px;
    height: 10px;
  }
}
.interesting-info__scroll {
  position: absolute;
  right: -70px;
  bottom: 150px;
}
@media (max-width: 767px) {
  .interesting-info__scroll {
    display: none;
  }
}

.left__header {
  margin-bottom: 56px;
}
@media (max-width: 1279px) {
  .left__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .left__header {
    margin-bottom: 24px;
  }
}
.left__title {
  margin: 0;
  margin-bottom: 32px;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .left__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .left__title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 20px;
  }
}
.left__subtitle {
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  text-align: center;
  color: #0661a4;
}
@media (max-width: 1279px) {
  .left__subtitle {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .left__subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}
.left__timer {
  margin-bottom: 72px;
}
@media (max-width: 1279px) {
  .left__timer {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .left__timer {
    margin-bottom: 24px;
  }
}
.left__actions {
  display: flex;
  justify-content: center;
}

.timer__list {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1279px) {
  .timer__list {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .timer__list {
    justify-content: space-between;
    gap: initial;
  }
}
.timer__block {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.timer__key {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .timer__key {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .timer__key {
    font-size: 14px;
    line-height: 18px;
  }
}
.timer__value {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin: 0;
  margin-bottom: 8px;
  font-size: 70px;
  font-weight: 500;
  color: #f8a025;
  text-transform: uppercase;
  background-color: #ffffff;
  border-radius: 55px;
  box-shadow: 0px -8px 35px 0 rgba(218, 215, 234, 0.5);
}
@media (max-width: 1279px) {
  .timer__value {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .timer__value {
    width: 64px;
    height: 64px;
    font-size: 28px;
    line-height: 1;
    border-radius: 17px;
  }
}

.description {
  padding: 128px 0 80px;
}
@media (max-width: 1279px) {
  .description {
    padding: 88px 0 56px;
  }
}
@media (max-width: 767px) {
  .description {
    padding: 32px 0;
  }
}
.description__header {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin-bottom: 56px;
  margin-left: auto;
  padding-right: 96px;
}
@media (max-width: 1279px) {
  .description__header {
    max-width: 60%;
    margin-bottom: 40px;
    padding-right: initial;
  }
}
@media (max-width: 767px) {
  .description__header {
    max-width: 100%;
    margin-bottom: 24px;
    padding-right: initial;
  }
}
.description__header::before {
  content: "";
  position: absolute;
  top: -160px;
  left: calc(50% - 1060px);
  display: block;
  width: 726px;
  height: 1021px;
  background-image: url("../images/description-bg.png");
  background-image: url("../images/description-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .description__header::before {
    top: -80px;
    right: 100%;
    left: initial;
    width: 400px;
    height: 600px;
  }
}
@media (max-width: 767px) {
  .description__header::before {
    top: 80px;
    right: initial;
    left: 55%;
    width: 233px;
    height: 327px;
  }
}
.description__title {
  position: relative;
  width: 100%;
  max-width: 368px;
  margin: 0 auto;
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 400;
  text-align: right;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .description__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .description__title {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }
}
.description__text {
  position: relative;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .description__text {
    padding-right: 35%;
  }
}
.description__text p {
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .description__text p {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .description__text p {
    font-size: 14px;
    line-height: 18px;
  }
}
.description__text p + p {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .description__text p + p {
    margin-top: 12px;
  }
}
.description__subtitle {
  position: relative;
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  color: #0661a4;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .description__subtitle {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .description__subtitle {
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }
}
.description__scroll {
  position: absolute;
  bottom: 110px;
  left: -740px;
}
@media (max-width: 1279px) {
  .description__scroll {
    display: none;
  }
}
@media (max-width: 767px) {
  .description__scroll {
    top: 0;
    right: -45px;
    bottom: initial;
    left: initial;
  }
}
.description__list {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1279px) {
  .description__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .description__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.description__item {
  flex: 1;
  padding: 40px 24px;
  font-size: 22px;
  line-height: 29px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 50px;
  box-shadow: 0px -11px 30px 0px rgb(192, 188, 213);
}
@media (max-width: 1279px) {
  .description__item {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .description__item {
    padding: 12px 40px;
    font-size: 16px;
    line-height: 18px;
    border-radius: 40px;
  }
}
.description__item:nth-child(1) {
  background-image: linear-gradient(-131deg, rgb(62, 187, 199) 0%, rgb(52, 77, 154) 100%);
}
.description__item:nth-child(2) {
  background-image: linear-gradient(-131deg, rgb(41, 128, 173) 0%, rgb(62, 187, 199) 100%);
}
.description__item:nth-child(3) {
  background-image: linear-gradient(-131deg, rgb(62, 187, 199) 0%, rgb(41, 128, 173) 100%);
}
.description__item:nth-child(4) {
  background-image: linear-gradient(-131deg, rgb(52, 77, 154) 0%, rgb(62, 187, 199) 100%);
}

@media (max-width: 1439px) {
  .warranties {
    margin: 0 16px;
  }
}
.warranties__container {
  position: relative;
  padding: 56px 32px 96px;
}
@media (max-width: 1279px) {
  .warranties__container {
    padding: 40px 32px 64px;
  }
}
@media (max-width: 767px) {
  .warranties__container {
    padding: 16px;
  }
}
.warranties__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px -11px 35px 0 rgba(192, 188, 213, 0.5);
  opacity: 0.6;
}
.warranties__container::after {
  content: "";
  position: absolute;
  top: -140px;
  left: calc(50% + 350px);
  width: 365px;
  height: 358px;
  background-image: url("../images/warranties-bg-1.png");
  background-image: url("../images/warranties-bg-1.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .warranties__container::after {
    top: -100px;
    left: calc(50% + 260px);
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .warranties__container::after {
    display: none;
  }
}
.warranties__header {
  margin-bottom: 56px;
}
@media (max-width: 1279px) {
  .warranties__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .warranties__header {
    margin-bottom: 24px;
  }
}
.warranties__title {
  position: relative;
  margin: 0;
  margin-bottom: 64px;
  padding-left: 176px;
  font-size: 48px;
  font-weight: 400;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .warranties__title {
    margin-bottom: 40px;
    padding-left: 154px;
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .warranties__title {
    margin-bottom: 24px;
    padding-left: initial;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }
}
.warranties__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin: 0;
  padding-right: 56px;
  padding-left: 256px;
  list-style: none;
}
@media (max-width: 1279px) {
  .warranties__list {
    gap: 24px;
    padding-left: 150px;
  }
}
@media (max-width: 767px) {
  .warranties__list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-right: initial;
    padding-left: initial;
  }
}
.warranties__list::before {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(50% - 720px);
  width: 319px;
  height: 358px;
  background-image: url("../images/warranties-bg-2.png");
  background-image: url("../images/warranties-bg-2.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .warranties__list::before {
    top: 110px;
    left: calc(50% - 540px);
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .warranties__list::before {
    display: none;
  }
}
.warranties__item {
  position: relative;
  padding-left: 32px;
  font-size: 26px;
  line-height: 50px;
  font-weight: 400;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .warranties__item {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .warranties__item {
    padding-left: 24px;
    font-size: 14px;
    line-height: 18px;
  }
}
.warranties__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: linear-gradient(-180deg, rgb(232, 205, 87) 0%, rgb(248, 160, 37) 100%);
  border-radius: 50%;
}
@media (max-width: 1279px) {
  .warranties__item::before {
    top: 8px;
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .warranties__item::before {
    top: 4px;
    width: 10px;
    height: 10px;
  }
}

.steps {
  padding: 120px 0 80px;
}
@media (max-width: 1279px) {
  .steps {
    padding: 80px 40px;
  }
}
@media (max-width: 767px) {
  .steps {
    padding: 32px 0 12px;
  }
}
.steps__header {
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  .steps__header {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .steps__header {
    margin-bottom: initial;
  }
}
.steps__title {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .steps__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .steps__title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }
}
.steps__list {
  position: relative;
  margin: 0 auto;
  padding: 0;
  padding-top: 150px;
  list-style: none;
}
@media (max-width: 1279px) {
  .steps__list {
    padding-top: 100px;
  }
}
.steps__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 779px;
  height: 1796px;
  margin: 0 auto;
  background-image: url("../images/steps-bg.png");
  background-image: url("../images/steps-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateX(-50%);
}
@media (max-width: 1279px) {
  .steps__list::before {
    background-image: url("../images/steps-bg-mobile.png");
    background-image: url("../images/steps-bg-mobile.webp");
  }
}
.steps__item {
  position: relative;
  width: 50%;
  padding-bottom: 223px;
}
@media (max-width: 1279px) {
  .steps__item {
    width: 100%;
    padding-bottom: 284px;
  }
}
.steps__item:last-child {
  padding-bottom: 200px;
}
.steps__item:nth-child(odd) {
  margin-right: auto;
}
@media (max-width: 1279px) {
  .steps__item:nth-child(odd) {
    margin-right: initial;
  }
}
.steps__item:nth-child(odd) .steps__item-title {
  padding-right: 170px;
  text-align: right;
}
@media (max-width: 1279px) {
  .steps__item:nth-child(odd) .steps__item-title {
    padding-right: 53%;
  }
}
@media (max-width: 767px) {
  .steps__item:nth-child(odd) .steps__item-title {
    padding-right: 60%;
  }
}
.steps__item:nth-child(odd) .steps__item-text {
  padding-right: 390px;
  text-align: right;
}
@media (max-width: 1279px) {
  .steps__item:nth-child(odd) .steps__item-text {
    top: 150px;
    left: 50%;
    width: 100%;
    max-width: 260px;
    padding-right: initial;
    text-align: center;
    transform: translateX(-50%);
  }
}
.steps__item:nth-child(even) {
  margin-left: auto;
}
@media (max-width: 1279px) {
  .steps__item:nth-child(even) {
    margin-left: initial;
  }
}
.steps__item:nth-child(even) .steps__item-title {
  padding-left: 140px;
  text-align: left;
}
@media (max-width: 1279px) {
  .steps__item:nth-child(even) .steps__item-title {
    padding-left: 52%;
  }
}
@media (max-width: 767px) {
  .steps__item:nth-child(even) .steps__item-title {
    padding-left: 57%;
  }
}
.steps__item:nth-child(even) .steps__item-text {
  padding-left: 360px;
  text-align: left;
}
@media (max-width: 1279px) {
  .steps__item:nth-child(even) .steps__item-text {
    top: 150px;
    left: 50%;
    width: 100%;
    max-width: 260px;
    padding-left: initial;
    text-align: center;
    transform: translateX(-50%);
  }
}
.steps__item-title {
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #232e3e;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .steps__item-title {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .steps__item-title {
    font-size: 13px;
    line-height: 16px;
  }
}
.steps__item-text {
  position: absolute;
  margin: 0;
  margin-top: -10px;
  font-size: 20px;
  line-height: 26px;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .steps__item-text {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .steps__item-text {
    font-size: 14px;
    line-height: 16px;
  }
}

.steps-info {
  position: relative;
  padding: 24px 32px 24px;
}
@media (max-width: 767px) {
  .steps-info {
    padding: 16px;
    transform: translateY(-24px);
  }
}
.steps-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px -11px 35px 0 rgba(192, 188, 213, 0.5);
  opacity: 0.6;
}
.steps-info__title {
  position: relative;
  margin: 0;
  margin-bottom: 24px;
  padding-left: 176px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #232e3e;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .steps-info__title {
    font-size: 20px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .steps-info__title {
    padding-left: initial;
    font-size: 14px;
    line-height: 1;
  }
}
.steps-info__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 824px;
  margin: 0;
  padding: 0;
  padding-left: 256px;
  list-style: none;
}
@media (max-width: 1279px) {
  .steps-info__list {
    gap: 24px;
    padding-right: 50px;
    padding-left: 150px;
  }
}
@media (max-width: 767px) {
  .steps-info__list {
    gap: 12px;
    padding-right: initial;
    padding-left: initial;
  }
}
.steps-info__list::after {
  content: "";
  position: absolute;
  top: -60px;
  left: calc(50% - 420px);
  width: 232px;
  height: 214px;
  background-image: url("../images/steps-info-bg-1.png");
  background-image: url("../images/steps-info-bg-1.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .steps-info__list::after {
    top: 0;
    left: -15px;
    width: 150px;
    height: 140px;
  }
}
@media (max-width: 767px) {
  .steps-info__list::after {
    top: initial;
    right: -25px;
    bottom: -15px;
    left: initial;
    width: 100px;
    height: 92px;
  }
}
.steps-info__list::before {
  content: "";
  position: absolute;
  top: -125px;
  left: calc(50% + 560px);
  width: 342px;
  height: 498px;
  background-image: url("../images/steps-info-bg-2.png");
  background-image: url("../images/steps-info-bg-2.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .steps-info__list::before {
    top: -70px;
    left: calc(100% - 30px);
    width: 200px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .steps-info__list::before {
    display: none;
  }
}
.steps-info__item {
  position: relative;
  padding-left: 32px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .steps-info__item {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .steps-info__item {
    padding-left: 24px;
    font-size: 14px;
    line-height: 18px;
  }
  .steps-info__item:nth-child(3) {
    max-width: 80%;
  }
  .steps-info__item:last-child {
    max-width: 60%;
  }
}
.steps-info__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: linear-gradient(-180deg, rgb(232, 205, 87) 0%, rgb(248, 160, 37) 100%);
  border-radius: 50%;
}
@media (max-width: 1279px) {
  .steps-info__item::before {
    top: 8px;
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .steps-info__item::before {
    top: 4px;
    width: 10px;
    height: 10px;
  }
}

.action {
  padding-bottom: 120px;
}
@media (max-width: 1279px) {
  .action {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .action {
    padding-bottom: 80px;
  }
}
.action__header {
  margin-bottom: 48px;
}
@media (max-width: 1279px) {
  .action__header {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .action__header {
    margin-bottom: 24px;
  }
}
.action__title {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: #0661a4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .action__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .action__title {
    font-size: 18px;
    line-height: 20px;
  }
}
.action__content {
  position: relative;
  display: flex;
  justify-content: center;
}
.action__scroll-to {
  position: absolute;
  right: -24px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #0661a4;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .action__scroll-to {
    right: 0;
    bottom: -50px;
  }
}
@media (max-width: 767px) {
  .action__scroll-to {
    width: 24px;
    margin: 0;
    font-size: 0;
  }
}
.action__scroll-to:hover::before, .action__scroll-to:focus::before {
  transform: translateY(-10px) rotate(180deg);
}
.action__scroll-to::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  background-image: url("../images/scroll.png");
  background-image: url("../images/scroll.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .action__scroll-to::before {
    width: 24px;
    height: 24px;
  }
}

.page_action {
  min-height: 100vh;
  background-image: url("../images/action-bg.png");
  background-image: url("../images/action-bg.webp");
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: cover;
}
@media (max-width: 1279px) {
  .page_action {
    background-position: 75% center;
  }
}
@media (max-width: 1023px) {
  .page_action {
    background-position: 70% center;
  }
}
@media (max-width: 767px) {
  .page_action {
    background-position: 0 0;
  }
}
.page_action .page__header {
  margin-bottom: 56px;
  padding: 40px 16px 24px;
  background-color: transparent;
}
@media (max-width: 767px) {
  .page_action .page__header {
    margin-bottom: 24px;
  }
}
.page_action .action {
  padding: 0;
}
.page_action .action__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 96px;
}
@media (max-width: 767px) {
  .page_action .action__container {
    flex-direction: column;
    gap: 0;
  }
}
.page_action .action__container::before {
  content: "";
  position: absolute;
  top: 100px;
  left: calc(50% - 130px);
  width: 400px;
  height: 530px;
  background-image: url("../images/action-img.png");
  background-image: url("../images/action-img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1279px) {
  .page_action .action__container::before {
    top: 260px;
    left: calc(50% - 200px);
    width: 350px;
    height: 450px;
  }
}
@media (max-width: 1023px) {
  .page_action .action__container::before {
    top: 360px;
  }
}
@media (max-width: 767px) {
  .page_action .action__container::before {
    top: initial;
    right: 5%;
    bottom: -300px;
    left: initial;
    z-index: 1;
    width: 240px;
    height: 350px;
  }
}
.page_action .action__header {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .page_action .action__header {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .page_action .action__header {
    max-width: 100%;
  }
}
.page_action .action__title {
  margin: 0;
  margin-bottom: 72px;
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
  text-align: left;
  color: #0661a4;
  text-transform: initial;
}
@media (max-width: 1279px) {
  .page_action .action__title {
    margin-bottom: 56px;
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .page_action .action__title {
    margin-bottom: 32px;
    font-size: 20px;
  }
}
.page_action .action__title span {
  display: block;
  font-size: 72px;
  line-height: 1;
}
@media (max-width: 1279px) {
  .page_action .action__title span {
    font-size: 56px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .page_action .action__title span {
    font-size: 40px;
  }
}
.page_action .action__text {
  width: 100%;
  max-width: 600px;
  margin: 0;
  margin-bottom: 72px;
  font-size: 24px;
  line-height: 30px;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .page_action .action__text {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .page_action .action__text {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.page_action .action__actions {
  padding-left: 80px;
}
@media (max-width: 1279px) {
  .page_action .action__actions {
    padding-left: 56px;
  }
}
@media (max-width: 767px) {
  .page_action .action__actions {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    padding-left: initial;
  }
}
.page_action .action__content {
  position: relative;
  max-width: 356px;
  padding-right: 32px;
}
@media (max-width: 767px) {
  .page_action .action__content {
    max-width: 100%;
    padding: 32px 0;
    padding-right: initial;
  }
  .page_action .action__content::before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 300vw;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 5px 9.5px 0 rgba(215, 194, 228, 0.7);
  }
}
.page_action .action__content h2 {
  margin: 0;
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .page_action .action__content h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .page_action .action__content h2 {
    font-size: 18px;
  }
}
.page_action .action__content p {
  margin: 0;
  font-size: 20px;
  line-height: 26px;
  color: #232e3e;
}
@media (max-width: 1279px) {
  .page_action .action__content p {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .page_action .action__content p {
    font-size: 16px;
  }
}
.page_action .action__content p + * {
  margin-top: 16px;
}
.page_action .action__content a {
  margin: 16px auto;
  color: #0661a4;
  text-transform: uppercase;
}
.page_action .action__other {
  position: relative;
  z-index: 1;
}
.page_action .action__test {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 74px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1279px) {
  .page_action .action__test {
    padding: 12px 24px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .page_action .action__test {
    min-height: initial;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 14px;
  }
}

.page_order {
  display: flex;
  min-height: 100vh;
  background-image: url("../images/order-bg.png");
  background-image: url("../images/order-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page_order .page__main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 24px 16px;
}

.order {
  padding: 32px;
  background-image: linear-gradient(-131deg, rgb(41, 128, 173) 0%, rgb(62, 187, 199) 100%);
  border-radius: 50px;
}
@media (max-width: 767px) {
  .order {
    padding: 16px;
  }
}
.order__header {
  margin-bottom: 32px;
}
.order__title {
  margin: 0;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
}
@media (max-width: 1279px) {
  .order__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .order__title {
    font-size: 20px;
  }
}
.order__description {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  color: #fffefe;
}
@media (max-width: 1279px) {
  .order__description {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .order__description {
    font-size: 14px;
  }
}
.order__form {
  width: 100%;
  max-width: 1175px;
  margin: 0 auto;
}

.form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1279px) {
  .form {
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .form {
    gap: 12px;
  }
}
.form.success .form__block, .form.error .form__block {
  opacity: 0.5;
}
.form.success .form__status-success {
  display: block;
}
.form.error .form__status-error {
  display: block;
}
.form__block {
  width: 100%;
}
.form__block:nth-of-type(1), .form__block:nth-of-type(2), .form__block:nth-of-type(3) {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 767px) {
  .form__block:nth-of-type(1), .form__block:nth-of-type(2), .form__block:nth-of-type(3) {
    width: 100%;
  }
}
.form__block:nth-of-type(5), .form__block:nth-of-type(6) {
  width: calc((100% - 24px) / 2);
}
@media (max-width: 767px) {
  .form__block:nth-of-type(5), .form__block:nth-of-type(6) {
    width: 100%;
  }
}
.form__block_submit {
  display: flex;
  justify-content: center;
}
.form__block.error .form__field {
  border-color: red;
}
.form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
}
.form__field {
  width: 100%;
  padding: 24px 16px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #232e3e;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 28px;
  transition: border 0.3s ease, color 0.3s ease;
}
@media (max-width: 1279px) {
  .form__field {
    padding: 20px 15px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .form__field {
    font-size: 16px;
  }
}
.form__field:focus, .form__field:hover {
  border-color: var(--color-accent);
  outline: none;
}
.form__field:placeholder {
  font-family: inherit;
  font-size: 24px;
  line-height: 24px;
  color: #5e696f;
}
.form__submit {
  font-size: 24px;
}
@media (max-width: 1279px) {
  .form__submit {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .form__submit {
    padding: 12px 16px;
    font-size: 16px;
  }
}
.form__error {
  display: none;
}
.form__status-success, .form__status-error {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  padding: 56px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 5px 9.5px 5px rgba(215, 194, 228, 0.5);
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=main.css.map */