@media screen and (max-aspect-ratio: 4/3) {
  .start-screen {
    padding: 9vw 0 0 0;
  }
  .start-screen {
    display: block;
    height: 100vh;
    height: 100dvh;
    height: var(--app-height);
    overflow-y: auto;
  }
  .start-screen__image .img-desc {
    display: none;
  }
  .start-screen__image .img-tablet {
    display: block;
  }
  .start-screen__image {
    position: static;
    height: auto;
    width: 100%;
    max-width: 700px;
    margin: auto auto 0 auto;
  }
  .start-screen__wrap {
    margin: 0 auto 2vw auto;
  }
  .start-screen__logo {
    max-width: 300px;
  }
  .start-screen__title {
    padding: 0 24px;
  }

}

@media screen and (max-width:600px){
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: var(--app-height);
    height: auto;
  }

  .start-screen__title {
    font-size: 18px;
  }
  .start-screen__logo {
    max-width: 168px;
  }
  .start-screen__image .img-tablet {
    display: none;
  }
  .start-screen__image .img-mob {
    display: block;
  }
  .start-screen__logo {
    margin-bottom: 20px;
  }
  .start-screen__title {
    padding: 0;
    margin-bottom: 20px;
  }


}
