/* Custom */

:root {
  --basic-black: #000000;
  --basic-white: #ffffff;
  --basic-grey: #676767;
  --basic-green: #14aa8b;

  --special-black: #1a1a1a;
  --special-black-2: #282828;

  --special-grey: #6b7280;
  --special-grey-2: #787878;
  --special-grey-3: #d4d4d4;
  --special-grey-4: #f8f8f8;

  --border-grey: #dcdcdc;
  --border-grey-2: #c7c7c7;

  --basic-font: "Inter", "Arial", sans-serif;
}

/* Fonts */

@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Inter-Light.woff") format("woff"),
    url("../fonts/Inter-Light.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff") format("woff"),
    url("../fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff") format("woff"),
    url("../fonts/Inter-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff") format("woff"),
    url("../fonts/Inter-SemiBold.woff2") format("woff2");
}

/* Common */

body {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  min-width: 320px;
  color: var(--basic-black);
  background-color: var(--basic-white);
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  object-fit: cover;
}

section#plot img{
  object-fit: contain;
}

picture > img {
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
}

button {
  border: 0;
  background: unset;
  padding: 0;
}
.button {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: var(--basic-green);
  color: var(--basic-white);
  padding: 25px 34px;
  position: relative;
}

.button__link {
  justify-content: start;
  padding: 25px 70px 25px 34px;
}

.button__link::after {
  width: 27px;
  height: 22px;
  content: url("../img/arrow-right.svg");
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
}

.form__input {
  padding: 24px 19px;
  border: 1px solid var(--border-grey-2);
}

.form__input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -1px;
  color: var(--special-grey-2);
}

.form__button {
  padding: 21px 70px;
  cursor: pointer;
}

