section#special-content {
  padding: 20px 0px;
  background: #121212;
  background: linear-gradient(0deg, rgb(18, 18, 18) 12%, rgb(10, 10, 10) 53%);
}
section#special-content .special-content-wrapper {
  padding: 15px 0px;
  background: #003366;
  background: linear-gradient(145deg,rgba(0, 51, 102, 1) 0%, rgba(5, 111, 82, 1) 50%, rgba(81, 129, 176, 1) 100%);
  border-radius: 0.8rem;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.3s ease-in-out;
  border: solid 1px #555;
}
section#special-content .special-content-wrapper:hover {
  border: solid 1px #757575;
}
section#special-content .special-content-wrapper .card {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 0px;
  border: solid 1px transparent !important;
  text-decoration: none !important;
  overflow: visible;
  background-color: transparent !important;
}
section#special-content .special-content-wrapper .card .image-wrap {
  height: auto;
  width: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  overflow: hidden;
}
section#special-content .special-content-wrapper .card .image-wrap img {
  width: 100%;
  border-radius: 0.5rem;
}
section#special-content .glide {
  position: relative;
}
section#special-content .glide__slide {
  height: auto;
}
section#special-content .glide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -38px;
  right: -38px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}
section#special-content .glide__arrow {
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.4) !important;
  font-size: 0.9rem;
  color: #fff;
  border: solid 1px rgba(255, 255, 255, 0.2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 0;
}
section#special-content .glide__arrow:hover {
  background-color: rgba(0, 0, 0, 0.6) !important;
  border: solid 1px rgba(255, 255, 255, 0.4) !important;
}
section#special-content .glide__bullets {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
}
section#special-content .glide__bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
section#special-content .glide__bullet:hover {
  background: rgba(255, 255, 255, 0.6);
}
section#special-content .glide__bullet--active {
  background: #fff;
  width: 12px;
}