/*!***************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/Form/form.scss ***!
  \***************************************************************************************************************************/
.form__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form__el {
  width: 48%;
}
.form__el:not(:last-child) {
  margin-bottom: 24px;
}
.form__buttons {
  display: flex;
  justify-content: space-between;
}
.form__group {
  display: flex;
  gap: 12px;
}
.form__error {
  display: none;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 140%;
  color: var(--error-primery-color);
}
.form__error--mt16 {
  margin-top: 16px;
}
.form.js-form-hidden {
  display: none;
}
.form.w70 {
  width: 70%;
}
@media screen and (max-width: 1023px) {
  .form.w70 {
    width: 100%;
  }
}
/*!***************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/Cell/cell.scss ***!
  \***************************************************************************************************************************/
.cell--mb24 {
  margin-bottom: 24px;
}
.cell--mr12 {
  margin-right: 12px;
}
.cell__name {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--text-primery-color);
  background-color: transparent;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .cell__name {
    font-size: 14px;
  }
}
.cell__title {
  grid-column: span 3;
}
.cell__content {
  position: relative;
}
.cell__data {
  position: relative;
  padding: 14px 14px 12px;
  border: 1px solid var(--color-gray-1);
  background-color: var(--color-white);
  border-radius: 4px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .cell__data {
    padding: 12px 16px 10px;
  }
}
.cell__data--green {
  border-color: var(--color-green-1);
}
.cell__error-message {
  margin-top: 6px;
  font-size: 14px;
  line-height: 140%;
  color: var(--error-primery-color);
  display: none;
}
.cell__identificator {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.cell__icon {
  display: block;
}
.cell__is-required {
  position: relative;
}
.cell__is-required:hover .cell__is-required-info {
  opacity: 1;
  visibility: visible;
}
.cell__is-required-info {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(105%, -50%);
  opacity: 0;
  visibility: hidden;
  padding: 12px;
  color: #333f48;
  font-size: 16px;
  font-style: normal;
  line-height: 120%;
  border-radius: 12px;
  border: 1px solid #fbfbfb;
  background: #e5e5e5;
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .cell__is-required-info {
    font-size: 14px;
    padding: 8px;
    top: auto;
    bottom: 0;
    transform: translate(20%, 110%);
  }
}
.cell__is-required-icon {
  display: block;
  cursor: pointer;
}
.cell.js-focus .cell__data {
  border-color: var(--color-green-1);
}
.cell.js-cell-error .cell__data {
  border-color: var(--error-primery-color);
}
.cell.js-cell-disabled .cell__data {
  border-color: var(--color-gray-3);
  pointer-events: none;
  cursor: not-allowed;
}
.cell.js-cell-disabled .cell-input {
  color: var(--color-black-rgba60);
}
.cell.js-cell-hidden {
  display: none;
}
.cell.js-cell-readonly {
  pointer-events: none;
}

.hidden {
  display: none;
}
/*!*************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/CellInput/cellInput.scss ***!
  \*************************************************************************************************************************************/
.cell-input {
  width: 100%;
  padding: 0;
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  border: none;
  outline: none;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .cell-input {
    font-size: 14px;
  }
}
.cell-input::placeholder {
  font-size: 17px;
  line-height: 140%;
  color: var(--color-black-rgba60);
}
@media screen and (max-width: 767px) {
  .cell-input::placeholder {
    font-size: 14px;
  }
}
/*!***************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/ParamRadioButton/paramRadioButton.scss ***!
  \***************************************************************************************************************************************************/
.param-radiobutton {
  display: inline-flex;
  flex-direction: column;
}
.param-radiobutton__list {
  display: flex;
  background-color: var(--color-white);
  border: 1px solid var(--color-black-rgba30);
  border-radius: 4px;
}
.param-radiobutton__name {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 9px 16px 7px;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black-rgba80);
  cursor: pointer;
  transition: 0.5s;
}
.param-radiobutton__name:hover {
  color: var(--color-green-1);
}
.param-radiobutton__input:checked + .param-radiobutton__name {
  color: var(--color-white);
  background-color: var(--color-green-1);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}
/*!*****************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/RadioButton/radioButton.scss ***!
  \*****************************************************************************************************************************************/
