.downloads-section { gap: 1rem; }
.section-half { flex: 49%; }
.section-full { width: 100%; }
@media (max-width: 950px) {
  .section-half { flex: 100%; }
  .downloads-section {
    gap: 0;
    padding: 0;
  }
}
#featured { padding: 150px 0px 100px !important; }
.hght { height: 450px; }
.txt-center { text-align: center; }
strong.app-ttl { font-weight: 500; }
span.app-spn {
  font-weight: 400;
  color: red;
  font-size: 1rem;
}
.ds-btn {
  background-color: #f23944;
  border-radius: 20px;
  color: #fff !important;
  display: inline-block;
  line-height: 29px;
  padding-left: 17px;
  padding-right: 17px;
  white-space: nowrap;
  font-size: 14px;
}
.img-sec {
  margin-bottom: 20px;
  width: 50%;
}

.fsize16 { font-size: 16px; }
.dis-flex { display: flex; }

.dwn-pfm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-app-container {
  display: flex;
  justify-content: center;
}

.app-link-icon {
  font-size: 2rem;
  text-decoration: none;
  border-radius: 50%;
  padding: 10px;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-link-icon:hover {
  color: #fff;
  background-color: #f23944;
  border-radius: 50% ;
  text-decoration: none;
  transition: .7s;
}

.generic-download-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.generic-download-link-container img {
  border: 1px solid;
  width: 200px;
  border-radius: 0.5rem;
}

.generic-download-link-footer {
  padding: .5rem;
  margin-top: 1.5rem;
  border-radius: 40px;
  border: 2px solid #f23944;
}

.generic-download-link-footer em {
  font-size: 1.5rem;
  color: #f23944;
}

.generic-download-link-footer:hover {
  background-color: #f23944;
  transition: .7s;
}

.generic-download-link-footer:hover em { color: #fff; }

.app-dwn-btn-grp { display: flex; }
.app-dwn-btn-grp .app-dwn-btn {
  background-color: #f23944;
  border: none;
  color: white;
  padding: 0.25rem 0.75rem;
  transition: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.app-dwn-btn-grp .app-dwn-btn-icon {
  font-size: 2rem;
}
.app-dwn-btn-grp .app-dwn-btn:hover, .app-dwn-btn-grp .app-dwn-btn.opt:has(.dwn-btn-opts.show) { background-color: #dd212c; }
.app-dwn-btn-grp .app-dwn-btn:hover p { color: white !important; }
.app-dwn-btn-grp .app-dwn-btn.opt {
  position: relative;
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 1.25rem;
}
.dwn-btn-opts {
  z-index: 2;
  position: absolute;
  top: 3.5rem;
  min-width: 150px;
  right: 0;
  display: none;
  background: white;
  color: black;
  font-size: 0.75rem;
  list-style-type: none;
  padding: 0.5rem;
  box-shadow: -1px 4px 7px 4px #00000033;
  border-radius: 0.5rem;
}
.dwn-btn-opts.show { display: block; }
.app-dwn-btn-grp .app-dwn-btn:has(+ .app-dwn-btn.opt) {
  border-radius: 0.5rem 0 0 0.5rem;
}