.address {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #120d34;
  color: #fff;
}
.address__wrapper {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(163, 163, 163, 0.2);
}
.address h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}
.address p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.6;
}
.address p:not(:last-child) {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .address__wrapper {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .address {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .address h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .address h2 span {
    display: block;
    margin-bottom: 12px;
  }
  .address p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
  .address p:not(:last-child) {
    margin-bottom: 20px;
  }
}