.radiobutton {
  --color-white: #ffffff;
}
.radiobutton__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.radiobutton__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.radiobutton__window {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-green-1);
}
.radiobutton__circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-green-1);
  transform: scale(0);
  transition: 0.5s;
}
.radiobutton__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white);
}
.radiobutton__name {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 17px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: var(--text-primery-color);
  cursor: pointer;
}
.radiobutton__text {
  display: flex;
  align-items: center;
}
.radiobutton__input:checked + .radiobutton__name .radiobutton__window {
  border-color: transparent;
}
.radiobutton__input:checked + .radiobutton__name .radiobutton__circle {
  transform: scale(1);
}
/*!***************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/CellSelect/cellSelect.scss ***!
  \***************************************************************************************************************************************/
.cell-select {
  position: relative;
  width: 100%;
  z-index: 10;
}
.cell-select__header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cell-select__current {
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.32, 0, 0.67, 0);
}
@media screen and (max-width: 767px) {
  .cell-select__current {
    font-size: 14px;
  }
}
.cell-select__icon {
  width: 12px;
  height: auto;
  fill: var(--color-black-rgba80);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .cell-select__icon {
    width: 14px;
    height: auto;
  }
}
.cell-select__body-icon {
  opacity: 1;
  fill: var(--color-gray-1);
  transition: 0.2s;
}
.cell-select__body {
  display: none;
  position: absolute;
  left: 50%;
  right: 0;
  top: calc(100% + 12px);
  width: calc(100% + 30px);
  max-height: 300px;
  overflow-y: auto;
  transform: translate(-50%, 0);
  background-color: #ffffff;
  border: 1px solid var(--color-gray-1);
  border-radius: 0 0 4px 4px;
}
.cell-select.is-active {
  z-index: 11;
}
.cell-select.is-active .cell-select__icon {
  fill: var(--color-green-1);
  transform: rotate(180deg);
}
.cell-select__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  color: var(--color-gray-1);
  transition: color 0.5s;
}
@media screen and (max-width: 767px) {
  .cell-select__item {
    font-size: 14px;
  }
}
.cell-select__item:hover {
  background-color: var(--color-green-2);
}
.cell-select__item.is-chosen {
  color: var(--text-primery-color);
}
.cell-select__item.is-chosen .cell-select__body-icon {
  fill: var(--text-primery-color);
  opacity: 1;
}
.cell-select__body-icon {
  opacity: 0;
}
/*!*********************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/ParamCheckbox/paramCheckbox.scss ***!
  \*********************************************************************************************************************************************/
.param-checkbox {
  --text-primery-color: #003140;
  --color-blue: #00b2df;
  --color-gray: #c4c4c4;
  --color-white: #ffffff;
}
.param-checkbox__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.param-checkbox__item {
  margin-bottom: 12px;
}
.param-checkbox__item:not(:last-child) {
  margin-right: 12px;
}
.param-checkbox__label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--color-gray);
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.5s, padding-left 0.5s;
}
.param-checkbox__label:hover {
  opacity: 0.7;
}
.param-checkbox__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  margin-right: 10px;
  fill: var(--color-blue);
  transition: opacity 0.5s;
}
.param-checkbox__name {
  font-size: 16px;
  line-height: 100%;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .param-checkbox__name {
    font-size: 14px;
  }
}
.param-checkbox__icon {
  fill: var(--color-white);
}
.param-checkbox__input:checked + .param-checkbox__label {
  padding-left: 30px;
  background-color: var(--color-blue);
}
.param-checkbox__input:checked + .param-checkbox__label .param-checkbox__icon {
  opacity: 1;
}
.param-checkbox__input:checked + .param-checkbox__label .param-checkbox__name {
  color: var(--color-white);
}
/*!***********************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/Checkbox/сheckbox.scss ***!
  \***********************************************************************************************************************************/
