/*!********************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/structure/Path/path.scss ***!
  \********************************************************************************************************************************/
.path {
  position: absolute;
  right: calc((100vw - 1220px) / 2);
  bottom: 0;
  transform: translate(0, calc(100% + 48px));
}
@media screen and (max-width: 1023px) {
  .path {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 0);
    border-bottom: 1px solid var(--color-gray-2);
  }
}
@media screen and (max-width: 1023px) {
  .path__list {
    display: flex;
    gap: 24px;
    padding: 0 50px 24px;
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  .path__list {
    padding: 0 20px 24px;
  }
}
.path__item {
  display: flex;
  align-items: center;
}
.path__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .path__item:not(:last-child) {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.path__item.js-active .path__circle {
  color: var(--color-white);
  background-color: var(--color-gray-1);
  border: 1px solid var(--color-gray-1);
}
.path__item.js-active .path__name {
  color: var(--color-black-1);
}
.path__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding-top: 5px;
  margin-right: 12px;
  font-size: 20px;
  font-weight: bold;
  line-height: 100%;
  text-align: center;
  color: var(--color-black-rgba50);
  border: 1px solid var(--color-black-rgba50);
  border-radius: 50%;
}
@media screen and (max-width: 1023px) {
  .path__circle {
    flex-shrink: 0;
  }
}
.path__name {
  font-size: 20px;
  line-height: 100%;
  color: var(--color-black-rgba50);
}
@media screen and (max-width: 1023px) {
  .path__name {
    flex-shrink: 0;
  }
}
/*!*******************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./layouts/mainLayout/mainLayout.scss ***!
  \*******************************************************************************************************************************/
.header {
  position: relative;
  margin-bottom: 48px;
}
.header__content {
  padding: 24px 0;
}
.header__content--border {
  border-bottom: 1px solid var(--color-gray-2);
}
.header__logo {
  fill: var(--color-green-1);
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 222px;
    height: auto;
  }
}
.header__text {
  padding: 12px 0;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  color: #00b2df;
}

.grid {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 200px;
}
.grid__main {
  position: relative;
}
.grid__path {
  position: absolute;
  right: calc((100vw - 1220px) / 2);
  top: 0;
}

.wrapper {
  width: 100%;
  max-width: 1220px;
  padding: 0 50px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-primery-color);
}
.title--fs20 {
  font-size: 20px;
}
.title--fs18 {
  font-size: 18px;
}
.title--declaration {
  margin-bottom: 56px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  text-align: center;
  color: var(--text-primery-color);
}

.subtitle {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-black-rgba80);
}
.subtitle--form {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-gray-1);
}
@media screen and (max-width: 767px) {
  .subtitle--form {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 18px;
  }
}

.description {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-black-rgba80);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  background-color: var(--color-green-1);
  border: 1px solid var(--color-green-1);
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.5s;
  -webkit-appearance: none;
}
.button__flex {
  display: flex;
  align-items: center;
}
.button__el:not(:last-child) {
  margin-right: 8px;
}
.button__icon {
  fill: #ffffff;
  transition: 0.5s;
}
.button:hover {
  color: var(--color-green-1);
  background-color: #ffffff;
}
.button:hover .button__icon {
  fill: var(--color-green-1);
}
.button:active {
  opacity: 0.5;
  transition: 0.1s;
}
.button:focus {
  opacity: 0.9;
  transition: 0.1s;
}
.button.disabled {
  color: var(--color-black-rgba40);
  background-color: var(--color-gray-3);
  border: 1px solid var(--color-gray-3);
  pointer-events: none;
}
.button.disabled .button__icon {
  fill: var(--color-black-rgba40);
}
.button--w416 {
  width: 100%;
  max-width: 416px;
}
.button--w740 {
  width: 100%;
  max-width: 740px;
}

/*# sourceMappingURL=mainLayout.css.map*/