@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight/InterTight-Regular.eot");
  src: url("../fonts/InterTight/InterTight-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/InterTight/InterTight-Regular.woff2") format("woff2"), url("../fonts/InterTight/InterTight-Regular.woff") format("woff"), url("../fonts/InterTight/InterTight-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight/InterTight-SemiBold.eot");
  src: url("../fonts/InterTight/InterTight-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/InterTight/InterTight-SemiBold.woff2") format("woff2"), url("../fonts/InterTight/InterTight-SemiBold.woff") format("woff"), url("../fonts/InterTight/InterTight-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
button, input, textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #000;
}

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

a {
  transition: color 0.3s ease-in-out;
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

/*h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}*/
ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

svg {
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  background-color: #fff;
  font-size: 10px;
  overflow-y: auto;
}
html.block {
  overflow: hidden;
}

body, html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: clip;
  min-width: 30rem;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter Tight", sans-serif;
}

button {
  transition: all 0.3s ease-in-out;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page__container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.page__breadcrumbs .breadcrumbs {
  margin-bottom: 40px;
}
.page__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hide {
  display: none !important;
}

.overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  background-color: rgba(186, 186, 186, 0.26);
  backdrop-filter: blur(0.6rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.background-image {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.background-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
}
.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 1024px) {
  .background-image img {
    object-position: bottom;
  }
}

.container {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  border: 1px solid;
  border-radius: 6px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.button--color-blue {
  background-color: blue;
  border-color: blue;
  color: #fff;
}
.button--color-blue:hover {
  background-color: red;
  border-color: red;
}
.button--size-md {
  padding: 10px 20px;
  font-size: 18px;
}
.button__icon {
  display: block;
  width: 24px;
  height: 24px;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  padding-block: 0.5rem 1rem;
  background-color: rgba(83, 118, 83, 0.64);
  backdrop-filter: blur(1rem);
  z-index: 2;
  transition: background-color 0.3s ease-in-out;
}
.header__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 3rem;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header__logo:hover {
  transform: scale(1.05);
}
.header__logo svg {
  width: 9rem;
  height: 6rem;
  color: #fff;
}
@media (min-width: 768px) {
  .header__logo svg {
    width: 10rem;
    height: 7rem;
  }
}
.header__contacts {
  display: none;
}
@media (min-width: 768px) {
  .header__contacts {
    display: block;
  }
}
.header__contacts .phone {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.header__mobile-button {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #fff;
  width: 3rem;
  height: 3rem;
}
@media (min-width: 768px) {
  .header__mobile-button {
    display: none;
  }
}
.header__mobile-button .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header__mobile-button .dots span {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 100%;
  background-color: #065318;
}
.header__mobile-button .close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header__mobile-button .close svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #065318;
}

.header-mobile-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(83, 118, 83, 0.64);
  backdrop-filter: blur(1rem);
  padding-block: 8rem 4rem;
  border-radius: 0 0 2rem 2rem;
  transform: perspective(500px) rotateX(-90deg);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease, visibility 0.4s ease, background-color 0.3s ease-in-out;
}
.header-mobile-wrap__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-mobile-wrap__body > * {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}
.header-mobile-wrap__body > *:nth-child(1) {
  transition-delay: 0.1s;
}
.header-mobile-wrap__body > *:nth-child(2) {
  transition-delay: 0.2s;
}
.header-mobile-wrap__body > *:nth-child(3) {
  transition-delay: 0.3s;
}
.header-mobile-wrap__body > *:nth-child(4) {
  transition-delay: 0.4s;
}
.header-mobile-wrap__logo {
  margin-top: -4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-wrap__logo svg {
  width: 15rem;
  height: 10rem;
  color: #fff;
}
.header-mobile-wrap__address {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}
.header-mobile-wrap__description {
  margin-top: 3rem;
  text-align: center;
  max-width: 30rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.55;
}
.header-mobile-wrap__contacts {
  margin-top: 2rem;
}
.header-mobile-wrap__contacts a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.mobile-is-active {
  z-index: 51;
}
.mobile-is-active.header {
  background-color: rgb(97, 121, 102);
}
.mobile-is-active .header__logo {
  opacity: 0;
  visibility: hidden;
}
.mobile-is-active .header__mobile-button .dots {
  opacity: 0;
  visibility: hidden;
}
.mobile-is-active .header__mobile-button .close {
  opacity: 1;
  visibility: visible;
}
.mobile-is-active .header-mobile-wrap {
  background-color: rgb(97, 121, 102);
  transform: perspective(500px) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.mobile-is-active .header-mobile-wrap .header-mobile-wrap__body > * {
  opacity: 1;
  transform: translateY(0);
}

.main-about h1 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .main-about h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .main-about h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1250px) {
  .main-about h1 {
    font-size: 6rem;
  }
}
.main-about h2 {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .main-about h2 {
    font-size: 2.4rem;
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .main-about h2 {
    font-size: 3rem;
  }
}

.chat {
  display: flex;
  flex-direction: column;
  border-radius: 3rem 3rem 0 0;
  overflow: hidden;
  transform: translateY(30rem) scale(0.85);
  opacity: 0;
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.08);
  transition: height 100ms ease, transform 700ms ease-in-out, opacity 700ms ease-in-out;
}
@media (min-width: 550px) {
  .chat {
    background-image: none;
    background-color: rgba(156, 156, 156, 0.3);
    backdrop-filter: blur(1rem);
  }
}
.chat.shown {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.chat .chat-advantages {
  padding-block: 1.5rem;
  padding-inline: 1rem;
  background-color: #fff;
}
@media (min-width: 550px) {
  .chat .chat-advantages {
    padding-block: 3rem;
    padding-inline: 2rem;
  }
}
.chat .chat-advantages__list {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 1rem 0;
}
@media (min-width: 550px) {
  .chat .chat-advantages__list {
    gap: 2rem 0;
  }
}
@media (min-width: 768px) {
  .chat .chat-advantages__list {
    grid-template-columns: 0.75fr 0.47fr 0.95fr;
    gap: 0 2rem;
  }
}
.chat .chat-advantages__item {
  display: grid;
  align-items: center;
  grid-template-columns: 3rem 1fr;
  gap: 0 1rem;
  cursor: pointer;
}
@media (min-width: 550px) {
  .chat .chat-advantages__item {
    grid-template-columns: 4rem 1fr;
  }
}
.chat .chat-advantages__item:hover .chat-advantages__icon {
  transform: scale(1.05);
}
.chat .chat-advantages__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #065318;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 550px) {
  .chat .chat-advantages__icon {
    width: 4rem;
    height: 4rem;
  }
}
.chat .chat-advantages__icon svg {
  /*width: 2.2rem;
  height: 2.2rem;*/
  width: 70%;
  height: 70%;
  color: #fff;
}
@media (min-width: 550px) {
  .chat .chat-advantages__icon svg {
    /*width: 2.5rem;
    height: 2.5rem;*/
  }
}
.chat .chat-advantages__text {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  max-width: 25rem;
}
@media (min-width: 550px) {
  .chat .chat-advantages__text {
    font-size: 1.4rem;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .chat .chat-advantages__text {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
.chat .chat-messages {
  flex: 1;
  position: relative;
  background-image: url("../images/bg2.png");
  background-repeat: repeat;
  background-size: 40% auto;
  background-position: center;
}
.chat .chat-messages::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(0.05rem);
}
@media (min-width: 768px) {
  .chat .chat-messages {
    background: none;
  }
  .chat .chat-messages::before {
    display: none;
  }
}
.chat .chat-messages__inner {
  position: relative;
  padding-block: 3rem 5rem;
  padding-inline: 2rem;
  z-index: 1;
}

.chat-message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  transition: all 500ms ease;
}
.chat-message:not(:first-child) {
  margin-top: 2rem;
}
.chat-message.message--text .chat-message__inner {
  border-radius: 0.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 0.3rem 1rem rgba(38, 36, 60, 0.07);
  max-width: max-content;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  background-color: #fff;
}
@media (min-width: 550px) {
  .chat-message.message--text .chat-message__inner {
    width: 80%;
  }
}
.chat-message.message--user {
  margin-left: auto;
  display: block;
  max-width: max-content;
}
.chat-message.message--user .chat-message__inner {
  border-radius: 1.5rem 1.5rem 0.2rem 1.5rem;
  box-shadow: 0 0.3rem 1rem rgba(38, 36, 60, 0.07);
  max-width: 55rem;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  background-color: #fff;
}
.chat-message.message--user .chat-message__date {
  text-align: end;
}
.chat-message.message--radio .chat-message__text {
  border-radius: 0.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 0.3rem 1rem rgba(38, 36, 60, 0.07);
  max-width: max-content;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  background-color: #fff;
}
.chat-message.message--radio .chat-message__buttons {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  max-width: 45rem;
}
.chat-message.message--radio .chat-message__buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 3rem;
  border-radius: 1.6rem;
  font-size: 1.5rem;
  background-color: #fff;
  border: 2px solid #065318;
  line-height: 1;
  color: #065318;
  font-weight: 600;
}
.chat-message.message--radio .chat-message__buttons button:hover {
  background-color: #07681e;
  border-color: #07681e;
  color: #fff;
}
.chat-message.message--radio .chat-message__buttons button.active {
  color: #fff;
  background-color: #084316;
  border-color: #084316;
}
.chat-message.message--radio .chat-message__date {
  display: none;
}
.chat-message.message--cards .chat-message__text {
  border-radius: 0.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 0.3rem 1rem rgba(38, 36, 60, 0.07);
  max-width: max-content;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  background-color: #fff;
}
.chat-message.message--cards .chat-message__cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.4rem;
  max-width: 85%;
}
.chat-message.message--cards .chat-message__buttons {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  max-width: 45rem;
}
.chat-message.message--cards .chat-message__buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 3rem;
  border-radius: 1.6rem;
  font-size: 1.5rem;
  background-color: #fff;
  border: 2px solid #065318;
  line-height: 1;
  color: #065318;
  font-weight: 600;
}
.chat-message.message--cards .chat-message__buttons button:hover {
  background-color: #07681e;
  border-color: #07681e;
  color: #fff;
}
.chat-message.message--cards .chat-message__buttons button.active {
  color: #fff;
  background-color: #084316;
  border-color: #084316;
}
.chat-message.message--cards .chat-message__date {
  display: none;
}
.chat-message.message--phone .chat-message__text {
  border-radius: 0.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 0.3rem 1rem rgba(38, 36, 60, 0.07);
  max-width: max-content;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  background-color: #fff;
}
.chat-message.message--phone .chat-message__form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
}
.chat-message.message--phone .chat-message__form input {
  border-color: #fff;
}
.chat-message.message--phone .chat-message__form .checkbox .checkbox__box {
  border-color: #fff;
}
.chat-message.message--phone .chat-message__form .checkbox span {
  color: #fff;
}
.chat-message.message--phone .chat-message__form .checkbox span a {
  color: #fff;
}
.chat-message.message--phone .chat-message__date {
  display: none;
}
.chat-message__buttons, .chat-message__cards {
  transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.chat-message__inner {
  display: block;
}
.chat-message__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background-image: url("../images/bot.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: auto;
}
@media (min-width: 768px) {
  .chat-message__icon {
    width: 6rem;
    height: 6rem;
  }
}
.chat-message__text {
  font-size: 1.6rem;
  line-height: 1.55;
  color: #000;
}
.chat-message__date {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #065318;
}

@keyframes dots {
  0%, 20% {
    content: ".";
    opacity: 0.4;
  }
  40% {
    content: "..";
    opacity: 0.7;
  }
  60%, 100% {
    content: "...";
    opacity: 1;
  }
}
.chat-message[data-step="2"] .chat-message__icon, .chat-message[data-step="3"] .chat-message__icon, .chat-message[data-step="5"] .chat-message__icon, .chat-message[data-step="8"] .chat-message__icon, .chat-message[data-step="9"] .chat-message__icon {
  opacity: 0;
}

.chat-card {
  border-radius: 1.6rem;
  background-color: #fff;
  border: 2px solid #065318;
  padding: 2rem 1.5rem;
  cursor: pointer;
}
.chat-card__img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: center;
}
.chat-card__content {
  margin-top: 1.5rem;
}
.chat-card__title {
  color: #065318;
  font-size: 1.8rem;
  line-height: 1.35;
  font-weight: 600;
}
.chat-message-typing {
  margin-top: 2rem;
  margin-left: 8rem;
}
.chat-message-typing .typing {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  color: #065318;
  font-style: italic;
}
@media (min-width: 768px) {
  .chat-message-typing .typing {
    color: #fff;
  }
}
.chat-message-typing .dots {
  display: inline-block;
  width: 3.6rem;
  text-align: left;
}
.chat-message-typing .dots::after {
  content: ".";
  animation: dots 1.5s steps(5, end) infinite;
}