section.form-response{
  display: none;
}
div.form-response__backdrop{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
div.form-response__response{
  position: fixed;
  top: 3em;
  right: 20%;
  left: 20%;
  padding: 1em 2em;
  background-color: white;
}
p.form-response__message{
  margin-bottom: 1em;
}
button.form-response__button.button{
  padding: 1em;
  cursor: pointer;
}

.page {
  height: 100%;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: calc(100vw - 20px);
  margin: 0 auto;
}

/* Header */

.main-header {
  background-image: url("../img/main-photo-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
}
header{
  padding-top: 72px;
}
@keyframes menu-appear{
  0%{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 10%;
    box-shadow: none;
  }
  100%{
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-height: 100%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}
@keyframes menu-fade{
  0%{
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-height: 100%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  100%{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-height: 72px;
    box-shadow: none;
  }
}
@keyframes menu-list-fade{
  0%{
    max-height: 100%;
  }
  100%{
    max-height:72px;
  }
}
.main-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: inherit;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: auto;
  padding: 1rem;
  flex-wrap: wrap;
  overflow-y: auto;
  box-sizing: border-box;
}
.main-header__nav-wrapper.is-open .main-header__nav {
  animation: menu-appear 0.6s ease-in-out;
  animation-fill-mode: forwards;
}
.main-header__nav-wrapper.is-close .main-header__nav {
  animation: menu-fade 0.6s ease-in-out;
  animation-fill-mode: forwards;
  overflow: hidden;
}
.finance-model-page .main-header__nav{
  max-width: 1200px;
}
.main-header__nav-wrapper{
  background-color: var(--basic-white);
}

.main-header__logo {
  cursor: pointer;
  flex-basis: 50%;
  display: flex;
  align-items: center;
}

.main-header__list {
  display: none;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}
.main-header__nav-wrapper.is-open .main-header__list {
  display: flex;
}
.main-header__nav-wrapper.is-close .main-header__list {
  display: flex;
  animation: menu-list-fade 0.6s ease-in-out;
  animation-fill-mode: forwards;
}
.main-header__list-item {
  padding: 1rem 0;
}

.main-header__burger {
  display: flex;
  cursor: pointer;
  flex-basis: 50%;
  justify-content: flex-end;
}
.main-header__burger div{
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.main-header__burger div span{
  width: 90%;
  border-bottom: 2px solid #9CA3AF;
  transition: all 0.6s ease-in-out 0s;
}
.main-header__nav-wrapper.is-open .main-header__burger div span:nth-child(1){
  transform: translateY(14px) rotate(405deg);
}
.main-header__nav-wrapper.is-open .main-header__burger div span:nth-child(2){
  transform: rotate(360deg);
  opacity: 0;
}
.main-header__nav-wrapper.is-open .main-header__burger div span:nth-child(3){
  transform: translateY(-14px) rotate(495deg);
}

.main-header__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: var(--basic-white);
  margin-top: 70px;
  margin-bottom: 40px;
}

.main-header__intro-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -1px;
  color: var(--basic-white);
  margin-bottom: 40px;
}

.main-header__form {
  display: flex;
  flex-direction: column;
}

.main-header__form-input {
  padding: 22px 24px;
  margin-bottom: 10px;
  border: 0;
}

.main-header__form-input::placeholder {
  font-family: var(--basic-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -1px;
  color: var(--special-grey-2);
}

.main-header__button {
  font-family: var(--basic-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--basic-white);
  padding: 21px 70px;
  background-color: var(--basic-green);
  margin-bottom: 35px;
  cursor: pointer;
}

/* Main Section Structure */

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 40px;
  padding: 60px 10px;
}

.section__header {
  font-weight: 500;
  font-size: 30px;
  line-height: 39px;
  letter-spacing: -0.01em;
  color: var(--special-black-2);
}

.section__content > .content__block:not(:first-child) {
  margin-top: 40px;
}

.section__description {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: var(--special-black-2);
}

.section__image {
  max-width: 100vw;
  margin: 0 -10px;
}

.table-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
}
.table-layout__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 20px;
  padding: 40px 0;
}
.table-layout__row:not(:last-child) {
  border-bottom: 1px solid var(--border-grey);
}
.table-layout__item {
  background-color: var(--basic-white);
  font-size: 20px;
  letter-spacing: -1px;
}
.table-layout__item:nth-child(odd) {
  font-weight: 500;
  line-height: 130%;
  color: var(--basic-black);
}
.table-layout__item:nth-child(even) {
  font-weight: 300;
  line-height: 170%;
  color: var(--basic-grey);
}

.scrollable-container {
  overflow-x: scroll;
}
.scrollable-container > * {
  max-width: unset;
}

@media (min-width: 1200px) {
  .main-header__nav-wrapper.is-close .main-header__list{
    animation: unset;
  }
  .main-header__nav-wrapper.is-close .main-header__nav {
    animation: unset;
  }
  .main-header__nav-wrapper.is-open .main-header__nav{
    animation: unset;
  }
  .scrollable-container {
    overflow-x: hidden;
  }
  .scrollable-container > * {
    max-width: 100%;
  }
  .section {
    grid-template-columns: 270px 885px;
    grid-gap: 200px 45px;
    width: 1200px;
    padding: 0;
    margin: 200px auto;
  }

  .section .--big {
    grid-column-start: span 2;
  }

  .section__header.--big {
    text-align: center;
  }

  .section__content > .content__block:not(:first-child) {
    margin-top: 80px;
  }

  .section__description {
    font-size: 25px;
    line-height: 37px;
  }

  .section__description.--big {
    font-size: 30px;
    line-height: 39px;
  }

  .section__image {
    grid-column-start: 2;
    margin: 0;
  }

  .section__image.--big {
    grid-column-start: span 2;
  }

  .table-layout__row {
    grid-template-columns: minmax(0, 310px) minmax(0, 1fr);
    grid-gap: 0 50px;
  }

  .scrollable-container {
    overflow-x: hidden;
  }
}

/* Slider */

.slider {
  display: flex;
  flex-direction: column;
}

