.downloads-container .row-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 15px -4px black;
  overflow: hidden;
  flex: 1 1 calc(100% / 3);
}

.download-image {
  max-width: 180px;
  width: 100%;
}

.download-image img {
  width: 100%;
  height: 100%;
  padding: 5px 0;
  object-fit: contain;
}

.download-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  justify-content: space-evenly;
}

.downloads-title {
  margin: 0px;
  font-size: 24px;
  font-weight: 700;
  color: var(--light-red);
}

.download-btn {
  background: linear-gradient(
    118deg,
    rgba(175, 9, 49, 1) 0%,
    rgba(137, 5, 36, 1) 70%,
    rgb(103, 1, 24) 100%
  );
  color: white;
  border-radius: 10px;
  font-size: 32px;
  line-height: 1.4;
  width: 60px;
  height: 60px;
  text-align: center;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.download-btn:hover {
  border-radius: 32px;
}

/*===========================================*/
/*== ==FOLD 1 - Header Styling - Desktop== ==*/
/*===========================================*/
.fold-1-header {
  position: relative;
  background: rgb(175, 9, 49);
  background: linear-gradient(
    118deg,
    rgb(180, 10, 49) 0%,
    rgb(128, 4, 33) 87%,
    rgb(94, 1, 23) 100%
  );
  padding: 25px 0;
  z-index: 1;
}

.fold-1-header::before {
  content: "";
  background: url(/wp-content/uploads/2023/02/texture-light.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: right;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.fold-1-header .banner {
    text-align: center;
    z-index: 3;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fold-1-header .banner .readmore {
    width: 230px;
    cursor: pointer;
}

.fold-1-header .title {
  font-size: 42px;
  color: var(--text-light);
  margin: 0;
  padding: 0;
  z-index: 5;
}