.breadcrumbs {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /*margin-top: 10px;
  margin-bottom: 16px;*/
}
@media (min-width: 768px) {
  .breadcrumbs {
    /*margin-top: 34px;
    margin-bottom: 60px;*/
  }
}
.breadcrumbs__back-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  margin-block: auto;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 13px;
  color: #000;
  opacity: 0;
  visibility: hidden;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.breadcrumbs__back-link:hover .icon {
  color: blue;
}
.breadcrumbs__back-link-icon {
  display: block;
  width: 13px;
  height: 9px;
  transform: rotate(90deg);
  color: #575797;
}
.breadcrumbs__list-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.breadcrumbs__list-box::before, .breadcrumbs__list-box::after {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 50px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  content: "";
  transition: opacity 0.3s ease-in-out;
}
.breadcrumbs__list-box::before {
  left: 0;
  width: 70px;
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.6));
}
.breadcrumbs__list-box::after {
  right: 0;
  background-image: linear-gradient(to left, #fff, transparent);
}
.breadcrumbs--has-right-overflow .breadcrumbs__list-box::after {
  opacity: 1;
}
.breadcrumbs--has-left-overflow .breadcrumbs__list-box::before {
  opacity: 1;
}
.breadcrumbs__list {
  position: relative;
  z-index: 0;
  display: flex;
  list-style-type: none;
  font-weight: 450;
  font-size: 13px;
  line-height: 1.5;
  color: #a3a3a3;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumbs__list {
    font-size: 13px;
  }
}
.breadcrumbs__item {
  display: flex;
}
.breadcrumbs__link {
  color: inherit;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}
