.info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 58px;

  margin-bottom: -58px;

  color: #131212;
}
.info__title {
  text-align: right;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 48px */
  text-transform: uppercase;
}
.info__description {
  margin-left: auto;
  width: 50%;

  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 21.6px */
}

@media screen and (max-width: 965px) {
  .info {
    padding: 0 24px;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
  }
  .info__title {
    text-align: left;
  }
  .info__description {
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 660px) {
  .info__title {
    font-size: 32px;
  }
}
