@font-face {
  font-weight: normal;
  font-family: 'Basis Grotesque Pro';
  font-style: normal;
  src: url('../../fonts/BasisGrotesquePro-Regular.ttf') format('truetype'),
    url('../../fonts/BasisGrotesquePro-Regular.woff') format('woff'),
    url('../../fonts/BasisGrotesquePro-Regular.woff2') format('woff2');
}

@font-face {
  font-weight: 500;
  font-family: 'Basis Grotesque Pro';
  font-style: normal;
  src: url('../../fonts/BasisGrotesquePro-Medium.ttf') format('truetype'),
    url('../../fonts/BasisGrotesquePro-Medium.woff') format('woff'),
    url('../../fonts/BasisGrotesquePro-Medium.woff2') format('woff2');
}

@font-face {
  font-weight: 300;
  font-family: 'Basis Grotesque Pro';
  font-style: normal;
  src: url('../../fonts/BasisGrotesquePro-Light.ttf') format('truetype'),
    url('../../fonts/BasisGrotesquePro-Light.woff') format('woff'),
    url('../../fonts/BasisGrotesquePro-Light.woff2') format('woff2');
}

@font-face {
  font-weight: bold;
  font-family: 'Basis Grotesque Pro';
  font-style: normal;
  src: url('../../fonts/BasisGrotesquePro-Bold.ttf') format('truetype'),
    url('../../fonts/BasisGrotesquePro-Bold.woff') format('woff'),
    url('../../fonts/BasisGrotesquePro-Bold.woff2') format('woff2');
}

:root {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  /*colors*/
  --white-90: rgba(255, 255, 255, 0.9);
  --white-25: rgba(255, 255, 255, 0.25);
  --white-10: rgba(255, 255, 255, 0.1);
  --secondary-bg: #F4F5F7;
  --secondary-text: #101828;
  --secondary-divider: #D9DCE4;
  --orange: #FFA307;
  --orange-hover: #FFBE08;
  --grey: #797E8B;
  --almost-white: #FFFFFD;
  --grey-bg: #E5E5E5;
  --dark-grey-bg: #1E1E1E;
  --night: #343434;
  --white-grey-text: #A5ACBD;
  --purple: #8B63FE;
  --grey-text: #A5ACBD;
  --footer-bg: #1D1D21;
  --footer-bg-hover: #2C2C32;
  --sky: #40A2FF;
  --red-orange: #FF5E2D;
  --error: #FF0C0CFF;
  --mobile-menu-bg: #1D1D21;
}
*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background-color: var(--secondary-bg);
  font-weight: normal;
  font-family: "Basis Grotesque Pro";
  overflow-x: hidden;
}

h1 {
  font-size: 48px;
  line-height: 60px;
}

h2 {
  font-size: 42px;
  line-height: 56px;
  font-weight: bold;  
}

h3 {
  font-size: 36px;
  line-height: 48px;
  font-weight: bold;
}

h4 {
  font-size: 22px;
  line-height: 30px;
}

h5.ls {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3px;
}

a {
  text-decoration: none;
}
button a {
  color: var(--white-90);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.mt16 {
  margin-top: 16px;
}

.container {
  margin: 0 5%;
}

.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

header {
  height: 76px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--secondary-bg);
  z-index: 3;
}

header.dark {
  background-color: var(--mobile-menu-bg);
  color: white;
  border-bottom: 1px solid var(--white-10);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.header__nav {
  cursor: pointer;
}

.header__nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  background: #fff;
  padding: 16px 0;
  line-height: 31px;
  -webkit-box-shadow: 0 0 1px rgb(28 41 61 / 10%), 0 36px 36px rgb(28 41 61 / 10%);
  box-shadow: 0 0 1px rgb(28 41 61 / 10%), 0 36px 36px rgb(28 41 61 / 10%);
  border-radius: 4px;
  opacity: 0;
  top: 30px;
  z-index: 2;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height .4s ease-out,  opacity .4s;
  -o-transition: max-height .4s ease-out,  opacity .4s;
  transition: max-height .4s ease-out,  opacity .4s;
  cursor: default;
}

