@charset "UTF-8";
.margincenter {
  margin: 0 auto;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.nopadding {
  padding: 0;
}
.nomargin {
  margin: 0;
}
strong, .strong {
  font-weight: 700;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.container {
  width: 100%;
  max-width: 1193px;
  margin: 0 auto;
  padding: 0 20px;
}
.grid {
  display: grid;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Involve";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/InvolveBold.woff2") format("woff2");
}
@font-face {
  font-family: "Involve";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/InvolveSemiBold.woff2") format("woff2");
}
:root {
  --black: #000000;
  --darkBlue: #1B1F2D;
  --involveFont: "Involve";
  --interFont: "Inter";
  --orange: #FF9B38;
  --white: #ffffff;
  --gray: #646672;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
}
html, body {
  height: 100%;
}
body {
  width: 100%;
  max-width: 100vw;
  font-family: "Inter";
  font-size: 18px;
  line-height: 146%;
  color: var(--white);
  background-color: var(--darkBlue);
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
.bold {
  font-weight: 700;
}
input, textarea {
  font-family: var(--interFont);
}
input[type="number"] {
  appearance: textfield;
  /* Для современных браузеров */
  -moz-appearance: textfield;
  /* Для Firefox */
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
label.checkbox {
  display: grid;
  grid-template-columns: 10px auto;
  align-items: center;
  column-gap: 10px;
  position: relative;
  cursor: pointer;
}
label.checkbox .check {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gray);
  transition: all 0.3s;
}
label.checkbox input[type="checkbox"], label.checkbox input[type="radio"] {
  opacity: 0;
  position: absolute;
}
label.checkbox input[type="checkbox"]:checked ~ .check, label.checkbox input[type="radio"]:checked ~ .check {
  background-color: var(--black);
}
label.checkbox .label {
  color: var(--black);
  transition: all 0.3s;
}
label.checkbox .label a {
  color: var(--black);
  text-decoration: underline;
}
label.checkbox .label a:hover {
  text-decoration: none;
}
.select {
  position: relative;
  display: inline-block;
}
.select .current {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  line-height: 142%;
  color: var(--black);
  padding: 7px 56px 7px 16px;
  border: 1px solid var(--black);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .select .current {
    font-size: 16px;
    line-height: 132%;
  }
}
.select .current:before {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1113_3395)"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7083 15.7071C12.5208 15.8946 12.2665 15.9999 12.0013 15.9999C11.7362 15.9999 11.4818 15.8946 11.2943 15.7071L5.63732 10.0501C5.54181 9.95785 5.46563 9.84751 5.41322 9.7255C5.36081 9.6035 5.33322 9.47228 5.33207 9.3395C5.33092 9.20672 5.35622 9.07504 5.4065 8.95215C5.45678 8.82925 5.53103 8.7176 5.62492 8.6237C5.71882 8.52981 5.83047 8.45556 5.95337 8.40528C6.07626 8.355 6.20794 8.32969 6.34072 8.33085C6.4735 8.332 6.60472 8.35959 6.72672 8.412C6.84873 8.46441 6.95907 8.54059 7.05132 8.6361L12.0013 13.5861L16.9513 8.6361C17.1399 8.45394 17.3925 8.35315 17.6547 8.35542C17.9169 8.3577 18.1677 8.46287 18.3531 8.64828C18.5385 8.83369 18.6437 9.0845 18.646 9.3467C18.6483 9.60889 18.5475 9.8615 18.3653 10.0501L12.7083 15.7071Z" fill="%23FE8100"/></g><defs><clipPath id="clip0_1113_3395"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
  position: absolute;
  top: 8px;
  right: 8px;
  transition: all 0.3s;
  width: 24px;
  height: 24px;
}
.select .current.open:before {
  transform: rotate(180deg);
}
.select .list {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--black);
  width: 100%;
  background-color: #ffffff;
  z-index: 10;
}
.select .list .option {
  color: var(--black);
  font-size: 18px;
  line-height: 142%;
  margin-bottom: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
}
@media (max-width: 767px) {
  .select .list .option {
    font-size: 16px;
    line-height: 132%;
  }
}
.select .list .option:last-child {
  margin-bottom: 0;
}
.select .list .option:hover {
  background-color: #cccccc;
}
.select .list .option.active {
  color: var(--black);
}
.select .list .option.active a {
  color: var(--black);
}
.select .list .option a {
  color: var(--black);
}
.radio {
  position: relative;
}
.radio .label {
  display: flex;
  align-items: center;
  height: 32px;
  border: 1px solid #cccccc;
  padding: 0 12px;
  border-radius: 10px;
  column-gap: 8px;
  font-size: 12px;
  line-height: 8px;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s;
}
.radio .label .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.radio input[type="radio"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.radio input[type="radio"]:checked ~ .label {
  border-color: var(--black);
}
h1 {
  font-size: 103px;
  line-height: 93%;
  letter-spacing: -0.01em;
  font-family: var(--involveFont);
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
}
h3 {
  letter-spacing: -0.01em;
  font-family: var(--involveFont);
  font-weight: 700;
  font-size: 72px;
  line-height: 91%;
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 33px;
  }
}
h4 {
  letter-spacing: -0.01em;
  font-family: var(--involveFont);
  font-weight: 600;
  font-size: 42px;
  line-height: 91%;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 26px;
  }
}
header {
  transition: all 0.3s;
  z-index: 10;
  padding-top: 30px;
  width: 100%;
}
header .header-container {
  max-width: 1488px;
  padding: 0 20px;
  margin: 0 auto;
}
header .flex {
  align-items: center;
}
header .right-block {
  column-gap: 52px;
  font-size: 20px;
  line-height: 127.5%;
}
@media only screen and (max-width: 768px) {
  header .right-block {
    column-gap: 24px;
    font-size: 14px;
  }
}
header .right-block a {
  font-weight: 700;
}
header .right-block .callback a {
  border-bottom: 1px dashed;
}
header .right-block .callback a:hover {
  border-bottom-style: solid;
}
.btn {
  display: inline-block;
  color: var(--black);
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 127.5%;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 80px;
  padding: 26px 27px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #ffffff;
}
.tab, .accordion-block .item .text {
  display: none;
}
.tab.active, .accordion-block .item.active .text {
  display: block;
}
.main-page {
  background-image: url(/images/bg-pic.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.top-block {
  margin-top: 63px;
}
@media only screen and (max-width: 768px) {
  .top-block {
    margin-top: 80px;
  }
}
.top-block .title {
  position: relative;
}
.top-block .title .img {
  position: absolute;
  top: -21px;
  right: 57px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top-block .title .img {
    position: static;
  }
}
.top-block .title h1 {
  position: relative;
  z-index: 2;
}
.top-block .text-block {
  margin-top: 54px;
  grid-template-columns: auto 288px;
  align-items: flex-end;
  max-width: 1060px;
}
@media only screen and (max-width: 768px) {
  .top-block .text-block {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}
.top-block .text-block .text {
  font-size: 32px;
  line-height: 118%;
  max-width: 626px;
}
.top-block .text-block .btn {
  padding: 26px 0;
  width: 100%;
}
.marketing-block {
  margin-top: 119px;
}
@media only screen and (max-width: 768px) {
  .marketing-block {
    margin-top: 70px;
  }
}
.marketing-block .title {
  max-width: 1010px;
}
.marketing-block .after-title {
  margin-top: 40px;
  font-family: var(--involveFont);
  font-weight: 600;
  font-size: 33px;
  line-height: 120%;
  max-width: 1006px;
}
@media only screen and (max-width: 768px) {
  .marketing-block .after-title {
    margin-top: 9px;
    font-size: 18px;
  }
}
.marketing-block .text-block {
  margin-top: 49px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .marketing-block .text-block {
    flex-direction: column-reverse;
    margin-top: 0;
    row-gap: 14px;
  }
}
.marketing-block .text-block .text {
  max-width: 476px;
}
.marketing-block .text-block .text p {
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  .marketing-block .text-block .text p {
    margin-bottom: 15px;
  }
}
.marketing-block .text-block .text p:last-child {
  margin-bottom: 0;
}
.promo-variants {
  margin-top: 104px;
}
@media only screen and (max-width: 768px) {
  .promo-variants {
    margin-top: 70px;
  }
}
.promo-variants .title {
  max-width: 1016px;
}
.promo-variants .variants-list {
  margin-top: 32px;
  column-gap: 20px;
  row-gap: 23px;
}
.promo-variants .variants-list .item {
  max-width: 477px;
}
.promo-variants .variants-list .item .img {
  height: 190px;
}
.promo-variants .variants-list .item .name {
  margin-top: 16px;
}
.promo-variants .variants-list .item .text {
  margin-top: 27px;
}
.promo-variants .variants-list .item .text p {
  margin-bottom: 23px;
}
.promo-variants .variants-list .item .text p:last-child {
  margin-bottom: 0;
}
.promo-variants .variants-list .item .btn-block {
  margin-top: 31px;
}
@media only screen and (max-width: 768px) {
  .promo-variants .variants-list .item .btn-block .btn {
    width: 100%;
  }
}
.result {
  margin-top: 174px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .result {
    margin-top: 70px;
    padding-bottom: 55p;
  }
}
.result .result-list {
  margin-top: 73px;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .result .result-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 70px;
  }
}
.result .result-list .item .img {
  height: 127px;
}
.result .result-list .item .name {
  font-size: 26px;
  line-height: 111%;
}
@media only screen and (max-width: 768px) {
  .result .result-list .item .name {
    font-size: 14px;
  }
}
.result .btn-block {
  margin-top: 88px;
  column-gap: 29px;
}
@media only screen and (max-width: 768px) {
  .result .btn-block {
    row-gap: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .result .btn-block .btn {
    width: 100%;
  }
}
.form-block .form-field {
  margin-bottom: 15px;
}
.form-block .form-field input, .form-block .form-field textarea {
  width: 100%;
  box-sizing: border-box;
  height: 79px;
  border-radius: 100px;
  border: 1px solid var(--black);
  padding: 26px 27px;
  font-size: 20px;
  line-height: 127%;
}
.form-block .form-field .textarea {
  height: 81px;
}
.form-block .policy {
  margin-top: 22px;
  padding-left: 28px;
}
.form-block .policy .checkbox {
  grid-template-columns: 36px auto;
}
.form-block .policy .checkbox .check {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border-color: var(--black);
}
.form-block .btn-block {
  margin-top: 22px;
}
.form-block .btn-block button {
  width: 100%;
  height: 101px;
  background-color: var(--orange);
  border-radius: 200px;
  font-size: 20px;
  line-height: 127%;
  color: var(--black);
  border: 1px solid var(--orange);
  transition: all 0.3s;
  text-align: center;
  font-weight: 500;
  font-family: var(--interFont);
}
.form-block .btn-block button:hover {
  background-color: var(--white);
}
/*-----------------footer---------------*/
footer {
  background: #3C4044;
  color: #ffffff;
  position: relative;
}
.site-footer {
  padding: 30px 0;
  text-align: center;
  background: #17191b;
}
.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer a:hover {
  color: var(--orange);
  text-decoration: none;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 14px;
  width: min(450px, calc(100vw - 48px));
  box-sizing: border-box;
  padding: 30px 54px 24px 24px;
  border-radius: 12px;
  background: #e9e9e9;
  color: var(--black);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.cookie-banner__close {
  position: absolute;
  top: -12px;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #17191b;
  color: var(--white);
  cursor: pointer;
}
.cookie-banner__icon {
  padding-top: 2px;
}
.cookie-banner__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}
.cookie-banner__content > a {
  display: inline-block;
  margin-top: 6px;
  color: var(--black);
  font-size: 14px;
  text-decoration: underline;
}
.cookie-banner__accept {
  display: block;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid #17191b;
  border-radius: 8px;
  background: #17191b;
  color: var(--white);
  font: 500 15px/1 var(--interFont);
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-banner__accept:hover {
  background: transparent;
  color: #17191b;
}
@media only screen and (max-width: 560px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 24px 42px 20px 18px;
  }
  .cookie-banner__close {
    top: 8px;
    right: 8px;
  }
}
/*-----------------forms---------------*/
.popupblock {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.popupblock .close {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 34px;
  right: 34px;
  cursor: pointer;
  transition: all 0.3s;
}
.popupblock .close:hover {
  transform: rotate(180deg);
}
.popupblock .inner {
  background: #ffffff;
  max-width: 716px;
  width: 100%;
  border-radius: 0px;
  padding: 67px 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  border-radius: 56px;
  max-height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .popupblock .inner {
    padding: 50px 20px;
  }
}
.popupblock .inner .title {
  font-family: var(--involveFont);
  font-size: 32px;
  line-height: 91%;
  font-weight: 700;
}
.popupblock .inner .after-title {
  margin-top: 12px;
  font-family: var(--involveFont);
  font-weight: 600;
}
.popupblock .inner .form-block {
  margin-top: 43px;
  max-height: 100%;
  overflow-y: auto;
}
.popupblock.popupstategy .inner {
  font-size: 14px;
  line-height: 127%;
}
.popupblock.popupstategy .inner .form-block .form-grid {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}
@media only screen and (max-width: 768px) {
  .popupblock.popupstategy .inner .form-block .form-grid {
    grid-template-columns: 1fr;
  }
}
.popupblock.popupstategy .inner .form-block .form-field input {
  border-radius: 18px;
  height: 56px;
  padding: 18px 28px;
  font-size: 14px;
  line-height: 127%;
}
.popupblock.popupstategy .inner .form-block .form-field textarea {
  border-radius: 18px;
  padding: 18px 28px;
  font-size: 14px;
  line-height: 127%;
}
.popupblock.popupstategy .inner .form-block .checkbox-block {
  margin-bottom: 26px;
}
.popupblock.popupstategy .inner .form-block .checkbox-block .checkbox-list, .popupblock.popupstategy .inner .form-block .checkbox-block .radio-list {
  margin-top: 12px;
  grid-template-columns: auto 260px;
  column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .popupblock.popupstategy .inner .form-block .checkbox-block .checkbox-list, .popupblock.popupstategy .inner .form-block .checkbox-block .radio-list {
    grid-template-columns: 1fr;
  }
}
.popupblock.popupstategy .inner .form-block .checkbox-block .checkbox-list .checkbox, .popupblock.popupstategy .inner .form-block .checkbox-block .radio-list .checkbox {
  align-items: flex-start;
}
.popupblock.popupstategy .inner .form-block .checkbox-block .checkbox-list .checkbox .check, .popupblock.popupstategy .inner .form-block .checkbox-block .radio-list .checkbox .check {
  margin-top: 4px;
}
.popupblock.popupstategy .inner .form-block .checkbox-block .checkbox-list .checkbox .label, .popupblock.popupstategy .inner .form-block .checkbox-block .radio-list .checkbox .label {
  color: var(--gray);
}