html:before {
  content: "";
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(16, 8, 3, 0);
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  z-index: 2;
}
@media (min-width: 768px) {
  html:before {
    display: block;
  }
}
@media (min-width: 1024px) {
  html:before {
    display: none;
  }
}
html.Overflow {
  overflow: hidden;
}
html.Overflow:before {
  width: 100%;
  height: 100vh;
  background-color: rgba(16, 8, 3, 0.08);
}
@media (min-width: 1024px) {
  html.Overflow {
    overflow: visible;
  }
}
.Header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  -webkit-transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
  transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
}
@media (min-width: 1024px) {
  .Header {
    padding: 24px;
  }
}
.Header.Header--scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
}
.Header.Header--scrolled .Header__menu {
  top: 74px;
  height: calc(100vh - 74px);
}
@media (min-width: 1024px) {
  .Header.Header--scrolled .Header__menu {
    top: auto;
    height: auto;
  }
}
.Header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.Header__logo {
  position: relative;
  max-width: 203px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .Header__logo {
    max-width: 234px;
  }
}
.Header__logo-link,
.Header__logo-link svg {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
}
.Header__burger {
  position: relative;
  width: 24px;
  height: 19px;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 2;
}
@media (min-width: 1024px) {
  .Header__burger {
    display: none;
  }
}
.Header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #100803;
  border-radius: 3px;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease,
    -webkit-transform 0.5s ease;
  will-change: transform;
}
.Header__burger span:first-child {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}
.Header__burger span:nth-of-type(2) {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.Header__burger span:last-child {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}
.Header__burger--active span {
  background-color: #ffb806;
}
.Header__burger--active span:first-child {
  -webkit-transform: rotate(45deg) translateY(4px);
  transform: rotate(45deg) translateY(4px);
}
.Header__burger--active span:nth-of-type(2) {
  opacity: 0;
}
.Header__burger--active span:last-child {
  -webkit-transform: rotate(-45deg) translateY(-4px);
  transform: rotate(-45deg) translateY(-4px);
}
.Header__menu {
  position: fixed;
  top: 82px;
  right: -100%;
  visibility: hidden;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  width: 100%;
  height: calc(100vh - 82px);
  padding: 8px 12px 30px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-box-shadow: inset 0 20px 40px -15px rgba(16, 8, 3, 0.08);
  box-shadow: inset 0 20px 40px -15px rgba(16, 8, 3, 0.08);
  -webkit-transition: opacity 0.5s, visibility 0.5s ease, -webkit-transform 0.5s;
  transition: opacity 0.5s, visibility 0.5s ease, -webkit-transform 0.5s;
  transition: opacity 0.5s, visibility 0.5s ease, transform 0.5s;
  transition: opacity 0.5s, visibility 0.5s ease, transform 0.5s,
    -webkit-transform 0.5s;
  will-change: transform;
}
@media (min-width: 768px) {
  .Header__menu {
    width: 370px;
    right: -370px;
    padding: 8px 12px 30px;
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .Header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    position: static;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    height: auto;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow: visible;
    -webkit-transition: margin 0.3s ease;
    transition: margin 0.3s ease;
  }
}
.Header__menu-list {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .Header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.Header__menu-list > li {
  position: relative;
}
.Header__menu-list > li + li {
  border-top: 1px solid #acacac;
}
@media (min-width: 1024px) {
  .Header__menu-list > li + li {
    margin-left: 1.25vw;
    border-top: 0;
  }
}
@media (min-width: 1980px) {
  .Header__menu-list > li + li {
    margin-left: 30px;
  }
}
.Header__menu-list > li.Header__menu-list-item-order {
  border-top: 0;
  padding-top: 16px;
}
@media (min-width: 1024px) {
  .Header__menu-list > li.Header__menu-list-item-order {
    display: none;
  }
}
.Header__menu-list > li.Header__menu-list-item-order .btn--order-now {
  display: inline-block;
  padding: 12px 28px;
  width: auto;
}
.Header__menu-list a {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #100803;
  padding: 16px 0;
  border-bottom: 0.125em solid transparent;
  -webkit-box-shadow: 0 0.071em 0 transparent;
  box-shadow: 0 0.071em 0 transparent;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  text-decoration: none;
}
.Header__menu-list a:focus,
.Header__menu-list a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0.071em 0 #ffb806;
  box-shadow: 0 0.071em 0 #ffb806;
}
@media (min-width: 1024px) {
  .Header__menu-list a {
    display: inline;
    padding: 0;
  }
}
.Header__user-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .Header__user-box {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: 1.25vw;
    padding-left: 1.25vw;
    border-left: 2px solid #dedede;
  }
}
@media (min-width: 1980px) {
  .Header__user-box {
    margin-left: 30px;
    padding-left: 30px;
  }
}
.Header__user-box .btn--manage-order {
  white-space: nowrap;
  padding: 0 0 0 38px;
  margin-right: 20px;
  width: 42px;
  height: 42px;
  border: 2px solid #acacac;
  border-radius: 50%;
}
.Header__user-box .btn--manage-order:before {
  content: "";
  width: 14px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(./images/ico_manage-orders.svg) 50% no-repeat;
  background-size: contain;
}
@media (min-width: 1024px) {
  .Header__user-box .btn--manage-order:before {
    right: auto;
    left: -22px;
  }
}
@media (min-width: 1200px) {
  .Header__user-box .btn--manage-order:before {
    left: -1.5vw;
  }
}
@media (min-width: 1980px) {
  .Header__user-box .btn--manage-order:before {
    left: -30px;
  }
}
.Header__user-box .btn--manage-order:active,
.Header__user-box .btn--manage-order:focus,
.Header__user-box .btn--manage-order:hover {
  text-decoration: none;
}
@media (min-width: 1024px) {
  .Header__user-box .btn--manage-order {
    padding: 0;
    margin-left: 22px;
    margin-right: 1.25vw;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    overflow: visible;
    border-bottom: 0.125em solid transparent;
    -webkit-box-shadow: 0 0.071em 0 transparent;
    box-shadow: 0 0.071em 0 transparent;
    -webkit-transition: -webkit-box-shadow 0.2s ease;
    transition: -webkit-box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  }
  .Header__user-box .btn--manage-order:focus,
  .Header__user-box .btn--manage-order:hover {
    -webkit-box-shadow: 0 0.071em 0 #ffb806;
    box-shadow: 0 0.071em 0 #ffb806;
  }
}
@media (min-width: 1200px) {
  .Header__user-box .btn--manage-order {
    margin-left: 1.5vw;
  }
}
@media (min-width: 1980px) {
  .Header__user-box .btn--manage-order {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.Header__user-box .btn--order-now {
  display: none;
  padding: 12px 28px;
}
@media (min-width: 1024px) {
  .Header__user-box .btn--order-now {
    display: block;
  }
}
.Header__user-box a.UserBlockWhois--orders {
  display: none;
}
.Header__user-box .UserBlockWhois__avatar-container {
  position: relative;
  width: 42px;
  height: 42px;
  border: 2px solid #acacac;
  background: none;
}
.Header__user-box .UserBlockWhois__avatar-container:before {
  content: "";
  width: 14px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(./images/ico_manage-orders.svg) 50% no-repeat;
  background-size: contain;
}
.Header__user-box .UserBlockWhois {
  width: 56px;
  height: 42px;
  margin-right: 20px;
}
@media (min-width: 1024px) {
  .Header__user-box .UserBlockWhois {
    margin-right: 1vw;
  }
}
@media (min-width: 1980px) {
  .Header__user-box .UserBlockWhois {
    margin-right: 20px;
  }
}
.Header__user-box .UserBlockWhois:after {
  border: 0;
  width: 10px;
  height: 6px;
  margin-top: -3px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOSAxTDUgNSAxIDEiIHN0cm9rZT0iIzEwMDgwMyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=")
    50% no-repeat;
  background-size: contain;
}
.Header__user-box .UserBlock__menu {
  font-size: 14px;
}
.Header-nav--open {
  z-index: 21;
}
.Header-nav--open .Header__menu {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: visible;
}
@media (min-width: 768px) {
  .Header-nav--open .Header__menu {
    -webkit-transform: translateX(-370px);
    transform: translateX(-370px);
  }
}
@media (min-width: 1024px) {
  .Header-nav--open .Header__menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.Footer {
  padding: 60px 12px;
  background-color: #100803;
  color: #fff;
}
@media (min-width: 1024px) {
  .Footer {
    padding: 120px 24px;
  }
}
.Footer__heading,
.Footer__menu__heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .Footer__heading,
  .Footer__menu__heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 20px;
  }
}
.Footer__menu {
  width: 50%;
}
@media (min-width: 768px) {
  .Footer__menu {
    width: 25%;
  }
}
.Footer__menu__terms {
  width: 100%;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .Footer__menu__terms {
    width: 50%;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .Footer__menu__terms .Footer__menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .Footer__menu__terms .Footer__menu__list-item {
    width: 50%;
  }
}
.Footer__menu__list-item {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.Footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #302e2e;
}
@media (min-width: 1024px) {
  .Footer__top {
    margin-bottom: 42px;
    padding-bottom: 42px;
  }
}
.Footer__top a {
  color: #fff;
  border-bottom: 0.125em solid transparent;
  -webkit-box-shadow: 0 0.071em 0 #3e3c3c;
  box-shadow: 0 0.071em 0 #3e3c3c;
  -webkit-transition: color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, color 0.2s ease;
  transition: box-shadow 0.2s ease, color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  text-decoration: none;
}
.Footer__top a:focus,
.Footer__top a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0.071em 0 #ffb806;
  box-shadow: 0 0.071em 0 #ffb806;
  color: #ffb806;
}
@media (min-width: 768px) {
  .Footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .Footer__accept-and-language {
    width: 25%;
  }
}
.Footer__language {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .Footer__language {
    margin-top: 70px;
  }
}
.Footer__language ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.Footer__language ul li + li {
  margin-left: 12px;
}
@media (min-width: 768px) {
  .Footer__info {
    width: 75%;
    padding-right: 24px;
  }
}
.Footer__text {
  font-size: 14px;
  line-height: 170%;
  color: #f3f3f3;
  max-width: 800px;
}
.Footer__disclaimer {
  margin-top: 36px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .Footer__disclaimer {
    margin-top: 0;
    margin-bottom: 42px;
  }
}
.Footer__contacts__company {
  font-size: 18px;
  line-height: 155%;
  margin-bottom: 12px;
}
.Footer__contacts__address,
.Footer__contacts__copyright {
  font-size: 14px;
  line-height: 170%;
  color: #f3f3f3;
  margin: 0;
}

*,
:after,
:before {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #fff;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  color: #100803;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  word-wrap: break-word;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
img {
  height: auto;
  vertical-align: top;
}
iframe,
img {
  max-width: 100%;
}
.page-wrapper {
  position: relative;
}
.section {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 1024px) {
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.section--yellow {
  background-color: #ffb806;
}
.breadcrumbs,
.container {
  width: 100%;
}
@media (min-width: 1024px) {
  .breadcrumbs,
  .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.breadcrumbs {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 1024px) {
  .breadcrumbs {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1304px) {
  .breadcrumbs {
    padding-left: 0;
    padding-right: 0;
  }
}
.breadcrumbs .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 24px 0;
  padding: 0;
  font-size: 12px;
  line-height: 24px;
  color: #acacac;
}
@media (min-width: 480px) {
  .breadcrumbs .wrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.breadcrumbs .wrap li + li {
  position: relative;
  margin-left: 56px;
}
.breadcrumbs .wrap li + li:before {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -36px;
  background-color: #ffb806;
  margin: auto;
}
.breadcrumbs .wrap li > span {
  white-space: nowrap;
}
.breadcrumbs a {
  color: #100803;
  border-bottom: 0.125em solid transparent;
  -webkit-box-shadow: 0 0.071em 0 #dedede;
  box-shadow: 0 0.071em 0 #dedede;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.breadcrumbs a:focus,
.breadcrumbs a:hover {
  color: #100803;
  text-decoration: none;
  -webkit-box-shadow: 0 0.071em 0 #ffb806;
  box-shadow: 0 0.071em 0 #ffb806;
}
.h1,
h1 {
  font-family: Bebas Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .h1,
  h1 {
    font-size: 74px;
  }
}
.h2,
h2 {
  font-family: Bebas Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .h2,
  h2 {
    font-size: 62px;
  }
}
.h3,
h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .h3,
  h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
.h4,
h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .h4,
  h4 {
    font-size: 18px;
  }
}
.btn {
  display: inline-block;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 14px 48px;
  border: 0;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn,
.btn:active,
.btn:focus,
.btn:hover {
  text-decoration: none;
}
.btn[disabled],
.btn[disabled]:active,
.btn[disabled]:focus,
.btn[disabled]:hover {
  background-color: #acacac;
  color: #fff;
}
.btn--orange {
  background-color: #ffb806;
  color: #100803;
}
.btn--black-white,
.btn--orange:active,
.btn--orange:focus,
.btn--orange:hover {
  background-color: #100803;
  color: #fff;
}
.btn--black-white:active,
.btn--black-white:focus,
.btn--black-white:hover {
  background-color: #fff;
  color: #100803;
}
.btn--black-orange {
  background-color: #100803;
  color: #fff;
}
.btn--black-orange:active,
.btn--black-orange:focus,
.btn--black-orange:hover {
  background-color: #ffb806;
  color: #100803;
}
.select,
select {
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  vertical-align: middle;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select::-ms-expand,
select::-ms-expand {
  display: none;
}
.Calc__select {
  position: relative;
}
.Calc__select:not(.Calc__select--no-gradient):before {
  right: 0;
  width: 40px;
  height: 100%;
  border-radius: 5px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(43%, #fff),
    color-stop(58%, hsla(0, 0%, 100%, 0))
  );
  background: linear-gradient(-90deg, #fff 43%, hsla(0, 0%, 100%, 0) 58%);
}
.Calc__select:after,
.Calc__select:not(.Calc__select--no-gradient):before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  pointer-events: none;
  margin: auto;
}
.Calc__select:after {
  width: 0;
  height: 0;
  right: 17px;
  border-color: #100803 transparent transparent;
  border-style: solid;
  border-width: 8px 5px 0;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .Calc__select:after {
    border-width: 9px 6px 0;
  }
}
.Calc__select select {
  white-space: nowrap;
  width: 100%;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 32px 20px 8px;
  -webkit-box-shadow: 0 0 0 1px #acacac;
  box-shadow: 0 0 0 1px #acacac;
  border-radius: 4px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.Calc__select select:focus,
.Calc__select select:hover {
  -webkit-box-shadow: 0 0 0 1px #100803;
  box-shadow: 0 0 0 1px #100803;
}
.Calc__select select:active {
  -webkit-box-shadow: 0 0 0 1px #ffb806;
  box-shadow: 0 0 0 1px #ffb806;
}
.Select {
  margin-bottom: 16px;
}
.Select__container {
  position: relative;
}
.Select__container:before {
  right: 0;
  width: 40px;
  height: 100%;
  border-radius: 5px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(43%, #fff),
    color-stop(58%, hsla(0, 0%, 100%, 0))
  );
  background: linear-gradient(-90deg, #fff 43%, hsla(0, 0%, 100%, 0) 58%);
}
.Select__container:after,
.Select__container:before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  pointer-events: none;
  margin: auto;
}
.Select__container:after {
  width: 0;
  height: 0;
  right: 17px;
  border-color: #100803 transparent transparent;
  border-style: solid;
  border-width: 8px 5px 0;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .Select__container:after {
    border-width: 9px 6px 0;
  }
}
.Select__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 20px 4px;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #acacac;
  pointer-events: none;
}
.Select select {
  white-space: nowrap;
  width: 100%;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 32px 20px 8px;
  -webkit-box-shadow: 0 0 0 1px #acacac;
  box-shadow: 0 0 0 1px #acacac;
  border-radius: 4px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.Select select:focus,
.Select select:hover {
  -webkit-box-shadow: 0 0 0 1px #100803;
  box-shadow: 0 0 0 1px #100803;
}
.Select select:active {
  -webkit-box-shadow: 0 0 0 1px #ffb806;
  box-shadow: 0 0 0 1px #ffb806;
}
.select-lang {
  position: relative;
}
.select-lang:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  pointer-events: none;
  border-color: #100803 transparent transparent;
  border-style: solid;
  border-width: 8px 5px 0;
  border-radius: 2px;
  margin: auto;
}
@media (min-width: 1024px) {
  .select-lang:after {
    border-width: 9px 6px 0;
  }
}
.select-lang select {
  white-space: nowrap;
  width: 100%;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 14px 20px;
  -webkit-box-shadow: 0 0 0 1px #acacac;
  box-shadow: 0 0 0 1px #acacac;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.select-lang select:focus,
.select-lang select:hover {
  -webkit-box-shadow: 0 0 0 1px #100803;
  box-shadow: 0 0 0 1px #100803;
}
.select-lang select:active {
  -webkit-box-shadow: 0 0 0 1px #ffb806;
  box-shadow: 0 0 0 1px #ffb806;
}
.select-lang select[disabled],
.select-lang select[disabled]:active,
.select-lang select[disabled]:focus,
.select-lang select[disabled]:hover {
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #100803;
  opacity: 1;
  cursor: default;
}
.input,
input:not([type="submit"]) {
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.Loader {
  background-color: transparent;
  width: 100%;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 99;
}
.Loader--center-mode {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.Loader--top-mode {
  display: block;
  padding-top: 20px;
}
.Loader__inner,
.Loader span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.6)
    rgba(0, 0, 0, 0.6);
  border-style: solid;
  border-width: 2px;
  margin: 0 auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spinner-animation 0.35s linear infinite;
  animation: spinner-animation 0.35s linear infinite;
  position: relative;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .Loader__inner,
  .Loader span {
    margin: 0;
  }
}
@-webkit-keyframes spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
a {
  color: #100803;
  text-decoration: none;
}
a:focus,
a:hover {
  color: #100803;
  text-decoration: underline;
}
a:active {
  color: #100803;
}
#CommonPage a,
.link,
.services-links__list li a,
[data-common-page] a {
  border-bottom: 0.125em solid transparent;
  -webkit-box-shadow: 0 0.071em 0 #dedede;
  box-shadow: 0 0.071em 0 #dedede;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  text-decoration: none;
}
#CommonPage a:focus,
#CommonPage a:hover,
.link:focus,
.link:hover,
.services-links__list li a:focus,
.services-links__list li a:hover,
[data-common-page] a:focus,
[data-common-page] a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0.071em 0 #ffb806;
  box-shadow: 0 0.071em 0 #ffb806;
}
#CommonPage ul:not(.Accordion),
.common-page--different__content#CommonPage ol,
.list--clean,
[data-common-page] ul:not(.Accordion) {
  list-style: none;
  margin: 0;
  padding: 0;
}
#CommonPage ul:not(.Accordion) li,
.list--orange-check li,
[data-common-page] ul:not(.Accordion) li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 24px;
}
@media (min-width: 768px) {
  #CommonPage ul:not(.Accordion) li,
  .list--orange-check li,
  [data-common-page] ul:not(.Accordion) li {
    margin-bottom: 14px;
  }
}
#CommonPage ul:not(.Accordion) li:before,
.list--orange-check li:before,
[data-common-page] ul:not(.Accordion) li:before {
  content: "";
  width: 16px;
  height: 11px;
  position: absolute;
  top: 6px;
  left: 0;
  background: url(./images/ico_check.svg) 50% no-repeat;
  background-size: contain;
}
.list--orange-circle li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .list--orange-circle li {
    margin-bottom: 14px;
  }
}
.list--orange-circle li:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #ffb806;
  border-radius: 50%;
}
.common-page--different__content#CommonPage ol,
.list--white-number {
  counter-reset: numbers;
}
.common-page--different__content#CommonPage ol li,
.list--white-number li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 36px;
  counter-increment: numbers;
  font-weight: 500;
}
.common-page--different__content#CommonPage ol li:before,
.list--white-number li:before {
  content: "0" counter(numbers) ". ";
  font-family: Bebas Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 46px;
  font-weight: 400;
  line-height: 48px;
  color: #fff;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .common-page--different__content#CommonPage ol li:before,
  .list--white-number li:before {
    font-size: 54px;
    font-weight: 500;
    line-height: 48px;
  }
}
.common-page--different__content#CommonPage ol li br,
.list--white-number li br {
  display: none;
}
@media (min-width: 768px) {
  .common-page--different__content#CommonPage ol li br,
  .list--white-number li br {
    display: inline;
  }
}
.list--orange-number-with-header li:before {
  color: #ffb806;
}
.list--orange-number-with-header li h3,
.list--orange-number-with-header li strong:not(.inline) {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.list--with-headers li {
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .list--with-headers li {
    margin-bottom: 48px;
  }
}
.list--with-headers strong {
  display: block;
  font-family: Bebas Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 46px;
  font-weight: 400;
  line-height: 48px;
  color: #ffb806;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .list--with-headers strong {
    font-size: 54px;
    font-weight: 500;
  }
}
.list--with-headers strong span {
  font-size: 20px;
  color: #100803;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .list--with-headers strong span {
    font-size: 24px;
  }
}
.list--with-headers strong span.fz-32 {
  font-size: 30px;
}
@media (min-width: 768px) {
  .list--with-headers strong span.fz-32 {
    font-size: 32px;
  }
}
p {
  margin-bottom: 1em;
}
.hidden-info:after {
  content: attr(data-title);
}
.section-cta {
  padding: 0;
}
@media (min-width: 1024px) {
  .section-cta {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 120px;
  }
}
.section-cta .container {
  position: relative;
  background-position: 85%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 44px 12px;
}
@media (min-width: 480px) {
  .section-cta .container {
    padding: 44px 24px;
  }
}
@media (min-width: 768px) {
  .section-cta .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: 50%;
    padding: 44px 48px;
  }
}
@media (min-width: 1200px) {
  .section-cta .container {
    padding: 76px 118.66667px;
  }
}
.section-cta .container:after {
  content: "";
  width: 155px;
  height: 67px;
  display: none;
}
@media (min-width: 1024px) {
  .section-cta .container:after {
    position: absolute;
    bottom: -24px;
    left: -20px;
    display: block;
    background: top no-repeat;
    background-size: 148px 90px;
    z-index: 0;
  }
}
.no-webp .section-cta .container.load-bg {
  background-image: url(./images/sections/section-cta/img_cta-cat-mobile.jpg);
}
.section-cta .container.load-bg {
  background-image: url(./images/sections/section-cta/img_cta-cat-mobile.webp);
}
@media (min-width: 480px) {
  .no-webp .section-cta .container.load-bg {
    background-image: url(./images/sections/section-cta/img_cta-cat.jpg);
  }
  .section-cta .container.load-bg {
    background-image: url(./images/sections/section-cta/img_cta-cat.webp);
  }
}
@media (min-width: 1024px) {
  .section-cta .container.load-bg:after {
    background-image: url(./images/ico_dottes.svg);
  }
}
.cta__title {
  margin-bottom: 8px;
  line-height: 110%;
}
@media (min-width: 768px) {
  .cta__title {
    max-width: 225.33333px;
    line-height: 115%;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    max-width: 332px;
  }
}
.cta__subtitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 155%;
  margin-bottom: 24px;
  max-width: 260px;
}
@media (min-width: 768px) {
  .cta__subtitle {
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .cta__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
}
@media (min-width: 768px) {
  .cta__text {
    max-width: 332px;
  }
}
@media (min-width: 1200px) {
  .cta__text {
    margin-left: 65.33333px;
  }
}
.section-services-links {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3f3f3;
}
@media (min-width: 1024px) {
  .section-services-links {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.services-links__header {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .services-links__header {
    margin-bottom: 24px;
  }
}
@media (min-width: 480px) {
  .services-links__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.services-links__list li {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (min-width: 480px) {
  .services-links__list li {
    width: 50%;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .services-links__list li {
    width: 33.33%;
  }
}
@media (min-width: 1200px) {
  .services-links__list li {
    width: 25%;
  }
}
.services-links__list li:last-of-type {
  margin-right: auto;
}
@media (min-width: 768px) {
  .section-cta--common-page .cta__title {
    max-width: 332px;
  }
}
@media (min-width: 1024px) {
  .section-cta--common-page .cta__title {
    max-width: 438.66667px;
  }
}
.section-calc--common-page:after,
.section-calc--common-page:before,
.section-testimonials--common-page:before {
  display: none;
}
.section-common-page {
  background-color: #f8f8f8;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1024px) {
  .section-common-page {
    padding-bottom: 120px;
  }
}
.section-common-page:before {
  content: "";
  width: 96px;
  height: 184px;
  display: none;
}
@media (min-width: 1024px) {
  .section-common-page:before {
    position: absolute;
    top: -40px;
    left: 0;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 96px 184px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    z-index: 0;
  }
}
.section-common-page:after {
  content: "";
  width: 257px;
  height: 317px;
  display: none;
}
@media (min-width: 1024px) {
  .section-common-page:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-left-middle-white-small.svg)
      0 0 no-repeat;
    background-size: 400px 300px;
    z-index: 0;
  }
}
.section-common-page .breadcrumbs {
  position: relative;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .section-common-page .breadcrumbs {
    padding-left: 24px;
  }
}
@media (min-width: 1200px) {
  .section-common-page .breadcrumbs {
    padding-left: 118.66667px;
  }
}
.section-common-page .container {
  background-color: #fff;
  padding: 48px 12px;
  -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
}
@media (min-width: 768px) {
  .section-common-page .container {
    padding: 60px 24px;
  }
}
@media (min-width: 1200px) {
  .section-common-page .container {
    padding: 90px 118.66667px;
  }
}
.section-common-page .container .h1 {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .section-common-page .container .h1 {
    margin-bottom: 48px;
  }
}
.section-common-page .container .h1[data-text]:before {
  content: attr(data-text);
}
.section-common-page--moneyback {
  -webkit-box-shadow: inset 0 730px 0 #f3f3f3;
  box-shadow: inset 0 730px 0 #f3f3f3;
}
.section-common-page--faq {
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .section-common-page--faq {
    margin-bottom: 120px;
  }
}
.section-common-page--faq .container,
.section-common-page--moneyback .container {
  background-color: transparent;
  padding: 6px 12px 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (min-width: 768px) {
  .section-common-page--faq .container,
  .section-common-page--moneyback .container {
    padding: 12px 24px 0;
  }
}
@media (min-width: 1200px) {
  .section-common-page--faq .container,
  .section-common-page--moneyback .container {
    padding: 12px 118.66667px 0;
  }
}
.section-common-page--faq #CommonPage > .Accordion,
.section-common-page--moneyback #CommonPage > .Accordion {
  max-width: none;
  background-color: #fff;
  padding: 0 12px 48px;
  margin-top: 24px;
  -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
}
@media (min-width: 768px) {
  .section-common-page--faq #CommonPage > .Accordion,
  .section-common-page--moneyback #CommonPage > .Accordion {
    margin-top: 60px;
    padding: 60px 24px;
  }
}
@media (min-width: 1200px) {
  .section-common-page--faq #CommonPage > .Accordion,
  .section-common-page--moneyback #CommonPage > .Accordion {
    padding: 60px 118.66667px 90px;
  }
}
.section-common-page--faq #CommonPage > .Accordion .Accordion__item:first-child,
.section-common-page--moneyback
  #CommonPage
  > .Accordion
  .Accordion__item:first-child {
  border-top: 0;
}
.section-common-page--revision-policy #CommonPage ul:not(.Accordion) {
  margin: 48px 0 0;
}
@media (min-width: 1024px) {
  .section-common-page--revision-policy #CommonPage ul:not(.Accordion) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: none;
    margin: 36px 0;
  }
}
.section-common-page--revision-policy #CommonPage ul:not(.Accordion) li {
  max-width: 480px;
  width: 100%;
  padding: 90px 0 0;
  margin-bottom: 36px;
}
@media (min-width: 1024px) {
  .section-common-page--revision-policy #CommonPage ul:not(.Accordion) li {
    max-width: 280px;
    margin-bottom: 20px;
  }
}
.section-common-page--revision-policy #CommonPage ul:not(.Accordion) li:before {
  background-size: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  top: 0;
  left: 0;
}
.section-common-page--revision-policy #CommonPage ul:not(.Accordion) li:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 70px;
  font-size: 18px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 24px;
}
.section-common-page--revision-policy #CommonPage ul:not(.Accordion) li p {
  overflow: hidden;
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:first-of-type:before {
  background-image: url(./images/pages/common-pages/ico_instructions.svg);
  background-position: 60%;
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:first-of-type:after {
  content: "Instructions";
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:first-of-type
  p {
  text-indent: -113px;
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:nth-of-type(2):before {
  background-image: url(./images/pages/common-pages/ico_submission.svg);
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:nth-of-type(2):after {
  content: "Submission";
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:nth-of-type(2)
  p {
  text-indent: -99px;
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:nth-of-type(3):before {
  background-image: url(./images/pages/common-pages/ico_deadline.svg);
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:nth-of-type(3):after {
  content: "Deadline";
}
.section-common-page--revision-policy
  #CommonPage
  ul:not(.Accordion)
  li:nth-of-type(3)
  p {
  text-indent: -82px;
}
.section-common-page--guarantees {
  -webkit-box-shadow: inset 0 320px 0 #f3f3f3;
  box-shadow: inset 0 320px 0 #f3f3f3;
}
@media (min-width: 480px) {
  .section-common-page--guarantees {
    -webkit-box-shadow: inset 0 480px 0 #f3f3f3;
    box-shadow: inset 0 480px 0 #f3f3f3;
  }
}
.section-common-page--guarantees .container {
  position: relative;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}
.section-common-page--guarantees .container .h1 {
  margin-top: 24px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .section-common-page--guarantees .container .h1 {
    margin-top: 48px;
  }
}
.section-common-page--guarantees .container > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  max-width: 332px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .section-common-page--guarantees .container > p {
    margin-bottom: 100px;
  }
}
.common-page--circle {
  display: none;
}
@media (min-width: 1024px) {
  .common-page--circle {
    position: absolute;
    top: 900px;
    right: 0;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 96px 184px;
    width: 96px;
    height: 184px;
    z-index: 0;
  }
}
#CommonPage,
[data-common-page] {
  position: relative;
  min-height: 40px;
  margin: 0;
}
#CommonPage > :not(.Loader),
[data-common-page] > :not(.Loader) {
  max-width: 65ch;
}
@media (min-width: 1024px) {
  #CommonPage > :not(.Loader),
  [data-common-page] > :not(.Loader) {
    max-width: 800px;
  }
}
#CommonPage .Loader,
[data-common-page] .Loader {
  padding: 0;
}
#CommonPage h1,
[data-common-page] h1 {
  display: none;
}
#CommonPage h2,
#CommonPage h3:not(.Accordion__item__heading),
[data-common-page] h2,
[data-common-page] h3:not(.Accordion__item__heading) {
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 20px;
  font-weight: 500;
  margin: 40px 0 16px;
}
@media (min-width: 1024px) {
  #CommonPage h2,
  #CommonPage h3:not(.Accordion__item__heading),
  [data-common-page] h2,
  [data-common-page] h3:not(.Accordion__item__heading) {
    font-size: 28px;
    margin: 60px 0 24px;
  }
}
#CommonPage li,
#CommonPage p,
[data-common-page] li,
[data-common-page] p {
  line-height: 170%;
}
#CommonPage ol.list-numbers li,
[data-common-page] ol.list-numbers li {
  margin-bottom: 12px;
}
#CommonPage ol.list-numbers li ul li,
[data-common-page] ol.list-numbers li ul li {
  list-style: none;
}
#CommonPage ol[type="a"],
[data-common-page] ol[type="a"] {
  padding-left: 30px;
}
#CommonPage ol[type="a"] li,
[data-common-page] ol[type="a"] li {
  margin-bottom: 12px;
}
#CommonPage a,
[data-common-page] a {
  font-weight: 500;
}
#CommonPage ul:not(.Accordion),
[data-common-page] ul:not(.Accordion) {
  margin: 16px 0;
}
@media (min-width: 1024px) {
  #CommonPage ul:not(.Accordion),
  [data-common-page] ul:not(.Accordion) {
    margin: 24px 0;
  }
}
.section-common-page--different {
  background-color: #f8f8f8;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1024px) {
  .section-common-page--different {
    padding-bottom: 120px;
  }
}
.section-common-page--different:before {
  content: "";
  width: 96px;
  height: 184px;
  display: none;
}
@media (min-width: 1024px) {
  .section-common-page--different:before {
    position: absolute;
    top: -40px;
    left: 0;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 96px 184px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: invert(1);
    filter: invert(1);
    opacity: 0.04;
    z-index: 1;
  }
}
.section-common-page--different > .container {
  position: relative;
  background-color: #fff;
  padding: 48px 12px;
  -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  margin: -48px auto 0;
  max-width: 1054.66667px;
}
@media (min-width: 768px) {
  .section-common-page--different > .container {
    padding: 60px 24px;
    margin-top: -60px;
  }
}
@media (min-width: 1200px) {
  .section-common-page--different > .container {
    padding: 90px 118.66667px;
    margin-top: -90px;
  }
}
.section-common-page--different > .container:before {
  content: "";
  width: 96px;
  height: 184px;
  display: none;
}
@media (min-width: 1024px) {
  .section-common-page--different > .container:before {
    position: absolute;
    bottom: 25%;
    left: -76px;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 96px 184px;
    z-index: 0;
  }
}
.section-common-page--different > .container:after {
  content: "";
  width: 333px;
  height: 127px;
  display: none;
}
@media (min-width: 768px) {
  .section-common-page--different > .container:after {
    position: absolute;
    top: -78px;
    right: -50px;
    display: block;
    background: url(./images/ico_dottes-2.svg) 50% no-repeat;
    background-size: 333px 127px;
    z-index: 0;
  }
}
.no-webp
  .section-common-page--different__plagfree-guarantee
  .common-page--different__header
  .container:before {
  background-image: url(./images/pages/common-pages/img_plagfree-guarantee-bg-mobile.png);
}
.section-common-page--different__plagfree-guarantee
  .common-page--different__header
  .container:before {
  background-image: url(./images/pages/common-pages/img_plagfree-guarantee-bg-mobile.webp);
}
@media (min-width: 480px) {
  .no-webp
    .section-common-page--different__plagfree-guarantee
    .common-page--different__header
    .container:before {
    background-image: url(./images/pages/common-pages/img_plagfree-guarantee-bg.jpg);
  }
  .section-common-page--different__plagfree-guarantee
    .common-page--different__header
    .container:before {
    background-image: url(./images/pages/common-pages/img_plagfree-guarantee-bg.webp);
  }
}
.section-common-page--different__delivery {
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .section-common-page--different__delivery {
    margin-bottom: 120px;
  }
}
.no-webp
  .section-common-page--different__delivery
  .common-page--different__header
  .container:before {
  background-image: url(./images/pages/common-pages/img_prograssive-delivery-bg-mobile.png);
}
.section-common-page--different__delivery
  .common-page--different__header
  .container:before {
  background-image: url(./images/pages/common-pages/img_prograssive-delivery-bg-mobile.webp);
}
@media (min-width: 480px) {
  .no-webp
    .section-common-page--different__delivery
    .common-page--different__header
    .container:before {
    background-image: url(./images/pages/common-pages/img_prograssive-delivery-bg.jpg);
  }
  .section-common-page--different__delivery
    .common-page--different__header
    .container:before {
    background-image: url(./images/pages/common-pages/img_prograssive-delivery-bg.webp);
  }
}
.common-page--different__header {
  position: relative;
  background-color: #fff;
  margin-left: -12px;
  margin-right: -12px;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 1024px) {
  .common-page--different__header {
    margin-left: -24px;
    margin-right: -24px;
  }
}
.common-page--different__header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 12px 48px;
}
@media (min-width: 768px) {
  .common-page--different__header .container {
    display: block;
    padding: 0 24px;
  }
}
@media (min-width: 1200px) {
  .common-page--different__header .container {
    padding: 0 118.66667px;
  }
}
.common-page--different__header .container:before {
  content: "";
  width: 100%;
  height: 210px;
  display: block;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .common-page--different__header .container:before {
    position: absolute;
    top: -48px;
    right: 0;
    bottom: -48px;
    left: 50%;
    width: auto;
    height: auto;
    margin: 36px 0;
  }
}
.common-page--different__header .container .breadcrumbs {
  padding: 0;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.common-page--different__header .container .h1 {
  line-height: 110%;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .common-page--different__header .container .h1 {
    max-width: 48%;
  }
}
@media (min-width: 1024px) {
  .common-page--different__header .container .h1 {
    margin: 48px 0;
  }
}
.common-page--different__header .container > p {
  line-height: 170%;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .common-page--different__header .container > p {
    max-width: 48%;
    margin-bottom: 108px;
  }
}
@media (min-width: 1024px) {
  .common-page--different__header .container > p {
    max-width: 380px;
    margin-bottom: 190px;
  }
}
.common-page--different__header .container > p:before {
  content: attr(data-text);
}
.common-page--different__content#CommonPage .progd > p:first-child,
.common-page--different__content#CommonPage > p:first-child {
  display: none;
}
.common-page--different__content#CommonPage .progd > p:first-child + h2,
.common-page--different__content#CommonPage .progd > p:first-child + h3,
.common-page--different__content#CommonPage > p:first-child + h2,
.common-page--different__content#CommonPage > p:first-child + h3 {
  margin-top: 0;
}
.common-page--different__content#CommonPage h2,
.common-page--different__content#CommonPage h3 {
  max-width: 500px;
}
.common-page--different__content#CommonPage h2 strong,
.common-page--different__content#CommonPage h3 strong {
  font-weight: 500;
}
.common-page--different__content#CommonPage p {
  max-width: 700px;
}
.common-page--different__content#CommonPage ul {
  max-width: 600px;
  margin: 16px auto;
}
@media (min-width: 1024px) {
  .common-page--different__content#CommonPage ul {
    margin: 24px auto;
  }
}
.common-page--different__content#CommonPage ol {
  max-width: 600px;
  margin: 16px auto;
}
@media (min-width: 1024px) {
  .common-page--different__content#CommonPage ol {
    margin: 24px auto;
  }
}
.common-page--different__content#CommonPage ol li {
  display: list-item;
}
.common-page--different__content#CommonPage ol li:before {
  color: #ffb806;
  float: left;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .common-page--different__content#CommonPage ol li:before {
    margin-bottom: 24px;
  }
}
.customwritings.speech-to-user {
  display: none;
}
@media (min-width: 768px) {
  .guarantees {
    position: relative;
    background-color: #fff;
    padding: 48px 24px;
    -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
    box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  }
}
@media (min-width: 1200px) {
  .guarantees {
    padding: 80px 118.66667px;
  }
}
.guarantees:before {
  content: "";
  width: 140px;
  height: 300px;
  display: none;
}
@media (min-width: 1024px) {
  .guarantees:before {
    position: absolute;
    bottom: 25%;
    left: -100px;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 140px 300px;
    z-index: 0;
  }
}
.guarantees:after {
  content: "";
  width: 80px;
  height: 195px;
  display: none;
}
@media (min-width: 1024px) {
  .guarantees:after {
    position: absolute;
    top: 25%;
    right: -60px;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 80px 195px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    z-index: 0;
  }
}
.guarantees--list {
  position: relative;
}
@media (min-width: 768px) {
  .guarantees--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .guarantees--item__revert {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.guarantees--item + .guarantees--item {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .guarantees--item + .guarantees--item {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .guarantees--item + .guarantees--item {
    margin-top: 120px;
  }
}
.guarantees--item picture {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .guarantees--item picture {
    width: 52%;
    margin-bottom: 0;
  }
}
.guarantees--item picture img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .guarantees--item__content {
    width: 40%;
  }
}
.guarantees--item__content .h3 {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .guarantees--item__content .h3 {
    margin-bottom: 24px;
  }
}
.guarantees__text {
  line-height: 170%;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .guarantees__text {
    margin-bottom: 36px;
  }
}
.guarantees__link {
  display: inline-block;
  position: relative;
  font-weight: 600;
  color: #100803;
  padding: 10px 0 10px 50px;
  margin-left: 16px;
}
.guarantees__link:before {
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  border: 1px solid #ffb806;
  border-radius: 2px;
  -webkit-box-shadow: 0 15px 40px rgba(255, 184, 6, 0.08);
  box-shadow: 0 15px 40px rgba(255, 184, 6, 0.08);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.guarantees__link:after,
.guarantees__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  margin: auto;
}
.guarantees__link:after {
  width: 36px;
  height: 9px;
  top: 1px;
  right: calc(100% - 18px);
  background: 100% no-repeat;
  background-size: 36px 9px;
  -webkit-transition: width 0.3s ease, right 0.2s ease, -webkit-filter 0.3s ease;
  transition: width 0.3s ease, right 0.2s ease, -webkit-filter 0.3s ease;
  transition: filter 0.3s ease, width 0.3s ease, right 0.2s ease;
  transition: filter 0.3s ease, width 0.3s ease, right 0.2s ease,
    -webkit-filter 0.3s ease;
}
.guarantees__link.load-bg:after {
  background-image: url(./images/sections/section-samples/ico_arrow-orange.svg);
}
.guarantees__link:focus,
.guarantees__link:hover {
  text-decoration: none;
  color: #100803;
}
.guarantees__link:focus:before,
.guarantees__link:hover:before {
  background-color: #ffb806;
}
.guarantees__link:focus:after,
.guarantees__link:hover:after {
  right: calc(100% - 24px);
  width: 18px;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.section-how-we-work {
  background-color: #fff;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .section-how-we-work {
    background-color: #f8f8f8;
  }
}
@media (min-width: 1024px) {
  .section-how-we-work {
    margin-bottom: 120px;
    padding-bottom: 120px;
  }
}
.section-how-we-work:before {
  -webkit-filter: invert(0);
  filter: invert(0);
  opacity: 1;
}
.section-how-we-work .common-page--different__header {
  background-color: #f3f3f3;
  z-index: auto;
}
.section-how-we-work .common-page--different__header .container {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.no-webp
  .section-how-we-work
  .common-page--different__header
  .container:before {
  background-image: url(./images/pages/how-we-work/img_hiw-bg-mobile.png);
}
.section-how-we-work .common-page--different__header .container:before {
  background-image: url(./images/pages/how-we-work/img_hiw-bg-mobile.webp);
}
@media (min-width: 480px) {
  .no-webp
    .section-how-we-work
    .common-page--different__header
    .container:before {
    background-image: url(./images/pages/how-we-work/img_hiw-bg.png);
  }
  .section-how-we-work .common-page--different__header .container:before {
    background-image: url(./images/pages/how-we-work/img_hiw-bg.webp);
  }
}
@media (min-width: 768px) {
  .section-how-we-work .common-page--different__header .container {
    padding-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .section-how-we-work .common-page--different__header .container {
    padding-bottom: 0;
  }
}
.section-how-we-work .common-page--different__header .container .breadcrumbs,
.section-how-we-work .common-page--different__header .container .h1 {
  position: relative;
  z-index: 1;
}
.section-how-we-work .common-page--different__header .container .h1 {
  margin-bottom: 0;
}
.section-how-we-work > .container {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .section-how-we-work > .container {
    margin-top: -60px;
    -webkit-box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
    box-shadow: 0 15px 40px rgba(16, 8, 3, 0.08);
  }
}
.section-how-we-work > .container .circle {
  display: none;
}
@media (min-width: 1024px) {
  .section-how-we-work > .container .circle {
    position: absolute;
    top: 900px;
    right: 0;
    display: block;
    background: url(./images/sections/section-samples/ico_circle-right-middle-white.svg)
      50% no-repeat;
    background-size: 140px 300px;
    width: 140px;
    height: 300px;
    z-index: 0;
    right: -100px;
    top: calc(50% - 150px);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
.section-how-we-work__text {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  width: 100%;
  margin-bottom: 27px;
}
@media (min-width: 1024px) {
  .section-how-we-work__text {
    max-width: 390px;
    margin-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .section-how-we-work__text--top {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1024px) {
  .section-how-we-work__text--top {
    max-width: 290px;
    margin-bottom: 190px;
  }
}
.section-how-we-work__text br {
  display: none;
}
@media (min-width: 1024px) {
  .section-how-we-work__text br {
    display: inline-block;
  }
}
.section-how-we-work ol {
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 47px;
}
@media (min-width: 1024px) {
  .section-how-we-work ol {
    margin: 24px auto;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 70px;
    grid-row-gap: 67px;
  }
}
.section-how-we-work ol li {
  display: list-item;
  margin-bottom: 0;
}
.section-how-we-work ol li:before {
  color: #ffb806;
  float: left;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-how-we-work ol li:before {
    margin-bottom: 24px;
  }
}
.section-how-we-work ol li span {
  font-size: 18px;
  font-weight: 700;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
.section-how-we-work ol li p {
  padding-left: 65px;
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .section-how-we-work ol li p {
    margin-top: 14px;
    padding-left: 70px;
  }
}