.header__nav.visible nav {
  -webkit-transition: max-height .4s ease-in, opacity .4s;
  -o-transition: max-height .4s ease-in, opacity .4s;
  transition: max-height .4s ease-in, opacity .4s;
  opacity: 1;
  max-height: 200px;
}

.header__nav nav a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--secondary-text);
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  padding: 0 20px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
  cursor: pointer;
}

.header__nav nav a:hover {
  color: var(--orange);
}

.header__nav nav a:last-child {
  margin-bottom: 0;
}

.header__menu_arrow {
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  -o-transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.header__nav.visible .header__menu_arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.burger, .mobile_menu {
  display: none;
}

.btn {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 24px;
  width: 180px;
  height: 44px;
  border: none;
  cursor: pointer;
}

.btn_orange,
.btn_orange_secondary {
  border: 1px solid var(--orange);
  -webkit-transition: background-color .4s, border-color .4s;
  -o-transition: background-color .4s, border-color .4s;
  transition: background-color .4s, border-color .4s;
}

.btn_orange {
  background-color: var(--orange);
  color: var(--white-90);
}

.btn_orange_secondary {
  background-color: transparent;
  color: var(--orange);
  width: 94px;
}

.btn_orange:hover {
  background-color: var(--orange-hover);
  border: 1px solid var(--orange-hover);
}

.btn_orange_secondary:hover {
  background-color: var(--orange);
  color: var(--white-90);
}

.header__buttons {
  margin-left: auto;
}

.header__buttons a:first-child {
  margin-right: 16px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: 5%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__text {

  margin-right: 7px;
  white-space: nowrap;
}

.profit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 624px;
  background: url(../../img/dc/background-1.jpg) no-repeat;
  background-size: 100%;
  position: relative;
  padding: 0 10%;
}

.profit__left {
  position: relative;
  top: 80px;
}

.profit h1 {
  color: #fff;
  max-height: 300px;
  max-width: 480px;
}

.profit h4 {
  color: var(--secondary-text);
  margin-top: 72px;
  margin-bottom: 24px;
}

.profit__right {
  position: relative;
  bottom: 0;
  background-color: var(--secondary-bg);
  height: 524px;
  width: 582px;
  margin-top: 100px;
  margin-left: auto;
  padding: 0 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.profit__right h4:after {
  content: '*';
  font-weight: normal;
  position: relative;
  top:-2px;
  font-weight: 400;
  opacity: .8;
  font-size: 16px;
}

.profit_big_number {
  font-size: 70px;
  line-height: 60px;
  font-weight: bold;
  white-space: nowrap;
  width: 410px;
}

.profit_ls {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3px;
  margin-top: 90px;
  text-transform: uppercase;
}

.profit__slider {
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.profit__current_value {
  left: calc(50% - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 64px;
  height: 24px;
  background-color: var(--orange);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  position: relative;
}

.profit__slider_orange {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 10px;
  height: 2px;
  background: -o-linear-gradient(left, var(--orange) 0%, var(--orange) 50%, var(--grey) 50%, var(--grey) 100%);
  background: -webkit-gradient(linear, left top, right top, from(var(--orange)), color-stop(50%, var(--orange)), color-stop(50%, var(--grey)), to(var(--grey)));
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, var(--grey) 50%, var(--grey) 100%);
}

.profit__slider_orange::-webkit-slider-runnable-track {
  height: 10px;
  -webkit-appearance: none;
  appearance: none;
  color: var(--orange);
}

.profit__slider_orange::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--orange);
}

/*ie*/
.profit__slider_orange::-ms-fill-lower {
  background: var(--orange);
}
.profit__slider_orange::-ms-fill-upper {
  background-color: var(--grey);
}

/*firefox*/
.profit__slider_orange::-moz-range-progress {
  background-color: var(--orange);
}
.profit__slider_orange::-moz-range-track {
  background-color: var(--grey);
}
.profit__slider_orange::-moz-range-thumb {
  height: 12px;
  width: 12px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: var(--orange);
}

.profit__diapason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section.advantages {
  margin: 60px auto;
}

.advantages__title {
  color: var(--secondary-text);
  margin-left: 44px;
}
.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;

}