.slider__sliding-area {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slider__sliding-area::-webkit-scrollbar {
  display: none;
}

.slider__item {
  scroll-snap-align: start;
  flex: 0 0 100%;
}

.slider__controls {
  display: flex;
  gap: 10px;
}

.slider__control {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

/* Intro section */

.intro__avatar-image {
  margin-bottom: -6px;
}

.intro__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -1px;
  color: var(--special-black);
  margin-top: 20px;
  margin-bottom: 10px;
}

.intro__status {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -1px;
  color: var(--special-black);
  margin: 0;
}

.intro__description {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: var(--special-black);
  margin-top: 32px;
}

/* Format section */

.format__description {
  margin-bottom: 40px;
}

.format__adv-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: var(--special-black);
  margin-top: 0;
  margin-bottom: 20px;
}

.format__adv-description {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--basic-grey);
  margin-top: 0;
  margin-bottom: 40px;
}

/* About product section */

.about-product__description {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--special-grey-3);
}

.about-product__func-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--special-grey-3);
}

.about-product__func-block:last-child {
  margin-bottom: 0;
  padding-bottom: 60px;
  border-bottom: unset;
}

.about-product__func-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -1px;
  color: var(--special-black-2);
  margin-top: 0;
  margin-bottom: 20px;
}

.about-product__func-description {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--basic-grey);
  margin: 0;
}

.no-list {
  padding-left: 0;
}

/* Eg app section */

.eg-app__text {
  margin-top: 0;
  margin-bottom: 40px;
}

.eg-app__button-wrapper {
  display: flex;
  margin-bottom: 40px;
}

.eg-app__button {
  padding: 20px 30px;
  width: 100%;
  border: 1px solid var(--border-grey);
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: var(--basic-black);
}

.eg-app__button.is-active {
  background: var(--basic-white);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.12);
}

.eg-app__arrows {
  display: none;
}

/* Eg app Slider */

div.eg-app__image.section__image{
  display: none;
  overflow: hidden;
  background-color: #F8F8F8;
  padding: 20px 0;
  /* padding: 2rem; */
}
@keyframes image-appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
div.eg-app__image.section__image.is-active{
  display: grid;
  grid-template-areas: ". app image ."
                       ". app image ."
                       ". app controls .";
  grid-template-columns: auto fit-content(30%) 0.7fr auto;
  /* grid-template-rows: 1fr; */
  opacity: 1;
  animation: image-appear 0.6s ease-in-out;
}
div.app-image-wrapper{
  margin-right: 1.5rem;
  /* maring-right: 2rem */
  grid-area: app;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
div.app-image-wrapper>img,
div.child-image-wrapper>img{
  object-fit: contain;
}
div.child-image-wrapper{
  /* display: flex;
  flex-direction: row-reverse; */
  grid-area: image;
}
.eg-app__image > .controls{
  grid-area: controls;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
.eg-app__image > .controls > .arrows > img{
  height: calc(15px + 4vw);
  cursor: pointer;
}
.eg-app__image > .controls > .arrows > img:nth-child(1){
  margin-right: 1rem;
}
.eg-app__image > .controls > .arrows{
  display: flex;
  justify-content: center;
}
.eg-app__image > .controls > .dots{
  display: flex;
  justify-content: center;
  /* padding: 2rem; */
}
.eg-app__image > .controls > .dots > .dot{
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  padding: 0;
  display: inline-block;
  background-color: #BBB;
  border-radius: 100%;
  cursor: pointer;
}
.eg-app__image > .controls > .dots > .dot.is-active{
  background-color: black;
}

div.app-image-wrapper, div.child-image-wrapper > img{
  filter: 
    drop-shadow(0px 100px 80px rgba(0, 0, 0, 0.07)) 
    drop-shadow(0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198)) 
    drop-shadow(0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275)) 
    drop-shadow(0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035)) 
    drop-shadow(0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725)) 
    drop-shadow(0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802));
}

/* Perspective section */

