@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  height: 100%;
  line-height: 1;
}

@font-face {
  font-family: "Kaspersky Sans Display";
  src: url("/fonts/kaspersky-sans-display/regular/KasperskySansDisplay-Rg.eot");
  src: local("Kaspersky Sans Display Regular"), local("KasperskySansDisplay-Regular"), url("/fonts/kaspersky-sans-display/regular/KasperskySansDisplay-Rg.eot?#iefix") format("embedded-opentype"), url("/fonts/kaspersky-sans-display/regular/KasperskySansDisplay-Rg.woff2") format("woff2"), url("/fonts/kaspersky-sans-display/regular/KasperskySansDisplay-Rg.woff") format("woff"), url("/fonts/kaspersky-sans-display/regular/KasperskySansDisplay-Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kaspersky Sans Display";
  src: url("/fonts/kaspersky-sans-display/medium/KasperskySansDisplay-Md.eot");
  src: local("Kaspersky Sans Display Medium"), local("KasperskySansDisplay-Medium"), url("/fonts/kaspersky-sans-display/medium/KasperskySansDisplay-Md.eot?#iefix") format("embedded-opentype"), url("/fonts/kaspersky-sans-display/medium/KasperskySansDisplay-Md.woff2") format("woff2"), url("/fonts/kaspersky-sans-display/medium/KasperskySansDisplay-Md.woff") format("woff"), url("/fonts/kaspersky-sans-display/medium/KasperskySansDisplay-Md.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kaspersky Sans Display";
  src: url("/fonts/kaspersky-sans-display/semibold/KasperskySansDisplay-SmBd.eot");
  src: local("Kaspersky Sans Display SemiBold"), local("KasperskySansDisplay-SemiBold"), url("/fonts/kaspersky-sans-display/semibold/KasperskySansDisplay-SmBd.eot?#iefix") format("embedded-opentype"), url("/fonts/kaspersky-sans-display/semibold/KasperskySansDisplay-SmBd.woff2") format("woff2"), url("/fonts/kaspersky-sans-display/semibold/KasperskySansDisplay-SmBd.woff") format("woff"), url("/fonts/kaspersky-sans-display/semibold/KasperskySansDisplay-SmBd.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Roboto Flex", sans-serif;
  --second-family: "Kaspersky Sans Display", sans-serif;
  --third-family: "Inter", sans-serif;
  --container-size: 1420px;
  --header-min-height: calc(30px + (20px * 2));
  --footer-min-height: 100px;
  --accent-color: #fb7800;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: calc(var(--container-size) + 30px);
  margin: 0 auto;
  padding: 0 15px;
}

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

.text-underline {
  text-decoration: underline;
}

.scroll-disabled {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

.notification-bar {
  min-height: 40px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: var(--accent-color);
}
.header {
  min-height: var(--header-min-height);
  padding: 20px 15px;
  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 (max-width: 1200px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.logo__image {
  width: 100px;
  height: 30px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.nav__link {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav__link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.section {
  padding: 21px 15px;
}
@media (max-width: 768px) {
  .section {
    padding: 10.5px 15px;
  }
}
.section--hero {
  padding: 15px 15px 21px;
}
@media (max-width: 768px) {
  .section--hero {
    padding: 10.5px 15px;
  }
}
.section--hero .section__title {
  font-size: 36px;
}
@media (max-width: 768px) {
  .section--hero .section__title {
    font-size: 28px;
  }
}
.section--hero .section__content {
  max-width: 585px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.section--hero .section__wrapper {
  min-height: 440px;
  background-image: url("/img/hero/background.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
@media (max-width: 1200px) {
  .section--hero .section__wrapper {
    background-size: 600px;
  }
}
@media (max-width: 1024px) {
  .section--hero .section__wrapper {
    background: none;
    min-height: auto;
  }
}
.section--about .section__wrapper {
  gap: 22px;
}
.section--about .about {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.section--about .about__item {
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
}
.section--about .about__item::before {
  width: 30px;
  height: 30px;
}
.section--about .about__item:nth-child(1)::before {
  content: url("/img/about/mark-1.svg");
}
.section--about .about__item:nth-child(2)::before {
  content: url("/img/about/mark-2.svg");
}
.section--about .about__item:nth-child(3)::before {
  content: url("/img/about/mark-3.svg");
}
.section--about .about__item:nth-child(4)::before {
  content: url("/img/about/mark-4.svg");
}
.section--about .list {
  padding-top: 22px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}
.section--about .list__item {
  border-radius: 6px;
  padding: 14px;
  background-color: #fff5ec;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--accent-color);
}
.section--about .list__item:nth-child(1) {
  max-width: 395px;
}
.section--about .list__item:nth-child(2), .section--about .list__item:nth-child(3) {
  max-width: 337px;
}
@media (max-width: 1235px) {
  .section--about .list__item {
    max-width: 100% !important;
    width: 100%;
  }
}
.section--banner .section__wrapper {
  min-height: 288px;
  background-image: url("/img/banner/background.png");
}
@media (max-width: 450px) {
  .section--banner .section__wrapper {
    background-position: 5% 100%;
  }
}
.section--banner .section__title {
  font-family: var(--third-family);
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--banner .section__description {
  font-family: var(--third-family);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}
.section--banner .section__content {
  max-width: 200px;
}
.section--demand .section__start {
  padding-bottom: 22px;
}
.section--demand .section__start .section__title, .section--demand .section__start .section__description {
  max-width: 650px;
}
.section--demand .section__start .section__title {
  margin-bottom: 8px;
}
.section--demand .section__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}
.section--demand .section__end .section__title {
  margin-bottom: -14px;
  font-family: var(--third-family);
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--accent-color);
}
.section--partnership .section__content {
  margin: 0 auto;
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.section--partnership .section__title {
  font-size: 32px;
}
@media (max-width: 450px) {
  .section--partnership .section__title {
    font-size: 26px;
  }
}
.section--partnership .section__description {
  text-align: center;
}
.section--partnership .section__description:nth-child(4) {
  padding: 10px;
  color: var(--accent-color);
  background-color: #fff5ec;
}
.section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
@media (max-width: 768px) {
  .section__wrapper {
    padding: 30px;
  }
}
.section__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #000;
  line-height: 120%;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 22px;
  }
}
.section__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5);
}
.section__info-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--accent-color);
}
.section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.authors {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
.authors__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 136px;
          flex: 0 0 136px;
}
.authors__image {
  max-width: 136px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 1px solid var(--accent-color);
}
.authors__name {
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #000;
}
.authors__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
  line-height: 120%;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}
@media (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.footer .logo {
  margin-right: -100px;
}
@media (max-width: 768px) {
  .footer .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0;
  }
}
.footer__text {
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  overflow: scroll;
  padding: 15px;
  display: none;
  opacity: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .modal {
    padding: 0;
  }
}
.modal__content {
  position: relative;
  overflow: scroll;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  border-radius: 6px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .modal__content {
    min-height: 100vh;
  }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #000;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: opacity;
}
.modal__close:hover {
  opacity: 0.5;
}
.modal__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #000;
}
@media (max-width: 600px) {
  .modal__title {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .modal__title {
    font-size: 20px;
    text-align: center;
  }
}
.modal__description {
  max-width: 955px;
  padding: 10px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--accent-color);
  background-color: #fff5ec;
}
@media (max-width: 768px) {
  .modal__description {
    font-size: 14px;
  }
}

.product {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  padding: 5px;
  overflow: auto;
}
@media (max-width: 768px) {
  .product {
    max-height: 340px;
  }
}
.product__item {
  padding-left: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform;
}
.product__item:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media (max-width: 768px) {
  .product__item {
    width: 100%;
  }
}
.product__item--selected {
  border: 1px solid var(--accent-color);
}
.product__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.product__name {
  max-width: 120px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #000;
}
@media (max-width: 768px) {
  .product__name {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .product__name {
    font-size: 18px;
  }
}
.product__count {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #fb7800;
  text-wrap: nowrap;
}
@media (max-width: 600px) {
  .product__count {
    font-size: 14px;
  }
}
.product__end {
  border-radius: 0px 6px 6px 0px;
}

.google-signin-form {
  display: inline-block;
}
button.google-signin-btn,
a.google-signin-btn {
  cursor: pointer;
}
.google-signin-btn {
  display: inline-block;
  border: none;
  padding: 0;
  background: none;
  line-height: 0;
  text-decoration: none;
}
.google-signin-btn__wrap {
  position: relative;
  display: block;
  width: 189px;
  height: 40px;
  overflow: hidden;
}
.google-signin-btn__wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 189px;
  height: 40px;
  display: block;
  transition: opacity 0.35s ease;
}
.google-signin-btn__light {
  opacity: 1;
}
.google-signin-btn__dark {
  opacity: 0;
}
.google-signin-btn:hover .google-signin-btn__light {
  opacity: 0;
}
.google-signin-btn:hover .google-signin-btn__dark {
  opacity: 1;
}

.fadeIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
}

.fromBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fromBottom 0.3s forwards;
          animation: fromBottom 0.3s forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fromBottom {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    -webkit-transform: translate(0px);
            transform: translate(0px);
  }
}
@keyframes fromBottom {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    -webkit-transform: translate(0px);
            transform: translate(0px);
  }
}

.done-page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - var(--header-min-height) - var(--footer-min-height) - 40px);
  padding: 40px 15px;
}
.done-page__content {
  text-align: center;
  max-width: 950px;
}
.done-page__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  width: 100%;
}
.done-page__block-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 450px) {
  .done-page__block-title {
    font-size: 26px;
  }
}
.done-page__block-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.done-page__block-warning {
  padding: 10px;
  color: var(--accent-color);
  background-color: #fff5ec;
  border-radius: 6px;
}
.done-page__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}
.done-page__icon svg {
  display: block;
}
.done-page__text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .done-page__text {
    font-size: 18px;
  }
}
.done-page__btn {
  display: inline-block;
  padding: 10px 30px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background-color: var(--accent-color);
  border-radius: 4px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.done-page__btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: #c45f00;
}
.done-page__btn:active {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}