.app {
  position: relative;
  width: 100%;
  padding: 30px 0px;
  margin-bottom: 60px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1130px;
  padding: 0 10px;
  width: 100%;
}

.app__wrapper__left__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.app__wrapper__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding-right: 200px;
}

.app__wrapper__left__img {
  display: none;
  max-height: 400px;
}

.app__title {
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
}

.app__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: background 0.25s ease-in-out;
  cursor: pointer;
}

.app__button:hover {
  background-color: var(--primary-background);
}

.app__img {
  max-height: 400px;
}

@media screen and (max-width: 1024px) {
  .app__wrapper__left {
    align-items: start;
    padding-right: 0;
  }
  .app__img {
    display: none;
  }
  .app__wrapper__left__img {
    display: block;
  }
  .app__title {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .app__button {
    margin-top: 10px;
  }
}