.breadcrumbs__link:hover {
  color: blue;
}
.breadcrumbs__current {
  white-space: nowrap;
}
.breadcrumbs__devider {
  margin: 0 12px;
}
.breadcrumbs__devider::before {
  content: "—";
}
.breadcrumbs.breadcrumbs--has-left-overflow .breadcrumbs__back-link {
  opacity: 1;
  visibility: visible;
}

.checkbox {
  display: inline-flex;
  position: relative;
}
.checkbox__input {
  display: none;
}
.checkbox__label {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 22px;
  color: #626A76;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease-in-out;
}
.checkbox__label::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: block;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.401 2.9996L12.9861 4.58475L5.57126 11.9996L1 7.42844L2.58509 5.8433L5.57126 8.82937L11.401 2.9996Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border: 1px solid rgba(98, 106, 118, 0.24);
  content: "";
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.checkbox__label:hover {
  color: #000;
}
.checkbox__label:hover::before {
  border-color: blue;
}
.checkbox__input:checked + .checkbox__label::before, .checkbox__input:checked + .checkbox__label:hover::before {
  background-color: blue;
  color: #000;
}

.radio {
  display: inline-flex;
}
.radio__input {
  display: none;
}
.radio__label {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 22px;
  color: #626A76;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease-in-out;
}
.radio__label::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: block;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.401 2.9996L12.9861 4.58475L5.57126 11.9996L1 7.42844L2.58509 5.8433L5.57126 8.82937L11.401 2.9996Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border: 1px solid rgba(98, 106, 118, 0.24);
  border-radius: 20px;
  content: "";
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.radio__label:hover {
  color: #000;
}
.radio__label:hover::before {
  border-color: blue;
}
.radio__input:checked + .radio__label::before, .radio__input:checked + .radio__label:hover::before {
  background-color: blue;
  color: #000;
}