.advantages__item_left {
  left:-80%;
  -webkit-transition: left .5s;
  -o-transition: left .5s;
  transition: left .5s;
}

.advantages__item_left.visible {
  left: 0;
}

.advantages__item_right {
  right:-30%;
  -webkit-transition: right .5s, opacity .2s;
  -o-transition: right .5s, opacity .2s;
  transition: right .5s, opacity .2s;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  -webkit-align-self: flex-end;
  opacity: 0;
}

.advantages__item_right.visible {
  right: 0;
  opacity: 1;
}


.advantages__item__icon {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  -webkit-align-self: flex-end;
}

.advantages__item__text {
  background-color: var(--almost-white);
  padding: 28px 36px;
  margin-top: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  line-height: 40px;
  border-radius: 12px;
}

.advantages__item__text_orange, .digital_service__orange_text {
  color: var(--orange);
  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

.advantages__item__text_orange:hover, digital_service__orange_text:hover {
  color: var(--orange-hover);
}

.advantages__item_left .advantages__item__text {
  margin-left: 12px;
}

.advantages__item_right .advantages__item__text {
  margin-right: 12px;
}

.advantages__item:nth-of-type(1) {
  margin-top: 0;
}

.advantages__item__services__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.advantages__item__services__link svg, .digital_service__toggle_info svg{
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  -o-transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.advantages__item__services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  opacity: 0;
  max-height: 0;
  -webkit-transition: opacity .5s, max-height .5s, margin-top .5s;
  -o-transition: opacity .5s, max-height .5s, margin-top .5s;
  transition: opacity .5s, max-height .5s, margin-top .5s;
}

.advantages__item__services__arrow {
  width: 24px;
  height: 24px;
}

.advantages__item__services_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  line-height: 32px;
}

.advantages__item__services_item:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #FFA307;
  border-radius: 1px;
  margin-right: 12px;
}

.services_visible svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.services_visible .advantages__item__services {
  opacity: 1;
  max-height: 300px;
  margin-top: 16px;
}

.digital_service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 645px;
}
.digital_service_left {
  width: 22%;
  background-color: var(--orange);
}

.digital_service_left img {
  width: 447px;
  height: 564px;
  position: relative;
  top: 81px;
  left: 25%;
}

.digital_service_right {
  width: 78%;
  background-color: var(--almost-white);
}
.digital_service__description {
  margin-top: 80px;
  margin-left: 22%;
}

.digital_service__description_grey {
  font-size: 22px;
  line-height: 32px;
  color: var(--grey)
}

.digital_service__toggle_info {
  display: none;
}

.digital_service__toggle_info.visible svg {
  transform: rotate(180deg);
}

.digital_service__orange_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.digital_service__description__percent {
  font-size: 42px;
  line-height: 44px;
  color: var(--orange);
  font-weight: bold;
  margin: 60px 0 0 0 ;
}

.digital_service__description_grey_small {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: var(--grey)
}


.benefit_calculation {
  background-color: var(--dark-grey-bg);
  color: white;
  min-height: 417px;
}

.benefit_calculation__title {
  margin: 0;
  margin-bottom: 21px;
  padding-top: 80px;
  text-align: center;
}

.benefit_calculation__text {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3px;
}

.benefit_calculation__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 48px;
  margin-bottom: 28px;
  margin-top: 48px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.select {
  position: relative;
}