.checkbox {
  --text-primery-color: #003140;
  --error-primery-color: #e64646;
  --color-blue: #00b2df;
}
.checkbox--margin {
  margin-bottom: 24px;
}
.checkbox__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.checkbox__item--half {
  width: 50%;
  margin-bottom: 30px;
}
.checkbox__window {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: transparent;
  border: 1px solid var(--color-gray-1);
  border-radius: 1px;
}
.checkbox__icon-mark {
  fill: var(--color-white);
  opacity: 0;
  transition: 0.5s;
}
.checkbox__name {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: var(--text-primery-color);
  cursor: pointer;
}
.checkbox__name--info {
  margin-right: 12px;
  min-width: 126px;
}
.checkbox__content {
  padding-top: 2px;
}
.checkbox__input:checked + .checkbox__name .checkbox__window {
  background: var(--color-green-1);
  border: 1px solid var(--color-green-1);
}
.checkbox__input:checked + .checkbox__name .checkbox__icon-mark {
  opacity: 1;
}
.checkbox__link {
  font-size: 12px;
  line-height: 140%;
  color: var(--text-primery-color);
  text-decoration: none;
  border-bottom: 1px solid var(--text-primery-color);
  transition: 0.5s;
}
.checkbox__link:hover {
  border-bottom: 1px solid transparent;
}
.checkbox__text--margin {
  margin-right: 5px;
}
.checkbox__error-message {
  display: none;
  margin-top: 5px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04em;
  color: var(--error-primery-color);
}
.checkbox.js-checkbox-hidden {
  display: none;
}
.checkbox--circle .checkbox__window {
  position: relative;
  border-radius: 50%;
}
.checkbox--circle .checkbox__window::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.checkbox--circle .checkbox__icon-mark {
  display: none;
}
.checkbox--circle .checkbox__input:checked + .checkbox__name .checkbox__window::before {
  transform: translate(-50%, -50%) scale(1);
}
/*!***********************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/CellFias/cellFias.scss ***!
  \***********************************************************************************************************************************/
.cell-fias {
  position: relative;
  width: 100%;
  z-index: 10;
}
.cell-fias__header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cell-fias__current {
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.32, 0, 0.67, 0);
}
@media screen and (max-width: 767px) {
  .cell-fias__current {
    font-size: 14px;
  }
}
.cell-fias__icon {
  width: 12px;
  height: auto;
  fill: var(--color-black-rgba80);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .cell-fias__icon {
    width: 14px;
    height: auto;
  }
}
.cell-fias__body-icon {
  opacity: 1;
  fill: var(--color-gray-1);
  transition: 0.2s;
}
.cell-fias__body {
  display: none;
  position: absolute;
  left: 50%;
  right: 0;
  top: calc(100% + 12px);
  width: calc(100% + 30px);
  max-height: 300px;
  overflow-y: auto;
  transform: translate(-50%, 0);
  background-color: #ffffff;
  border: 1px solid var(--color-gray-1);
  border-radius: 0 0 4px 4px;
}
.cell-fias.is-active {
  z-index: 11;
}
.cell-fias.is-active .cell-select__icon {
  fill: var(--color-green-1);
  transform: rotate(180deg);
}
.cell-fias__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  color: var(--color-gray-1);
  transition: color 0.5s;
}
@media screen and (max-width: 767px) {
  .cell-fias__item {
    font-size: 14px;
  }
}
.cell-fias__item:hover {
  background-color: var(--color-green-2);
}
.cell-fias__item.is-chosen {
  color: var(--text-primery-color);
}
.cell-fias__item.is-chosen .cell-select__body-icon {
  fill: var(--text-primery-color);
  opacity: 1;
}
.cell-fias__body-icon {
  opacity: 0;
}
.cell-fias__input {
  width: 100%;
  padding: 0;
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  border: none;
  outline: none;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .cell-fias__input {
    font-size: 14px;
  }
}
.cell-fias__input::placeholder {
  font-size: 17px;
  line-height: 140%;
  color: var(--color-black-rgba60);
}
@media screen and (max-width: 767px) {
  .cell-fias__input::placeholder {
    font-size: 14px;
  }
}
/*!*******************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/CellTextarea/cellTextarea.scss ***!
  \*******************************************************************************************************************************************/
.cell-textarea {
  width: 100%;
  padding: 0;
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  border: none;
  outline: none;
  background-color: transparent;
  resize: none;
}
@media screen and (max-width: 767px) {
  .cell-textarea {
    font-size: 14px;
  }
}
.cell-textarea::placeholder {
  font-size: 17px;
  line-height: 140%;
  color: var(--color-black-rgba60);
}
@media screen and (max-width: 767px) {
  .cell-textarea::placeholder {
    font-size: 14px;
  }
}
/*!*******************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/Loader/loader.scss ***!
  \*******************************************************************************************************************************/
