:root {
  --color-white: 255, 255, 255;
  --color-dark: 30, 30, 30;
  --color-primary: 255, 206, 0;
  --color-light-gray: 243, 243, 243;

  --font-weight-regular: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 800;
  --font-weight-extrabold: 900;

  --font-size-sm: 13px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 28px;
  --font-size-5xl: 34px;
}

* {
  box-sizing: border-box;
}

body {
  font-size: var(--font-size-md);
  line-height: 1.5;
  font-family: 'Mont', sans-serif;
  box-sizing: border-box;
  background-color: rgb(var(--color-light-gray));
  color: rgb(var(--color-dark));
}

/* Icons */

.info-block__icon {
  width: 48px;
  height: 48px;
  background-color: rgb(var(--color-primary));
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
}

.icon-pin::after {
  display: block;
  content: '';
  background-image: url('/img/pin.svg');
  width: 1.5rem;
  height: 1.5rem;
}

.icon-pin--dark::after {
  background-image: url('/img/pin-dark.svg');
}

.icon-whatsapp::after {
  display: block;
  content: '';
  background-image: url('/img/whatsapp.svg');
  width: 3rem;
  height: 3rem;
}

.icon-tg::after {
  display: block;
  content: '';
  background-image: url('/img/telegram.svg');
  width: 3rem;
  height: 3rem;
}

.icon-phone::after {
  display: block;
  content: '';
  background-image: url('/img/call.svg');
  width: 1.5rem;
  height: 1.5rem;
}

.icon-phone--dark::after {
  background-image: url('/img/call-dark.svg');
}

.icon-qa::after {
  display: block;
  content: '';
  background-image: url('/img/qa.svg');
  width: 1.5rem;
  height: 1.5rem;
}

.icon-agreement::before {
  display: inline-block;
  content: '';
  background-image: url('/img/agreement.svg');
  width: 1.5rem;
  height: 1.5rem;
}

.icon-agreement--dark::before {
  background-image: url('/img/agreement-dark.svg');
}

.icon-agreement--big::before {
  background-size: cover;
  width: 3rem;
  height: 3rem;
}

.icon-wave-arrow::before {
  display: inline-block;
  content: '';
  background-image: url('/img/wave-arrow.svg');
  width: 89px;
  height: 72px;
}

.icon-warning::before {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  content: '';
  background-image: url('/img/warn.svg');
}

