.div-start-mobile {
  display: none;

  .left-mobile,
  .right-mobile {
    display: none;
  }
}

.div-start {
  position: absolute;
  top: 50px;
  display: flex;
  width: 100%;
  justify-content: space-between;


  .left,
  .right {
    width: 45%;
    height: auto;
  }

  @media screen and (max-width: 992px) {
    .div-start {
      display: none;

      .left,
      .right {
        display: none;
      }
    }
    s .div-start-mobile {
      position: absolute;
      display: flex;
      justify-content: space-between;
      top: 50px;
      width: 100%;
      height: 150px;
      padding: 0 50px;

      .left-mobile,
      .right-mobile {
        width: 45%;
        height: auto;
      }
    }
  }
}


