.ova-doc-download {
  position: relative;
  padding: 80px 80px 60px 80px;
  background: var(--heading);
}
@media screen and (max-width: 1260px) {
  .ova-doc-download {
    padding: 60px 45px 40px 45px;
  }
}
@media screen and (max-width: 600px) {
  .ova-doc-download {
    padding: 40px 25px 20px 25px;
  }
}
.ova-doc-download .triangle-topright {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 190px solid var(--primary);
  border-left: 280px solid transparent;
  z-index: 1;
}
.ova-doc-download .head {
  position: relative;
  display: flex;
  z-index: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .ova-doc-download .head {
    flex-direction: column;
    gap: 30px;
  }
}
.ova-doc-download .head .title {
  margin: 0;
  white-space: pre-line;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.ova-doc-download .head .icon {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .ova-doc-download .head .icon {
    margin-left: 0;
  }
}
.ova-doc-download .head .icon i {
  font-size: 24px;
  color: var(--primary);
  line-height: 1;
}
.ova-doc-download .head .icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}
.ova-doc-download .head .icon svg path {
  fill: var(--primary);
}
.ova-doc-download .document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ova-doc-download .document-list .item {
  padding: 23px 0 30px 0;
}
.ova-doc-download .document-list li:not(:first-child) {
  border-top: 1px solid #374875;
}
.ova-doc-download .document-list .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.ova-doc-download .document-list .info {
  max-width: 85%;
}
.ova-doc-download .document-list .date {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #bac1d7;
}
.ova-doc-download .document-list .title {
  margin: 0;
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  transition: all 0.3s linear;
}
.ova-doc-download .document-list .title:hover {
  color: var(--primary);
}
.ova-doc-download .document-list .title:hover:after {
  width: 100%;
}
.ova-doc-download .document-list .title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--primary);
  transition: all 0.3s linear;
}
.ova-doc-download .document-list .icon {
  display: inline-flex;
  align-items: center;
}
.ova-doc-download .document-list .icon a {
  transition: all 0.3s linear;
  display: block;
  font-size: 24px;
  color: var(--primary);
  z-index: 2;
}
.ova-doc-download .document-list .icon a:hover {
  color: #fff;
}
.ova-doc-download .document-list .icon .loader {
  margin-right: 10px;
}