.icon-camera::before {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  content: '';
  background-image: url('/img/icon-camera.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-card::before {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  content: '';
  background-image: url('/img/card.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-fire::before {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  content: '';
  background-image: url('/img/fire.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-fire--small::before {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-calendar::before {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  content: '';
  background-image: url('/img/calendar.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-times::before {
  width: 20px;
  height: 20px;
  display: inline-block;
  content: '';
  background-image: url('/img/cross.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-meter::before {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  content: '';
  background-image: url('/img/meter.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-meter {
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-arrow {
  background-image: url('/img/arrow.svg');
  width: 24px;
  height: 44px;
}

.icon-bars::after {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  content: '';
  background-image: url('/img/bars.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-leica::after {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  content: '';
  background-image: url('/img/leica.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.icon-support::after {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  content: '';
  background-image: url('/img/support.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.content-container {
  width: 100%;
  padding: 0.5rem;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: rgb(var(--color-white));
  z-index: 10;
  position: relative;
  padding: 1rem;
  max-width: 100%;
}

.header__brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}

.header_brand-logo {
  width: 155px;
}

.header__brand-divider {
  width: 1px;
  background-color: rgba(var(--color-white), 0.2);
  height: 1.5rem;
  display: none;
}

.header__brand-description {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 140%;
  display: none;
}

.header__info {
  justify-content: flex-end;
  gap: .5rem;
  display: none;
}

.header__info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px 16px;
  width: 280px;
  border-radius: 1rem;
  background-color: rgba(var(--color-dark), 0.8);
}

.info-block__content {
  display: flex;
  flex-direction: column;
  gap: 0.40rem;
  font-size: var(--font-size-sm);
}

.info-block__header {
  gap: 0.15rem;
  display: flex;
  flex-direction: column;
}

.info-block__title {
  padding: 0;
  margin: 0;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-sm);
}

.info-block__title-bold {
  font-weight: var(--font-weight-bold);
}

.info-block__muted {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: rgba(var(--color-white), 0.8)
}

.info-block__link {
  text-decoration: none;
  color: rgba(var(--color-white), 0.8)
}

.info-block__link:hover {
  color: rgb(var(--color-primary));
}

.header__sidebar-triggers {
  display: flex;
  gap: 1rem;
}

.header__icon-button {
  box-shadow: none;
  border: none;
  border-radius: 0.8rem;
  background-color: rgba(var(--color-primary), 1);
  padding: 1rem;
}

.section__first-screen {
  background-image: url('/img/header-background.png');
  background-repeat: no-repeat;
  background-position-x: 20%;
  background-size: cover;
  max-height: 95vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.section__first-screen::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: '';
}

.hero {
  z-index: 10;
  position: relative;
  flex: 1 1;
}

.hero > .content-container {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero__subheader {
  text-transform: uppercase;
  color: rgba(var(--color-white), 0.7);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.hero__title {
  color: rgb(var(--color-white));
  font-size: var(--font-size-5xl);
  line-height: 48px;
  margin: 1.5rem 0 0;
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
}

.hero__accent {
  position: relative;
  display: inline-block;
}

.hero__accent::after {
  position: absolute;
  display: block;
  content: '';
  bottom: -3px;
  left: -6px;
  background-image: url('/img/accent.svg');
  width: 51px;
  height: 9px;
}

.hero__action {
  display: flex;
  flex-direction: column-reverse;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero__cta {
  color: rgb(var(--color-dark));
  text-decoration: none;
  display: block;
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  padding: 1.5rem 2rem;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.hero__cta-notification {
  color: rgb(var(--color-primary));
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.hero__cta-info {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-direction: row-reverse;
  justify-items: flex-start;
  align-items: flex-start;
}

.arrow__text {
  max-width: 470px;
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: rgba(var(--color-white), 0.7);
  text-align: left;
}

.icon-wave-arrow {
  transform: rotate(180deg);
}

.section__what-is-it {
  position: relative;
  max-width: 768px;
  margin: -1.5rem auto 0;
  z-index: 20;
}

.card {
  background-color: rgba(var(--color-white), 1);
  padding: 1.5rem;
  border-radius: 19px;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.03);
}

.card--transparent-outline {
  background-color: transparent;
  border: 1px solid rgb(var(--color-primary));
  box-shadow: none;
}

.what-is-it__wrapper {
  max-width: 476px;
  position: relative;
  margin: 0 auto;
}

.what-is-it__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.what-is-it__icon {
  width: 3rem;
  height: 3rem;
  background-color: rgb(var(--color-primary));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 19px;
}

.what-is-it__title {
  margin: 0;
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
}

.what-is-it__description {
  margin-bottom: 1.5rem;
}

.bold {
  font-weight: var(--font-weight-bold);
}

.empty-side {
  min-width: 327px;
  min-height: 280px;
  position: relative;
}

.what-is-it__image {
  position: absolute;
  height: 180%;
  top: 0;
  right: calc(50% - 260px);
}

.what-is-it__warning, .destroy__warning {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(var(--color-primary));
  border-radius: 19px;
  padding: 1.5rem;
  font-weight: var(--font-weight-semibold);
}

.what-is-it__warning > .icon, .destroy__warning > .icon {
  flex-shrink: 0;
}

.section-why {
  background-image: url('/img/profits.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

.why__title {
  margin-top: 6rem;
  margin-bottom: 3rem;
  font-size: var(--font-size-5xl);
  line-height: 1.25;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  text-align: center;
}

.cards__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.empty-card {
  grid-row: 6;
}

.card__icon {
  border-radius: 19px;
  background-color: rgb(var(--color-primary));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.card__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold)
}

.card__title--xl {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.empty-card {
  position: relative;
}

.copter {
  background-image: url('/img/drone.png');
  background-size: contain;
  width: 100%;
  height: 350px;
  position: absolute;
  top: -100px;
}

.section__destroy {
  padding: 3rem 0;
  background-image: url('/img/destroy.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: rgb(var(--color-white));
}

.section__destroy::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: '';
  background-color: rgba(var(--color-dark), 0.6);
}

.section__destroy > .content-container {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.destroy__accent {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
}

.destroy__description {
  line-height: 1.5em;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  margin-bottom: 2rem;
}

.destroy__times {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.destroy__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  line-height: 1.5em;
  margin: 0 0 2rem;
}

.destroy__warning-text {
  color: rgb(var(--color-primary));
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-md);
}

.section__answer {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.answer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.answer__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5em;
  text-transform: uppercase;
}

.extrabold {
  font-weight: var(--font-weight-extrabold);
}

.section-divider {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.section__variants {
  margin-top: 5rem;
  z-index: 10;
  position: relative;
}

.variants__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.variants__subtitle {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  color: rgba(var(--color-dark), 0.4);
  display: block;
  margin-bottom: 3rem;
}

.variants {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.variant-image__card {
  display: block;
  margin-bottom: 1.5rem;
}

.image__card, .accent__img {
  display: none;
}

.image__card > img, .variant-image__card > img {
  width: 100%;
}

.variant__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.variant__title {
  text-align: center;
}

.variant__number {
  background-color: rgb(var(--color-primary));
  border-radius: 1rem;
  padding: .75rem 1rem;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  line-height: 1.25em;
  flex-shrink: 0;
}

.variant__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.25em;
}

.variant__description {
  margin-bottom: 1.5rem;
}

.variant__accent {
  font-size: var(--font-size-2xl);
  margin-bottom: 2rem;
}

.variant__list {
  margin: 0;
}

.variant__list > li {
  list-style: none;
  padding-left: 1.5rem;
  line-height: 1.5em;
  position: relative;
}

.variant__list > li > span {
  display: block;
}

.variant__list > li > span::before {
  display: block;
  position: absolute;
  content: '';
  background-image: url('/img/cross.svg');
  width: 19px;
  height: 19px;
  top: 4px;
  left: -1.5rem;
}

.variant__list--correct > li > span::before {
  background-image: url('/img/check.svg');
  width: 26px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  top: 8px;
}

.variant__list > li:not(:last-child) {
  margin-bottom: 2rem;
}

.variant__accent-card {
  border: 6px solid rgb(var(--color-primary));
  background-color: rgb(var(--color-white));
  border-radius: 19px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}

.accent__img {
  max-width: 360px;
}

.accent__img > img {
  width: 100%;
}

.variant__accent-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-align: center;
}

.variant__accent-card .variant__list {
  font-size: var(--font-size-2xl);
  line-height: 1.5em;
  margin-bottom: 4rem;
}

.variant__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.variant__button {
  color: rgb(var(--color-dark));
  text-decoration: none;
  display: block;
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  padding: 1.5rem 2rem;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  border: 0;
}

.variant__agreement {
  color: rgb(var(--color-dark));
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.section__why {
  margin-top: -40px;
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background-color: rgb(var(--color-primary));
}

.why__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why__card {
  background-color: rgb(var(--color-white));
  padding: 3rem;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.why__card > .icon {
  width: 96px;
  height: 96px;
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why__card-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

.why__card-description {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: rgba(var(--color-dark), 0.4);
}

.why__section-title {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  text-align: center;
}

.why__section-subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  color: rgba(var(--color-dark), .6);
}

.why__arrow-divider {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  align-self: center;
  justify-content: center;
}

.why__arrow-divider .arrow {
  background-image: url('/img/arrow-divider-dark.svg');
  width: 24px;
  height: 44px;
}

.why__folder-button {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 264px;
}

.folder__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 288px;
  height: 264px;
  z-index: -1;
}

.why__button {
  border: none;
  background: rgb(var(--color-dark));
  color: rgb(var(--color-primary));
  padding: 1em 1.5em;
  font-size: var(--font-size-2xl);
  border-radius: 19px;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}

.section__profits {
  padding: 80px 0;
  background-image: url('/img/profits.png');
  background-position-y: -350px;
  background-repeat: no-repeat;
  background-size: 110%;
  background-position-x: center;
}

.profits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.profits__title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profits__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-regular);
  text-transform: uppercase;
  vertical-align: middle;
  text-align: center;
}

.profits__points {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.profits__point {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  background-color: rgb(var(--color-white));
  border-radius: 19px;
}

.profit__icon {
  flex-shrink: 0;
}

.profit__icon > .icon {
  width: 80px;
  height: 80px;
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profit__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin-bottom: 0.4em;
}

.profit__description {
  font-size: var(--font-size-md);
  color: rgba(var(--color-dark), 0.6);
}

.profits__cta {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual__accent, .visual__muted {
  display: block;
  text-align: center;
}

.visual__muted {
  color: rgba(var(--color-dark), 0.5);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
}

.profits__cta-button {
  padding: 1em 1.5em;
  font-size: var(--font-size-2xl);
  text-transform: uppercase;
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  border: none;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}

.section__staff {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  color: rgb(var(--color-white));
}

.staff__background {
  position: absolute;
  width: 110%;
  height: 80%;
  left: -5%;
  right: -5%;
  top: 0;
  background-image: url('/img/team.png');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.staff__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.staff__subtitle {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  margin-bottom: 4rem;
}

.slide-wrap {
  padding: 1rem;
}

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(var(--color-white), 0.9);
  border-radius: 19px;
  padding: 2rem 2.5rem;
  color: rgb(var(--color-dark));
  text-align: center;
}

.member__image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
}

.member__image > img {
  filter: grayscale(100%);
  display: block;
  object-fit: cover;
  max-width: 110%;
}

.member__bio {
  margin-top: 2rem;
  text-align: center;
}

.member__name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.member__experience {
  margin-bottom: 0.5rem;
}

.member__registry {
  font-size: var(--font-size-sm);
  color: rgba(var(--color-dark), 0.4);
  line-height: 20px;
}

.member__registry::before {
  content: '';
  background-image: url('/img/registry.svg');
  background-size: contain;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: -4px;
}

.section-steps {
  padding-bottom: 6rem;
}

.steps-title {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

.step-card {
  background-color: rgb(var(--color-white));
  border-radius: 19px;
  padding: 3rem;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.03);
  margin: 0;
  flex-basis: calc(50% - 1rem);
}

.step-card:nth-child(5) {
  align-self: flex-start;
}

.step-card__accent {
  background-color: rgb(var(--color-primary))
}

.step-card__header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5em;
  margin-bottom: 2em;
}

.step-card__step {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-dark));
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  border-radius: 1em;
  padding: 0.8em 1.2em;
  margin-bottom: 0;
  line-height: 1;
}

.step-card__accent .step-card__step {
  background-color: rgb(var(--color-dark));
  color: rgb(var(--color-primary));
}

.step-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0;
  line-height: 1.3;
  align-self: center;
}

.step-card__body p:last-child {
  margin-bottom: 0;
}

.step-card__button {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  display: block;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-dark));
  box-shadow: none;
  border: none;
  width: 100%;
  border-radius: 1em;
  padding: 1em 0;
  margin-top: 1em;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.step-card__button:hover {
  box-shadow: 0 0 20px 5px rgb(var(--color-primary), 0.5)
}

.step-card__accent .step-card__button {
  background-color: rgb(var(--color-dark));
  color: rgb(var(--color-primary));
}

.step-card__accent .step-card__button:hover {
  box-shadow: 0 0 40px 5px rgb(var(--color-dark), 0.3)
}

.section-additional {
  position: relative;
}

.section-additional:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: '';
  width: 100%;
  height: 90%;
  background-image: url('/img/additional.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.section-additional .content-container {
  z-index: 1;
  position: relative;
  padding-top: 4rem;
}

.additional__title {
  display: block;
  position: relative;
  font-size: var(--font-size-5xl);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  text-align: center;
  color: rgb(var(--color-white));
  line-height: 1;
  margin: 0 0 .3em;
}

.additional__subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: rgba(var(--color-white), .8);
  margin-bottom: 2.5rem;
}

.additional__items {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.additional__item {
  flex-basis: calc(50% - 1rem);
  background-color: rgb(var(--color-white));
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.additional__icon {
  width: 80px;
  height: 80px;
  background-color: rgb(var(--color-primary));
  border-radius: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.additional__item-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  text-transform: uppercase;
  margin: 2rem auto 1rem;
}

.additional__description {
  color: rgba(var(--color-dark), .5);
  margin-bottom: 2rem;
}

.additional__cta {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  display: block;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-dark));
  box-shadow: none;
  border: none;
  width: 100%;
  border-radius: 1em;
  padding: 1em 0;
  margin-top: 1em;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.additional__cta:hover {
  box-shadow: 0 0 20px 5px rgb(var(--color-primary), 0.5)
}

.section-feedback {
  margin-top: 5rem;
}

.feedback__yandex {
  max-width: 560px;
  height: 800px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.yandex__iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-sizing: border-box;
}

.yandex__link {
  box-sizing: border-box;
  text-decoration: none;
  color: #b3b3b3;
  font-size: 10px;
  font-family: YS Text, sans-serif;
  padding: 0 20px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-height: 14px;
  white-space: nowrap;
}

.feedback__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  line-height: 1.2em;
  margin: 0 0 .5em;
  text-align: center;
}

.feedback__subtitle {
  text-transform: uppercase;
  font-size: var(--font-size-xl);
  letter-spacing: .2em;
  color: rgba(var(--color-dark), .5);
  text-align: center;
  margin-bottom: 2em;
}

.section-ask {
  margin-top: 3rem;
  padding: 3rem 0;
  background-image: url('/img/header-background.png');
  background-position-x: right;
  background-size: cover;
}

.ask-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(16px) grayscale(20%);
  -webkit-backdrop-filter: blur(8px) grayscale(20%);
  text-align: center;
}

.ask__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  color: rgb(var(--color-white));
  margin-bottom: 1.5rem;
}

.ask__description {
  font-size: var(--font-size-2xl);
  color: rgba(var(--color-white), .6);
  margin-bottom: 2.5rem;
}

.ask__trigger {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trigger__text {
  text-align: left;
  font-size: var(--font-size-lg);
  flex-basis: 70%;
  color: rgba(var(--color-white), .6);
  margin-bottom: 1rem;
}

.trigger__icon {
  background: url('/img/trigger.svg') no-repeat;
  background-size: contain;
  flex-basis: 30%;
  background-position-y: bottom;
}
.ask__cta {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  display: block;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-dark));
  box-shadow: none;
  border: none;
  width: 100%;
  border-radius: 1em;
  padding: 1em 0;
  margin-top: 1em;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.ask__cta:hover {
  box-shadow: 0 0 20px 5px rgb(var(--color-primary), 0.5)
}

.section-contacts {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: auto;
  min-height: 800px;
}

.map {
  background-image: url('/img/location.png');
  background-size: cover;
  background-position: top;
}

.contacts {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-dark));
}

.contacts__wrapper {
  max-width: 600px;
  padding: 1rem;
}

.contact__links {
  background-color: rgb(var(--color-white));
  border-radius: 2em;
  padding: 2em;
  text-align: center;
}

.contacts__title {
  font-size: var(--font-size-2xl);
  text-transform: uppercase;
  margin-bottom: 1em;
}

.icon-link {
  background-color: rgb(var(--color-primary));
  border-radius: 1em;
  padding: 1em;
  position: relative;
  display: inline-block;
}

.visit {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin-top: 2.5rem;
}

.visit .right {
  text-align: right;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 3rem;
}

.contact__option {
  background-color: rgb(var(--color-white));
  border-radius: 1em;
  padding: 1em;
  display: flex;
  align-items: center;
  gap: 1em;
}

.option__icon {
  display: flex;
  background-color: rgb(var(--color-primary));
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  padding: 1em;
  border-radius: 1em;
}

.option__description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact__phone {
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  color: rgb(var(--color-dark));
  font-size: var(--font-size-xl);
  line-height: 1;
}

.option__working-hours {
  font-size: var(--font-size-sm);
  text-align: right;
  color: rgba(var(--color-dark), .5);
  line-height: 1;
}

.footer {
  padding: 0.5em;
}

.footer .content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer a {
  color: rgb(var(--color-dark));
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
}

.footer a:hover {
  font-weight: var(--font-weight-bold);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: rgba(var(--color-dark), .8);
}

.modal {
  position: fixed;
  top: 2.5%;
  left: 2.5%;
  max-width: 95%;
  background-color: rgb(var(--color-white));
  z-index: 9999;
  padding: 1rem;
  border-radius: 1.5rem;
}

.modal-container {
  position: relative;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgb(var(--color-light-gray));
  border-radius: 0.5em;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.times {
  display: block;
}

.times::after {
  display: block;
  position: relative;
  content: '';
  background: url('/img/times.svg');
  width: 1.5rem;
  height: 1.5rem;
}

.modal__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  text-align: center;
  text-transform: uppercase;
}

.modal__description {
  text-align: center;
  color: rgba(var(--color-dark), .5);
  max-width: 70%;
  margin: 0 auto 2rem;
}

.input-container {
  position: relative;
  display: block;
}

.form-containers {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}

.input {
  display: block;
  background-color: rgba(var(--color-dark), .1);
  padding: 2rem 1.5rem;
  font-size: var(--font-size-sm);
  width: 100%;
  border-radius: .5rem;
  border: 0;
  box-shadow: none;
  outline-color: rgba(var(--color-primary), .2);
}

.input + label {
  position: absolute;
  display: block;
  top: 2rem;
  left: 1.5rem;
  text-transform: uppercase;
  transform: translateY(-25%);
  transition: .3s ease-in-out;
  color: rgba(var(--color-dark), .7);
  font-size: var(--font-size-md);
}

.input:focus + label, .input:active + label, .input:not(:placeholder-shown) + label {
  top: 0;
  font-size: var(--font-size-sm);
}


.form__button {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  display: block;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-dark));
  box-shadow: none;
  border: none;
  width: 100%;
  border-radius: 1em;
  padding: 1em 0;
  margin-top: 1em;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.form__button:hover {
  box-shadow: 0 0 20px 5px rgb(var(--color-primary), 0.5)
}

.policy {
  text-align: center;
  color: rgba(var(--color-dark), .5);
}

.mobile-sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-dark));
  color: rgb(var(--color-white));
  z-index: 100000000;
  padding: 1.5rem;
}

.sidebar__contacts > .header__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}

.sidebar__contacts .header__info-block {
  width: 100%;
  background-color: rgba(var(--color-white), 0.1);
}

.sidebar__close {
  background-color: rgb(var(--color-primary));
  border-radius: 0.5em;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}

.sidebar__links a {
  text-decoration: none;
  color: rgba(var(--color-white), 0.85);
}

.sidebar__links > li {
  list-style-type: none;
}

.sidebar__button {
  width: 100%;
  display: block;
  align-self: flex-end;
}


[x-cloak] { display: none !important; }
