.download-banner__title h1 {
  margin-top: -1.25rem;
  color: #fff;
}

.download-banner__title p {
  color: #fff;
  opacity: 0.7;
}

.download-center {
  padding-top: 5rem;
  padding-bottom: 10.3125rem;
}

.download-center .download-center__title {
  padding-bottom: 4.375rem;
}

.download-center__top {
  width: 100%;
}

.download-center__top ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 23%;
  height: 15rem;
  text-align: center;
}

.download-center__top ul li p {
  margin-top: 3.125rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.download-center__inner {
  padding: 5rem 0;
  background-color: #fff;
}

.download-center__inner h3 {
  margin-bottom: 3.75rem;
  font-size: 1.875rem;
}

.download-center__inner .download-center__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.875rem;
  padding-right: 2.9375rem;
  height: 5.1875rem;
  font-size: 1.1rem;
}

.download-center__inner .download-center__item p {
  width: 40%;
  font-weight: 500;
}

.download-center__inner .download-center__item:nth-child(odd) {
  background-color: #f2f3f5;
}

.download-center__inner .download-center__item a {
  color: #0670c1;
}

.download-center__inner .download-center__item a i.download-center__item-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.9375rem;
  background: url(../img/download-icon.svg) no-repeat;
  content: '';
}

.download-center__inner .download-center__item span {
  color: #999999;
}

.ddl_container {
  width: 100%;
  padding: 8rem 1.5rem 3.5rem;
  text-align: center;
  transition: 0.3s all ease;
  background-color: white;
  border-radius: 8px;
  position: relative;
  border: 1px solid #97979744;
  cursor: pointer;
  transition: all 0.3s ease;
}
li.active .ddl_container {
  cursor: initial;
  background: #005da5;
  color: white;
}
li:hover .ddl_container {
  background: #005da5;
  color: white;
}
.ddl_container:before {
  content: '';
  position: absolute;
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ddl_container.manuel:before {
  background-image: url('../img/product-support-4.svg');
}
.ddl_container.certificate:before {
  background-image: url('../img/product-support-1.svg');
}
.ddl_container.safety:before {
  background-image: url('../img/product-support-2.svg');
}
.ddl_container.faq:before {
  background-image: url('../img/product-support-3.svg');
}
li:hover .ddl_container.manuel:before,
li.active .ddl_container.manuel:before {
  background-image: url('../img/product-support-4-white.svg');
}
li:hover .ddl_container.certificate:before,
li.active .ddl_container.certificate:before {
  background-image: url('../img/product-support-1-white.svg');
}
li:hover .ddl_container.safety:before,
li.active .ddl_container.safety:before {
  background-image: url('../img/product-support-2-white.svg');
}
li:hover .ddl_container.faq:before,
li.active .ddl_container.faq:before {
  background-image: url('../img/product-support-3-white.svg');
}