.selectLabel {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.selectWrapper {
  position: relative;
}

.selectCustom {
  position: relative;
  width: 24%;
  min-width: 305px;
  height: 48px;
  background: var(--white-10);
}

.selectCustom-desc {
  position: absolute;
  color: var(--orange);
  font-size: 12px;
  line-height: 16px;
  top: 4px;
  left: 12px;
  z-index: 2;
}

.selectCustom-trigger {
  background-color: var(--night);
  /* TODO раскоментить когда добавится 2 схема*/
  /*cursor: pointer;*/
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px 40px 4px 12px;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.selectCustom.isActive .selectCustom-trigger::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.selectCustom-trigger::after {
  content: url('../../img/dc/dropdown-arrow.svg');
  position: absolute;
  height: 16px;
  width: 16px;
  top: 16px;
  right: 12px;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;

  /*TODO убрать когда будет 2 схема*/
  display: none;
}

.selectCustom-trigger:hover {
  border-color: #8c00ff;
}

.selectCustom-options {
  position: absolute;
  top: calc(48px + 12px);
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 12px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 12px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--night);
  z-index: 1;
  display: block;
  max-height: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity .5s ease-in-out, max-height .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out, max-height .5s ease-in-out;
  transition: opacity .5s ease-in-out, max-height .5s ease-in-out;
}

.selectCustom.isActive .selectCustom-options {
  opacity: 1;
  max-height: 160px;
}

.selectCustom-option {
  position: relative;
  padding: 0.8rem;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}
.selectCustom.isActive .selectCustom-option {
  pointer-events: auto;
  cursor: pointer;
}

.selectCustom-option.selected {
  color: var(--orange);
}


.selectCustom-option-desc {
  color: var(--white-grey-text);
  font-size: 12px;
  line-height: 16px;
  display: block;
  margin-top: 4px;
  font-family: Rost_reg, sans-serif;
}

.selectCustom-option:hover {
  background-color: var(--white-10);
}

.selectCustom-option:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: calc(100% - 24px);
  border-bottom: 1px solid var(--white-10);
}

.benefit_calculation__input-group {
  position: relative;
  width: 24%;
}

.benefit_calculation__input {
  min-width: 305px;
  width: 100%;
  padding: 20px 40px 4px 12px;
  background-color: var(--night);
  color: white;
  border: none;
  outline: none;
  height: 100%;
}

.benefit_calculation__input-group_price:after {
  content: url('../../img/dc/ruble.svg');
  position: absolute;
  height: 16px;
  width: 16px;
  top: 16px;
  right: 12px;
}

.label {
  position: absolute;
  color: var(--orange);
  font-size: 12px;
  line-height: 16px;
  left: 12px;
  top: 4px;
}

.benefit_calculation__details {
  font-size: 14px;
  line-height: 20px;
  color: var(--grey);
  width: 50%;
}

.info_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.incomes {
  width: 45%;
}

.costs {
  width: 50%;
}

.info_container h5 {
  margin-top: 60px;
  margin-bottom: 0;
}

.incomes {
  margin-left: 5%;
}

.costs {
  background-color: black;
}

.costs h5 {
  margin-left: 60px;
}

.incomes__container, .costs__container {
  margin-top: 40px;
}

.costs__container {
  margin-left: 60px;
}

.incomes__item, .costs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.incomes__item:last-child {
  margin-bottom: 108px;
}


.incomes__item__icon, .costs__item__icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  background-color: black;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.costs__item__icon {
  background-color: var(--dark-grey-bg);
}

.incomes__item__icon_clock {
  background-image: url("../../img/dc/time.svg");
}

.incomes__item__icon_intercom {
  background-image: url("../../img/dc/intercom.svg");
}

.incomes__item__icon_key {
  background-image: url("../../img/dc/card.svg");
}

.incomes__item__icon_internet {
  background-image: url("../../img/dc/wifi.svg");
}

.costs__item__icon_device {
  background-image: url("../../img/dc/widget.svg");
}

.installment .costs__item__icon_device {
  background-image: url("../../img/dc/close.svg");
}

.costs__item__icon_key {
  background-image: url("../../img/dc/key_costs.svg");
}

