.title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 110px 50px 110px;
}

.title__part {
  color: #1A2634;
  text-transform: uppercase;
}

.title__part--light {
  font-size: 46px;
  line-height: 18px;
  border-bottom: 12px solid #CBD42F;
  font-weight: 400;
}

.title__part--bold {
  font-size: 58px;
  line-height: 50px;
}

.date {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 110px 50px 110px;
}

.date__text {
  color: #1A2634;
  font-size: 26px;
  line-height: 36px;
}

.terms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 110px 50px 110px;
}

.terms__title {
  font-weight: 400;
  color: #1A2634;
  font-size: 26px;
  line-height: 36px;
  text-align: left;
}

.terms__text {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 35px;
  color: #1A2634;
}

.terms__text a {
  text-decoration: none;
  color: #1A2634;
}

.terms__text a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 110px 50px 110px;
  } 
  .title__part--light {
    font-size: 26px;
    line-height: 8px;
    margin-top: 3px;
    border-bottom: 9px solid #CBD42F;
  }
  .title__part--bold {
    font-size: 38px;
    margin-top: -6px;
  }
}

@media(max-width: 638px) {
  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 50px 50px 50px;
  }
  .date {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 50px 
    50px 50px;
  }
  .date__text {
    text-transform: uppercase;
    color: #1A2634;
    font-size: 26px;
    line-height: 36px;
  }
  .terms {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 50px 50px 50px;
  }
  .terms__title {
    text-transform: uppercase;
    font-weight: 400;
    color: #1A2634;
    font-size: 26px;
    line-height: 36px;
    text-align: left;
  }
  .terms__text {
    font-size: 17px;
    line-height: 30px;
    margin: 0 0 35px;
    color: #1A2634;
  }
}