.perspective__stat-block {
  padding: 40px;
  border: 1px solid var(--border-grey);
}

.perspective__stat-title {
  margin: 0;
}

.perspective__stat-description {
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -1px;
  color: var(--special-black-2);
  margin-top: 10px;
  margin-bottom: 0;
}

.perspective__link {
  margin-top: 20px;
}

/* Advantages setion */

.advantages__block {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-grey);
  padding: 30px 20px;
}

.advantages__block img {
  margin: auto 20px auto 0;
}

.advantages__description {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--special-black-2);
  margin: 0;
}

/* Our support */

.our-support__title {
  margin-bottom: 40px;
}

.our-support__description {
  margin-top: 0;
  margin-bottom: 40px;
}

.our-support__block {
  display: flex;
  margin-bottom: 40px;
}

.our-support__block:last-child {
  margin-bottom: 60px;
}

.our-support__img {
  margin-left: 20px;
  margin-right: 30px;
}

.our-support__block-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: var(--special-black);
  margin-top: 0;
  margin-bottom: 20px;
  width: 80%;
}

.our-support__block-description {
  font-weight: 300;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: -1px;
  color: var(--basic-grey);
  margin-top: 0;
  margin-bottom: 0;
}

/* Business start section */

.business-start__steps-title {
  margin-top: 0;
  margin-bottom: 40px;
}

.business-start__steps-list {
  list-style: none;
  padding-left: 0;
}

.business-start__steps-list-item {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 38px;
  position: relative;
}

.business-start__steps-list-item::after {
  content: "";
  position: absolute;
  height: 24px;
  width: 2px;
  top: 57px;
  left: 23px;
  background-color: var(--border-grey);
}

.business-start__steps-list-item:last-child::after {
  display: none;
}

.business-start__steps-list-item:last-child {
  margin-bottom: 59px;
}

.business-start__steps-icon {
  margin-left: 20px;
  margin-right: 20px;
}

.business-start__steps-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--basic-black);
}

/* Work steps section */

.work-steps__question {
  margin-top: 0;
  margin-bottom: 40px;
}

.work-steps__list {
  list-style: none;
  padding-left: 0;
}

.work-steps__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.work-steps__list-item:last-child {
  margin-bottom: 60px;
}

.work-steps__description {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--special-black);
  margin: 0 25px 0 20px;
}

/* Rights section */

.rights__description {
  margin-top: 0;
  margin-bottom: 40px;
}

.rights__block {
  margin-bottom: 40px;
}

.rights__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--special-black-2);
}

.rights__link {
  margin-top: 20px;
}

.rights__bg-image-wrapper {
  margin: 0 auto;
}

.rights__bg-image {
  margin-bottom: -6px;
}

/* Testimonials section */

.testimonials__slider {
  gap: 40px;
}

.testimonial__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: var(--special-black-2);
  overflow: hidden;
}

.testimonial__text.--short {
  max-height: 135px;
}
.testimonial__text.--long {
  max-height: unset;
}
.testimonial .show-more,
.testimonial .show-less {
  color: var(--basic-grey);
  cursor: pointer;
}
.testimonial .show-more:hover,
.testimonial .show-less:hover {
  text-decoration: underline;
}
.testimonial__text.--long ~ .show-more {
  display: none;
}
.testimonial__text.--short ~ .show-less {
  display: none;
}

.testimonial__author-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -1px;
  color: var(--special-black);
  margin-top: 20px;
}

.testimonial__author-position {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -1px;
  color: var(--special-black);
  margin-top: 12px;
}

/* About us section */

.about-us__text {
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -1px;
  color: var(--special-black-2);
  margin-top: 0;
  margin-bottom: 40px;
}

.about-us__text:last-child {
  margin-bottom: 60px;
}

/* Contacts section */

.contacts__text {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: var(--special-black-2);
}