.costs__item__icon_intercom {
  background-image: url("../../img/dc/intercom_costs.svg");
}

.costs__item__icon_close {
  background-image: url("../../img/dc/close.svg");
}

.incomes__item__text, .costs__item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 20px;
}

.incomes__item__text_grey, .costs__item__text_grey, .provide__option__text_grey, .expenses__option__text_grey  {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey);
}

.incomes__item__text_white, .costs__item__text_white, .provide__option__text_white, .expenses__option__text_white {
  font-size: 20px;
  line-height: 28px;
  color: white;
  font-weight: bold;
}

.costs__item__text_white.disabled {
  color: var(--grey);
}

.orange_line_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  width: 90%;
  top: 495px;
}

.orange_line {
  width: 42%;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--orange);
  position: relative;
}

.orange_line_left:before, .orange_line_right:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--orange);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -4.5px;
}

.orange_line_left:before{
  left: 1.5px;
}

.orange_line_right:after {
  left: calc(100% - 12px);
}

.orange_line__text {
  position: relative;
  top: -10px;
  color: var(--orange);
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 20px;
}

.provide, .expenses {
  width: 40%;
  margin: 0 5% 50px;
}

.expenses {
  width: 50%;
  margin: 0;
  background-color: black;
  padding-top: 0;
  padding-left: 60px;
  padding-right: 5%;
  border-top: none;

}

.title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-25);
  padding-bottom: 16px;
  cursor: pointer;
  border-top: 1px solid var(--white-25);
  padding-top: 16px;
}

.provide__title, .expenses__title {
  font-size: 12px;
  line-height: 16px;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.provide__toggle, .expenses__toggle {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  cursor: pointer;
}

.visible .provide__toggle, .visible .expenses__toggle {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.provide__options, .expenses__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 38px;
}

.provide__option, .expenses__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-bottom: 28px;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.provide__option_disabled .provide__option__text_white, .expenses__option_disabled .expenses__option__text_white {
  color: var(--grey)
}


.provide__option:before, .expenses__option:before {
  content: '';
  display: block;
  background-color: var(--orange);
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  left: 2px;
}

.expenses__option:before {
  background-color: var(--purple);
}

.provide__option_disabled:before, .expenses__option_disabled:before {
  background-color: var(--grey);
  height: 1px;
  width: 12px;
  top: 14px;
  left: 1px;
}

.provide__option_disabled:after, .expenses__option_disabled:after {
  background-color: var(--grey);
  height: 1px;
  width: 12px;
  content: '';
  display: block;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 14px;
  left: 1px;
}

.expenses__option:first-child {
  margin-bottom: 49px;
}


.provide__options, .expenses__options {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity .7s ease-in-out, max-height .5s ease-in-out;
  -o-transition: opacity .7s ease-in-out, max-height .5s ease-in-out;
  transition: opacity .7s ease-in-out, max-height .5s ease-in-out;
}

.visible .provide__options, .visible .expenses__options {
  opacity: 1;
  max-height: 100%;
}

.clients {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 0;
}

.clients__title {
  margin: 0;
}

.clients__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 75%;
  margin-top: 67px;
}

.clients__container img {
  opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.clients__container img.visible {
  opacity: 1;
}

.feed_back {
  background-color: white;
  padding-bottom: 40px;
  padding-top: 80px;
}

.feed_back__title {
  margin: 0 0 16px;
}

.feed_back__text_orange {
  color: var(--orange);
  font-size: 28px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 40px;
}

.feed_back__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  max-width: 75%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.feed_back__input {
  padding-bottom: 12px;
  border:none;
  background:none;
  outline:none;
  border-bottom: 2px solid var(--secondary-divider);
  width: 100%;
  -webkit-transition: border-bottom-color .5s ease;
  -o-transition: border-bottom-color .5s ease;
  transition: border-bottom-color .5s ease;
}

.feed_back__input.errors {
  border-bottom-color: red;
}

.feed_back__input-group:before, .input_phone_container:before {
  content: "";
  background: rgba(16, 24, 40, 0.1);
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--orange);
  -webkit-transition: width 0.2s ease-out 0.2s;
  -o-transition: width 0.2s ease-out 0.2s;
  transition: width 0.2s ease-out 0.2s;
}