.loader {
  width: 100%;
}
.loader__list {
  margin-bottom: 12px;
}
.loader__name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 12px;
  border: 2px dashed var(--color-black-rgba80);
  border-radius: 10px;
  transition: 0.5s;
  cursor: pointer;
}
.loader__name--progress {
  padding: 5px 5px;
  border: 1px solid #e0e4e8;
  box-shadow: 0 5px 10px #9b9b9b;
}
.loader__process {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.loader__process--active {
  display: flex;
}
.loader__img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #e0e4e8;
  background-repeat: no-repeat;
  background-size: cover;
}
.loader__box {
  flex-grow: 1;
  margin-right: 10px;
  overflow: hidden;
}
.loader__file-name {
  width: 100%;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 16px;
  color: var(--text-primery-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.loader__close {
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.5s;
}
.loader__close:hover {
  opacity: 0.6;
}
.loader__size {
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-gray-1);
}
.loader__note {
  font-size: 14px;
  color: var(--color-gray-1);
}
.loader__item:not(:last-child) {
  margin-bottom: 12px;
}
.loader__item.loaded .loader__start {
  display: none;
}
.loader__item.loaded .loader__process {
  display: flex;
}
/*!***********************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/RegionCellFias/regionCellFias.scss ***!
  \***********************************************************************************************************************************************/
.cell-fias {
  position: relative;
  width: 100%;
  z-index: 10;
}
.cell-fias__header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cell-fias__current {
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.32, 0, 0.67, 0);
}
@media screen and (max-width: 767px) {
  .cell-fias__current {
    font-size: 14px;
  }
}
.cell-fias__icon {
  width: 12px;
  height: auto;
  fill: var(--color-black-rgba80);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .cell-fias__icon {
    width: 14px;
    height: auto;
  }
}
.cell-fias__body-icon {
  opacity: 1;
  fill: var(--color-gray-1);
  transition: 0.2s;
}
.cell-fias__body {
  display: none;
  position: absolute;
  left: 50%;
  right: 0;
  top: calc(100% + 12px);
  width: calc(100% + 30px);
  max-height: 300px;
  overflow-y: auto;
  transform: translate(-50%, 0);
  background-color: #ffffff;
  border: 1px solid var(--color-gray-1);
  border-radius: 0 0 4px 4px;
}
.cell-fias.is-active {
  z-index: 11;
}
.cell-fias.is-active .cell-select__icon {
  fill: var(--color-green-1);
  transform: rotate(180deg);
}
.cell-fias__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  color: var(--color-gray-1);
  transition: color 0.5s;
}
@media screen and (max-width: 767px) {
  .cell-fias__item {
    font-size: 14px;
  }
}
.cell-fias__item:hover {
  background-color: var(--color-green-2);
}
.cell-fias__item.is-chosen {
  color: var(--text-primery-color);
}
.cell-fias__item.is-chosen .cell-select__body-icon {
  fill: var(--text-primery-color);
  opacity: 1;
}
.cell-fias__body-icon {
  opacity: 0;
}
.cell-fias__input {
  width: 100%;
  padding: 0;
  font-size: 17px;
  line-height: 140%;
  color: var(--text-primery-color);
  border: none;
  outline: none;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .cell-fias__input {
    font-size: 14px;
  }
}
.cell-fias__input::placeholder {
  font-size: 17px;
  line-height: 140%;
  color: var(--color-black-rgba60);
}
@media screen and (max-width: 767px) {
  .cell-fias__input::placeholder {
    font-size: 14px;
  }
}
/*!********************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/other/Policy/policy.scss ***!
  \********************************************************************************************************************************/
.policy {
  display: block;
}
.policy__title {
  margin-bottom: 32px;
}
.policy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .policy__list {
    grid-template-columns: 1fr;
  }
}
.policy__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 188px;
  padding: 24px 40px;
  border: 1px solid var(--color-gray-1);
  border-radius: 4px;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .policy__card {
    padding: 24px 16px;
  }
}
.policy__card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.policy__card.active {
  border-color: var(--color-green-1);
}
.policy__card-name {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 21px;
}
.policy__card-date {
  font-size: 13px;
  line-height: 15px;
  color: var(--color-green-1);
}
/*!*****************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./pages/main/main.scss ***!
  \*****************************************************************************************************************/
.start {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.start__img-box {
  background: linear-gradient(-10deg, #003140 50%, #ffffff 50%);
}
.start__img {
  margin: 0 auto;
}
.start__block {
  flex-grow: 1;
  width: 100%;
  background-color: #003140;
}

.icon {
  fill: var(--icon-primery-color);
}
.icon--black {
  fill: var(--color-black);
}

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