.contacts__form {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.contacts__form > *:not(:first-child) {
  margin-top: 10px;
}

/* Footer */

.main-footer {
  background-color: var(--special-grey-4);
}

.main-footer__wrapper {
  border-bottom: 1px solid var(--border-grey);
}

.main-footer__left-col {
  margin: 0 6px 48px;
  padding-top: 48px;
}

.main-footer__logo-wrapper {
  height: 50px;
}

.main-footer__description {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--special-grey-2);
  margin-bottom: 0;
}

.main-footer__right-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  margin: 0 6px;
  padding-bottom: 48px;
}

.main-footer__block-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--special-black);
  margin-top: 0;
  margin-bottom: 16px;
}

.main-footer__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.main-footer__list-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -1px;
  color: var(--special-grey-2);
  margin-bottom: 16px;
}

.main-footer__list-item:last-child {
  margin-bottom: 0;
}

.main-footer__copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: left;
  letter-spacing: -1px;
  color: var(--basic-grey);
  margin-top: 32px;
  margin-bottom: 0;
  padding-bottom: 48px;
}

.feedback {
  margin-top: -212px;
  height: 156px;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }

  /* Header */

  .main-header {
    background-image: url("../img/main-photo-desktop.png");
    padding-top: 0;
  }
  header{
    padding-top: 0;
  }
  @media (min-width: 1750px) {
    .main-header {
      background-size: contain;
      background-position-x: center;
    }
  }

  .main-header__nav {
    position: inherit;
    align-items: center;
    gap: 10px;
    box-shadow: unset;
    padding: 0;
  }

  .main-header__logo {
    margin: 35px 0 35px 9px;
    height: 50px;
    flex-basis: unset;
  }

  .main-header__logo img {
    width: 57px;
    height: 50px;
    object-fit: contain;
  }

  .main-header__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-grow: 1;
    flex-basis: 80%;
  }

  .main-header__list-item {
    flex-basis: 185px;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: -1px;
    color: var(--basic-grey);
  }
  .nowrap{
    white-space: nowrap;
  }

  .main-header__list-item:hover {
    text-decoration-line: underline;
    color: var(--basic-green);
    text-decoration-thickness: 2px;
  }

  .main-header__burger {
    display: none;
  }

  .main-header__title {
    line-height: 60px;
    margin-top: 145px;
    margin-bottom: 31px;
    width: 55%;
  }

  .main-header__intro-text {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 31px;
    width: 40%;
  }

  .main-header__form {
    flex-direction: row;
    width: 1200px;
    padding-bottom: 145px;
  }

  .main-header__form-input {
    width: 252px;
    height: 36px;
    padding: 12px 24px;
    margin-bottom: unset;
    margin-right: 10px;
  }

  .main-header__form-input::placeholder {
    font-family: var(--basic-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -1px;
    color: var(--special-grey-2);
  }

  .main-header__button {
    width: 270px;
    height: 60px;
    padding: 12px 24px;
    margin-bottom: unset;
  }

  /* Intro section */

  .intro__avatar-image {
    width: 120px;
    height: 120px;
    margin-bottom: -6px;
  }

  .intro__name {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -1px;
    color: var(--special-black);
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .intro__status {
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -1px;
    color: var(--special-black);
    margin: 0;
  }

  .intro__description {
    width: 885px;
    font-size: 25px;
    line-height: 37px;
    margin-top: unset;
    margin-bottom: unset;
  }

  /* Format section */

  .format__description {
    margin-top: 0;
    margin-bottom: 80px;
  }

  .format__block-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .format__block {
    width: 412px;
  }

  .format__block:nth-child(3) p {
    margin-bottom: 0;
  }

  .format__block:nth-child(4) p {
    margin-bottom: 0;
  }

  .format__adv-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .format__adv-description {
    font-size: 18px;
    line-height: 31px;
  }

  .format__image {
    height: 500px;
  }

  /* About product section */

  .about-product__description {
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--special-grey-3);
  }

  .about-product__func-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--special-grey-3);
  }

  .about-product__func-block:last-child {
    margin-bottom: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--special-grey-3);
  }

  .about-product__func-title {
    width: 309px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -1px;
    color: var(--special-black-2);
    margin-top: 0;
    margin-bottom: 20px;
    margin-right: 51px;
  }

  .about-product__func-description {
    width: 524px;
    font-size: 20px;
    line-height: 34px;
    margin: 0;
  }

  .no-list {
    padding-left: 0;
  }

  /* Eg app section */

  .eg-app__text {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .eg-app__button-wrapper {
    display: flex;
    margin-bottom: 40px;
  }

  .eg-app__button {
    padding: 19px 30px;
    width: 100%;
    border: 1px solid var(--border-grey);
    font-weight: 300;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -1px;
    color: var(--basic-black);
  }

  .eg-app__button.is-active {
    background: var(--basic-white);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.12);
  }

  .eg-app__arrows {
    display: none;
  }

  .eg-app__image {
    height: 605px;
  }

  div.eg-app__image.section__image.is-active{
    grid-template-columns: auto fit-content(318px) 1fr auto;
    padding: 2rem;
  }
  .eg-app__image > .controls > .arrows > img{
    height: 60px;
  }

  /* Perspective section */

  .perspective__stat-block-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .perspective__stat-block {
    width: 233px;
    height: 81px;
    padding: 60px 30px;
    border: 1px solid var(--border-grey);
  }

  .perspective__stat-block:hover {
    background: var(--basic-white);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.12);
  }

  .perspective__stat-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 39px;
    letter-spacing: -0.01em;
    color: var(--special-black-2);
    margin: 0;
  }

  .perspective__stat-description {
    font-weight: 300;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -1px;
    color: var(--special-black-2);
    margin-top: 10px;
    margin-bottom: 0;
  }

  .perspective__link {
    width: 430px;
  }

  /* Advantages setion */

  .advantages__block-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .advantages__block {
    width: 380px;
    height: 100px;
    padding: 30px;
  }

  .advantages__block:hover {
    background: var(--basic-white);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.12);
  }

  .advantages__block img {
    margin: auto 20px auto 0;
  }

  .advantages__description {
    font-size: 20px;
    line-height: 34px;
  }

  /* Our support */

  .our-support__description {
    margin-top: 0;
    margin-bottom: 80px;
  }

  .our-support__block-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .our-support__block {
    width: 413px;
    margin-bottom: 80px;
  }

  .our-support__block:last-child {
    margin-bottom: 80px;
  }

  .our-support__img {
    margin-left: 0;
    margin-right: 30px;
  }

  .our-support__block-title {
    font-size: 25px;
    line-height: 30px;
    width: 100%;
  }

  .our-support__bg-image {
    height: 370px;
  }

  /* Business start section */

  .business-start__steps-title {
    margin-top: 0;
    margin-bottom: 80px;
  }

  .business-start__steps-list {
    list-style: none;
    padding-left: 0;
  }

  .business-start__steps-list-item {
    display: flex;
    align-items: center;
    height: 50px;
    margin-bottom: 80px;
  }

  .business-start__steps-list-item::after {
    height: 64px;
    width: 2px;
    top: 57px;
    left: 23px;
  }

  .business-start__steps-list-item:last-child {
    margin-bottom: 80px;
  }

  .business-start__steps-icon {
    margin-left: 20px;
    margin-right: 20px;
  }

  .business-start__steps-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1px;
    color: var(--basic-black);
  }

  .business-start__bg-image {
    height: 370px;
  }

  /* Work steps section */

  .work-steps__question {
    margin-top: 0;
    margin-bottom: 90px;
  }

  .work-steps__list {
    list-style: none;
    padding-left: 0;
  }

  .work-steps__list-item {
    margin-bottom: 110px;
    position: relative;
  }

  .work-steps__list-item::after {
    content: "";
    position: absolute;
    height: 94px;
    width: 2px;
    top: 57px;
    left: 23px;
    background-color: var(--border-grey);
  }

  .work-steps__list-item:last-child:after {
    display: none;
  }

  .work-steps__list-item:last-child {
    margin-bottom: 100px;
  }

  .work-steps__description {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1px;
    color: var(--special-black);
    margin: 0 25px 0 20px;
  }

  .work-steps__bg-image {
    height: 370px;
  }

  /* Rights section */

  .rights__description {
    margin-top: 0;
    margin-bottom: 80px;
  }

  .rights__block {
    margin-bottom: 60px;
    display: flex;
  }

  .rights__block:last-child {
    margin-bottom: 80px;
  }

  .rights__option-wrapper {
    width: 424px;
  }

  .rights__block img {
    width: 240px;
    margin-right: 60px;
    object-fit: contain;
  }

  .rights__text {
    font-size: 20px;
    line-height: 34px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .down {
    margin-bottom: 54px;
  }

  .rights__link {
    width: 322px;
  }

  .rights__bg-image-wrapper {
    width: 885px;
    margin: 0 auto;
  }

  .rights__bg-image {
    width: 885px;
    height: 370px;
  }

  /* Testimonials section */

  .testimonials__slider {
    flex-direction: row;
  }

  .testimonial__text {
    font-size: 25px;
    color: var(--basic-black);
  }

  .testimonial__text.--short {
    max-height: 150px;
  }

  .testimonial__author-name {
    color: var(--basic-black);
    margin-top: 60px;
  }

  .testimonial__author-position {
    color: var(--basic-black);
    margin-top: 8px;
  }

  /* About us section */

  .about-us__text-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .about-us__text {
    width: 414px;
    margin-top: 0;
    margin-bottom: unset;
  }

  .about-us__text:last-child {
    margin-bottom: 60px;
  }

  .about-us__bg-image {
    height: 486px;
  }

  /* Contacts section */

  .contacts__text {
    font-size: 25px;
    line-height: 30px;
  }

  .contacts__form {
    margin-top: 60px;
    width: 571px;
  }

  .contacts__form > *:not(:first-child) {
    margin-top: 20px;
  }

  .contacts__button {
    letter-spacing: 0.14em;
    width: 285px;
  }

  /* Footer */

  .main-footer__wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-grey);
  }

  .main-footer__left-col {
    width: 253px;
    margin: 0;
    padding-top: unset;
  }

  .main-footer__logo-wrapper {
    height: 50px;
  }

  .main-footer__description {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1px;
    color: var(--special-grey-2);
    margin-top: 32px;
    margin-bottom: 0;
  }

  .main-footer__right-col {
    width: 885px;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding-bottom: unset;
  }

  .main-footer__block-title {
    font-size: 15px;
    line-height: 18px;
  }

  .main-footer__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .main-footer__list-item {
    font-size: 18px;
    line-height: 31px;
  }

  .main-footer__list-item:hover {
    text-decoration-line: underline;
    color: var(--basic-green);
    text-decoration-thickness: 2px;
  }

  .main-footer__list-item:last-child {
    margin-bottom: 0;
  }

  .main-footer__copyright {
    text-align: center;
    margin-top: 32px;
    padding-bottom: 64px;
  }

  .feedback {
    margin-top: unset;
    height: unset;
  }
}

/* Finance Model Page */

.finance-model-page .main-header__nav-wrapper {
  background-color: var(--special-grey-4);
}

.finance-model__header > h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--basic-black);
  margin-top: 60px;
}

.finance-model__header > picture img {
  margin-top: 10px;
}

@media (min-width: 1200px) {
  .finance-model__header h1 {
    font-weight: 400;
    font-size: 60px;
  }

  .finance-model__header > h1,
  .finance-model__header > picture img {
    margin-top: 40px;
  }

  .finance-model-page .section {
    grid-row-gap: 100px;
    margin: 100px auto;
  }
  .finance-model-page .section.--simple {
    grid-row-gap: 40px;
  }
}
