.content__body--download {
  margin-bottom: 30px;
  position: relative; 
  padding-top: 50px;
  padding-bottom: 50px;
}

.content__body--download-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .content__body--download {
    display: flex;
    flex-direction: column-reverse;
    padding: 1.5em 0;
    height: auto;
    max-height: 100%;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
  }

  .content__body--download ul {
    padding-left: 0;
  }
}

.content__body--download::after {
  position: absolute;
  content: "";
  width: 60%;
  height: 2px;
  background-color: #333;
  bottom: -5%;
  left: 20%;
  right: 0;
}

.content__body--download:nth-child(3)::after {
  display: none;
}

.download__buttons {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
}

.download__buttons > button {
  display: inline-block;
  padding: 7px 20px;
  font-size: 16px;
  background-color: #ff6b35;
  color: white;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-right: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  will-change: background-color, border-color, color;
}

.download__buttons > button a {
  text-decoration: none;
  color: #fff;
}

.download__buttons > button:hover {
  background-color: #d4542a;
  border: 1px solid #d4542a;
  color: white;
}

.download__buttons > button:hover a {
  color: white;
}

.download__buttons > button:active {
  background-color: #c04a23;
  border: 1px solid #c04a23;
  color: white;
}

.download__buttons > button a:active {
  color: white;
}

@media (max-width: 767px) {
  .download__buttons {
    flex-direction: column;
    justify-content: center;
  }

  .download__buttons > button {
    width: 220px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 7px 10px;
  }
}