.modal {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s ease-in-out;
}
.modal--show {
  opacity: 1;
}
.modal__window {
  opacity: 0;
  transform: translateY(20%);
  position: relative;
  width: 100%;
  max-width: calc(100% - 30px);
  margin: auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 20px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .modal__window {
    max-width: 584px;
    padding: 50px;
  }
}
.modal--show .modal__window {
  opacity: 1;
  transform: none;
}
.modal__title {
  margin-bottom: 16px;
  padding-right: 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #000;
}
@media (min-width: 1024px) {
  .modal__title {
    margin-bottom: 20px;
    padding-right: 0;
    font-size: 40px;
    line-height: 1;
  }
}
.modal__text {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: #000;
}
@media (min-width: 1024px) {
  .modal__text {
    margin-bottom: 40px;
    font-size: 18px;
  }
}
.modal__close {
  position: absolute;
  top: -4.5rem;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: none;
  background-color: #fff;
}
.modal__close:hover svg {
  transform: scale(1.1);
  color: #000;
}
.modal__close svg {
  width: 2rem;
  height: 2rem;
  color: #065318;
}
@media (min-width: 550px) {
  .modal__close {
    top: -3rem;
    right: -3rem;
  }
}

.form__fieldset {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.form__input {
  background-color: #fff;
  padding: 1.4rem 2rem;
  border-radius: 2.4rem;
  border: 1px solid #065318;
  font-size: 1.8rem;
  font-weight: 600;
  transition: border-color 0.3s ease-in-out;
}
.form__input::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
}
.form__input.error {
  border-color: red;
}
.form__submit {
  margin-top: 1rem;
  background-color: #065318;
  padding: 1.2rem 2rem;
  border-radius: 2.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  max-width: 50%;
}
.form__submit:hover {
  background-color: #07681e;
}
.form__submit:focus {
  background-color: #084316;
}
.form__agree.checkbox {
  align-items: flex-start;
  gap: 1rem;
}
.form__agree.checkbox input {
  flex: 0 0 auto;
  position: absolute;
  opacity: 0;
  width: 2rem;
  height: 2rem;
}
.form__agree.checkbox .checkbox__box {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  width: 2rem;
  height: 2rem;
  border: 1px solid #065318;
  background-color: transparent;
  border-radius: 0.4rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.form__agree.checkbox .checkbox__box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.8rem;
  height: 2rem;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.401 2.9996L12.9861 4.58475L5.57126 11.9996L1 7.42844L2.58509 5.8433L5.57126 8.82937L11.401 2.9996Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.4rem 1.4rem;
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.form__agree.checkbox input:checked + .checkbox__box {
  background-color: #065318;
  border-color: #065318;
}
.form__agree.checkbox input:checked + .checkbox__box::before {
  opacity: 1;
}
.form__agree.checkbox span {
  line-height: 1.35;
  color: #065318;
  font-size: 1.3rem;
}
.form__agree.checkbox span a {
  color: #065318;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.form__agree.checkbox.error .checkbox__box {
  border-color: red;
}
.form__agree.checkbox.error a {
  color: red;
}

.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-main__inner {
  flex: 1;
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 992px) {
  .page-main__inner {
    max-width: 85rem;
  }
}
.page-main .page-main-about {
  padding-block: 6rem;
  padding-inline: 2rem;
}
@media (min-width: 550px) {
  .page-main .page-main-about {
    padding-inline: 0;
  }
}
@media (min-width: 768px) {
  .page-main .page-main-about {
    padding-block: 6rem 4rem;
  }
}