.feed_back__input-group:not(:nth-of-type(4)):hover:before {
  width: 100%;
  -webkit-transition: width 0.2s ease-out 0.2s;
  -o-transition: width 0.2s ease-out 0.2s;
  transition: width 0.2s ease-out 0.2s;
}

.input_phone_container:hover:before {
  width: 100%;
  -webkit-transition: width 0.2s ease-out 0.2s;
  -o-transition: width 0.2s ease-out 0.2s;
  transition: width 0.2s ease-out 0.2s;
}

.input_phone_container {
  width: 50%;
  position: relative;
}

.feed_back__input-group {
  position: relative;
}

.feed_back__input-group:nth-child(odd) {
  -ms-flex-preferred-size: 37%;
  flex-basis: 37%;
}

.feed_back__input-group:nth-child(even) {
  -ms-flex-preferred-size: 51%;
  flex-basis: 51%;
  margin-left: 12%;
}

.feed_back__input-group:nth-child(3), .feed_back__input-group:nth-child(4) {
  margin-top: 50px;
}

.feed_back__input-group:nth-child(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.feed_back__error {
  display: none;
}

.feed_back__label {
  width: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 16px;
  -webkit-transition-property: background, color, -webkit-transform;
  transition-property: background, color, -webkit-transform;
  -o-transition-property: background, transform, color;
  transition-property: background, transform, color;
  transition-property: background, transform, color, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-duration: .4s;
  -o-transition-duration: .4s;
  transition-duration: .4s;
  font-style: normal;
  -webkit-font-feature-settings: "tnum", "lnum";
  font-feature-settings: "tnum", "lnum";
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5em;
  -webkit-transform: translate(0px, 12px);
  -ms-transform: translate(0px, 12px);
  transform: translate(0px, 12px);
  color: var(--grey);
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;

}

.feed_back__input-group:not(:nth-of-type(4)):hover .feed_back__label, .feed_back__label.selected {
  font-size: 12px;
  -webkit-transform: translate(0px, -20px);
  -ms-transform: translate(0px, -20px);
  transform: translate(0px, -20px);
  line-height: 16px;
}

.error {
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
  position: absolute;
  top: 40px;
  left: 0;
  display: none;
}

.error_phone.visible, .error_name.visible  {
  display: block;
}

.city {
  margin-left: 20px;
  font-weight: bold;
}

.feed_back_link {
  text-decoration: none;
  margin-left: 20px;
  color: var(--orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.feed_back_link:hover {
  color: var(--orange-hover);
}


.feed_back_link:before {
  content: url('../../img/dc/geolocation.svg');
  width: 24px;
  height: 24px;
}

.feed_back_link:hover:before {
  content: url('../../img/dc/geolocation-hover.svg');
}

.feed_back__send-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.feed_back__send-group__container {
  max-width: 60%;
  margin-top: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feed_back__form__btn {
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  color: white;
  background-color: var(--orange);
  border:none;
  margin-right: 26px;
  white-space: nowrap;
  -webkit-transition: background-color .4s;
  -o-transition: background-color .4s;
  transition: background-color .4s;
  cursor: pointer;
}

.feed_back__form__btn:hover {
  background-color: var(--orange-hover);
}

.feed_back__form__btn:disabled {
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(16, 24, 40, 0.25);
  background-color: rgba(16, 24, 40, 0.1);
  border:none;
  margin-right: 26px;
  white-space: nowrap;
}

.feed_back__form__info {
  font-size: 12px;
  line-height: 18px;
}

.orange {
  color: var(--orange);
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.orange:hover {
  color: var(--orange-hover);
}

.feed_back__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.feed_back__info_left {
  max-width: 37%;
}

.feed_back__info_right {
  margin-left: 12%;
}

.feed_back__info_medium {
  color: var(--grey-text);
  font-size: 14px;
  line-height: 20px;
}

.feed_back__info_small {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: .2px;
  color: var(--grey-text);
}

.footer {
  background-color: var(--footer-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 123px;
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
}

.footer__link a {
  color: white;
  width: 100%;
  cursor: pointer;
}

.footer__link a:hover, .mobile_menu__link a:hover {
  background-color: var(--footer-bg-hover)
}

.footer__link span, .mobile_menu__link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .5s;
  -o-transition: color .5s;
  transition: color .5s;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0;
  font-size: 22px;
  line-height: 24px;
}

.footer__link span:after, .mobile_menu__link span:after {
  content: '';
  width: 64px;
  height: 64px;
  margin-left: 32px;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 8px;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.footer__link span:hover:after, .mobile_menu__link span:hover:after {
  -webkit-transform: translateY(-7px) rotate(45deg);
  -ms-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}
.footer__link_purple span:after, .mobile_menu__link_purple span:after {
  background-color: var(--purple);
}

.footer__link_sky span:after, .mobile_menu__link_sky span:after {
  background-color: var(--sky);
}
.footer__link_orange span:after, .mobile_menu__link_orange span:after {
  background-color: var(--red-orange);
}

.footer__link_purple span:hover, .mobile_menu__link_purple span:hover {
  color: var(--purple);
}

.footer__link_sky span:hover, .mobile_menu__link_sky span:hover {
  color: var(--sky);
}

.footer__link_orange span:hover, .mobile_menu__link_orange span:hover {
  color: var(--red-orange);
}

.modal {
  position:fixed;
  display:none;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  z-index: 4;
}

.modal__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(16, 24, 40, 0.6);
}

.modal__body {
  position: fixed;
  padding: 40px;
  background-color: white;
  overflow: auto;
  border-radius: 20px;
  max-width: 560px;
}

.modal__body.success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 68px 50px 60px;
}

.btn_success {
  padding: 28px 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  color: var(--white-90);
  margin: 0 8px;
}

.modal__close {
  height: 24px;
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.modal__title {
  font-size: 22px;
  line-height: 24px;
  color: black;
  margin-bottom: 33px;
  font-weight: bold;
  text-align: center;
}

.modal__title_success {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 12px;
}

.modal__info_success {
  font-size: 24px;
  line-height: 36px;
  color: var(--grey);
  margin-top: 0;
  text-align: center;
}

.modal__img_success {
  width: 96px;
  height: 96px;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.search-form__input {
  min-width: 250px;
  border: none;
  outline: none;
  border-bottom: 2px solid rgba(16, 24, 40, 0.1);
  width: 100%;
  -webkit-transition: border-bottom-color .5s;
  -o-transition: border-bottom-color .5s;
  transition: border-bottom-color .5s;
}

.search-form__input:focus {
  border-color: var(--orange);
}

.search-form__icon {
  position: absolute;
  right: 146px;
  top: 10px;
}

.search-form__button {
  margin-left: 20px;
  background-color: var(--orange);
  padding: 12px 32px;
  width: 146px;
  height: 48px;
  color: var(--white-90);
  border:none;
  cursor: pointer;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.search-form__button:hover {
  background-color: var(--orange-hover);
}

.cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 480px;
  margin-top: 38px;
}

.cities a {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
  color: black;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.cities a:hover {
  color: var(--orange);
}

.search-form__list_city {
  position: absolute;
  width: 70%;
  height: auto;
  background: #fff;
  padding: 15px;
  top: 49px;
  display: none;
  padding-bottom: 0;
  -webkit-box-shadow: 0 0 1px rgb(28 41 61 / 10%), 0 36px 36px rgb(28 41 61 / 10%);
  box-shadow: 0 0 1px rgb(28 41 61 / 10%), 0 36px 36px rgb(28 41 61 / 10%);
  border-radius: 4px;
}

.search-form__list_city a {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}

